Fix the automatic email notification in Outlook
Microsoft Exchange Server uses UDP to broadcast notifications about the arrival of new mails. If a firewall/router is blocking for UDP traffic, then the automatic notification of new emails will fail. Instead one have to press Send/Receive, or change to another Outlook folder and then change back to the Inbox to receive new emails.
To fix the automatic email notification use one of the following methods:
-
Configure the NAT to allow UDP traffic, and configure the firewall to make an exception for Outlook.exe, and configure the ForcePolling setting to 0 (Instead of 1 as shown in the bullet below) so Outlook will listen for UDP messages.
By default Outlook opens a dynamic UDP port (1024 - 65535) so one should create a firewall rule at application level. Outlook 2003/2007 makes it possible to specify a fixed UDP port using this DWORD registry key:
[HKEY_CURRENT_USER \Software \Microsoft \Office \12w.0 \Outlook \RPC]
FixedUDPPort = ? (Outlook 2007)[HKEY_CURRENT_USER \Software \Microsoft \Office \11.0 \Outlook \RPC]
FixedUDPPort = ? (Outlook 2003)More Info MS KB839226
-
Configure Outlook to poll the exchange server instead of using UDP, by creating the following registry keys:
[HKEY_CURRENT_USER \Software \Policies \Microsoft \Office \<ver> \Outlook \RPC]
[HKEY_CURRENT_USER \Software \Microsoft \Office \<ver> \Outlook \RPC]
ForcePolling = 1 (1 = Use RPC by default, 0 = Only use RPC if UDP fails)Outlook 2000 (<ver> = 9.0), requires Microsoft Office 2000 Service Pack 3
Outlook 2002 (<ver> = 10.0), requires Microsoft Office XP Service Pack 1
Outlook 2003 (<ver> = 11.0)More info MS KB304849
More info MS KB305572
More info MS KB311506Note the default interval between each RPC poll is 60 seconds, and is controlled by the Exchange Server. Therefore users who are using polling will not experience instant delivery, even when sending messages within the organisation.