Tag Archives: “Outlook 2007”

Microsoft Outlook Out of Office (OOF) – Server is Currently Unavailable

When you try and use the Out of Office feature in Microsoft Outlook you may recieve the following error message:

Your automatic reply settings cannot be displayed because the server is currently unavailable.  Try again later.

 

 

 

 

 

 

When you look at the Application Event Log on you Exchange Server you will see Event ID 1310 logged from Source ASP.NET 2.0.50727.0

 

 

 

 

 

Exception information:

Exception type: ConfigurationErrorsException

Exception message: The value for the property ‘maxRequestLength’ is not valid. The error is: The value must be inside the range 0-2097151. (C:\Program Files\Microsoft\Exchange Server\V14\ClientAccess\exchweb\EWS\web.config line 2376)

We need to modify the “web.config” file which can be found here “C:\Program Files\Microsoft\Exchange Server\V14\ClientAccess\exchweb\EWS\” you need to open the “web.config” file using Notepad and then use the “find” feature in notepad to quickly locate the following line in the file

<system.web>

<httpRuntime maxRequestLength=”52428800″ />

The default value is to high “52428800” so you need to change it as follows

<system.web>

<httpRuntime maxRequestLength=”2066661″ />

The final step in resolving the issue is to save the changes you have made to the “web.config” file and restarting the “Default Website” under IIS Manager (Administrative Tools)

Microsoft Outlook 2007 and Microsoft Outlook 2010 do not archive messages as expected based on the received date instead it uses the modified date by default

Microsoft Outlook 2007 and Microsoft Outlook 2010 do not archive messages as expected based on the received date instead it uses the modified date by default

The archiving features with Microsoft Outlook 2007 and Microsoft Outlook 2010 use the last modified date of an item rather than the sent or recieved date to determine if it should be archived.  This can become a real problem if you have recently moved some old messages to a new outlook folder or you have had to export and import messages using a PST file during a Microsoft Exchange Migration or when a user changes desktop computer or laptop.

To work around this issue you need to fully patch Microsoft Office 2007 or Microsoft Office 2010 and then apply the latest hotfixes for Outlook ased upon the service pack level, for example if you have Microsoft Office 2010 Service Pack 1 installed then please check that you apply Outlook 2010 hotfixes desinged for Office 2010 – Service Pack 1.

Once you have patched Outlook 2007 and Outlook 2010 you will have enabled support for the ArchiveIgnoreLastModifiedTime DWORD Registry value, which in turn lets you switch from archive by last modified date to archive by received date.

To enable the switch in behaviour you simply need to add the following registry value dependant upon your version of Microsoft Outlook

Microsoft Outlook 2007

Navigate using regedit.exe to the following location: HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Preferences

Select to create a new DWORD Value and call it ArchiveIgnoreLastModifiedTime

The value data of ArchiveIgnoreLastModifiedTime should be set to 1 (This enables it)

Microsoft Outlook 2010

Navigate using regedit.exe to the following location: HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences

Select to create a new DWORD Value and call it ArchiveIgnoreLastModifiedTime

The value data of ArchiveIgnoreLastModifiedTime should be set to 1 (This enables it)

You have now turned on archiving by received date in Outlook 2007 or 2010 for the user that you are logged in as, please note that you will need to repeat this process whilst logged in as each user that requires archive by received date on this computer.