"Http server returned Forbidden exception" error appears in Microsoft Dynamics 365 mailbox
This article provides a solution to an error that occurs when you select the Test & Enable Mailbox button on a mailbox record in Dynamics 365.
Applies to: Microsoft Dynamics 365
Original KB number: 4483440
Symptoms
When you select the Test & Enable Mailbox button on a mailbox record in Dynamics 365, the test results section shows Failure and the following alert is logged:
"The email message "Your mailbox is now connected to Dynamics 365" cannot be sent because an error occurred while establishing a secure connection to the email server. Mailbox [Mailbox Name] didn't synchronize. The owner of the email server profile Microsoft Exchange Online has been notified.
Email Server Error Code: Http server returned Forbidden exception."
If you select Details, the following other details are shown:
"Error : System.Net.WebException: The request failed with HTTP status 403: Forbidden.
at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.EndInvoke(IAsyncResult asyncResult)
at Microsoft.Crm.Asynchronous.EmailConnector.ExchangeServiceBinding.EndCreateItem(IAsyncResult asyncResult)
at Microsoft.Crm.Asynchronous.EmailConnector.ExchangeOutgoingEmailProvider.EndCreateItem()"
Cause
Dynamics 365 communicates with Microsoft Exchange using Exchange Web Services (EWS) requests. If EWS is disabled, this error will occur. The following contents are some potential ways that EWS may be disabled or restricted in Exchange:
- EWS is disabled for the mailbox
- EWS is disabled for the entire organization
- The
EwsApplicationAccessPolicy
is set to EnforceAllowList andthe EwsAllowList
doesn't allow access from Dynamics 365 (CRM). - The
EwsApplicationAccessPolicy
is set to EnforceBlockList andthe EwsBlockList
includes Dynamics 365 (CRM).
Resolution
If the issue only occurs for some mailboxes, check if EWS is disabled for the mailbox:
First check to see if EWS has been disabled for the mailbox. Use the following PowerShell command:
Get-CASMailbox <mailbox-alias> | ft EwsEnabled
If EwsEnabled is set to False, use the following PowerShell command to enable Exchange Web Services (EWS) for the mailbox:
Set-CASMailbox <mailbox-alias> -EwsEnabled $True
Important
After running this command, it may take up to 120 minutes before the setting change takes effect.
If the issue occurs for all mailboxes, check if EWS is disabled at the organization level, or if the EwsAllowList is being used to limit what EWS traffic is allowed.
Use the following PowerShell command to see if any of the EWS settings are configured:
Get-OrganizationConfig |ft Name, EwsEnabled,EwsApplicationAccessPolicy,EwsBlockList,EwsAllowList
Verify that EwsEnabled isn't set to False. The following command can be used to set EwsEnabled to True if it's currently set to False:
Set-OrganizationConfig -EwsEnabled $True
Important
After running this command, it may take up to 120 minutes before the setting change takes effect.
If
EwsApplicationAccessPolicy
is set to EnforceAllowList and theEwsAllowList
doesn't contain a value for CRM (Example: CRM/*), which would prevent Dynamics 365 (CRM) from being able to communicate with Exchange. Use the following command to update the list to include CRM/* and whatever other applications you want to allow (<PreviousAllowList> in the following example):Set-OrganizationConfig -EwsApplicationAccessPolicy:EnforceAllowList -EwsAllowList:CRM/*,<PreviousAllowedList>
Important
After running this command, it may take up to 120 minutes before the setting change takes effect.
If
EwsApplicationAccessPolicy
is set to EnforceBlockList and the EwsAllowList contains a value for CRM (Example: CRM/*), which would prevent Dynamics 365 (CRM) from being able to communicate with Exchange. Use the following command to update the list to no longer include CRM:Set-OrganizationConfig -EwsApplicationAccessPolicy:EnforceBlockList -EwsBlockList:<PreviousBlockList WITH CRM REMOVED>
Important
After running this command, it may take up to 120 minutes before the setting change takes effect.
More information
For more information about changing Exchange settings using PowerShell and controlling access to EWS, see the following articles: