Exchange Server 2013 email size restriction
The email message size value you are trying to configure should be 33% larger than the actual message sizes. For example if you want to allow 30 MB email size then the message size parameter should be 43 MB value. The reason behind is it uses Base64 encoding which increase the message size to 33% of the real message size.
The email size restriction for user mailbox will be applied in the following order
- Global Transport configuration settings
- Send connector size restriction
- Receive connector size restriction
- In the user mailbox properties of send and receive size limit
- Exchange Web Service (EWS)
- Outlook Web Access (OWA)
- ActiveSync
Now let us understand in detail on how each component works
- Global Transport configuration settings
To check only the send and receive size of email
Get-TransportConfig | ft MaxSendSize, MaxReceiveSize
For example if you want to modify the sending and receiving email message size to 100 MB in the global Tranport configuration
Set-TransportConfig –MaxSendSize 20MB –MaxReceiveSize 100MB
- Send connector size restriction
Get-SendConnector | ft name, MaxMessageSize
Set-SendConnector
- Receive connector size restriction
Get-ReceiveConnector | ft name, MaxMessageSize
Set-ReceiveConnector
- In the user mailbox properties of send and receive size limit
Get-mailbox | ft Name, MaxSendSize, MaxReceiveSize
Set-Mailbox “test” –MaxSendSize 20MB –MaxReceiveSize 20MB
Exchange Server Configuration File – Email Size Restriction
- 1. Outlook Web Access
Default Email message size in OWA:
maxAllowedContentLength="35000000" (value in bytes) = Approx 33 MB
maxReceivedMessageSize="35000000" (value in bytes) = Approx 33 MB
maxRequestLength="35000" (value in kilobytes) = Approx 34 MB
You can change this value to whatever size you need.
- 2. Exchange Web Services (EWS)
Default Email message size in EWS:
maxAllowedContentLength="67108864" (value in bytes) = Approx 64 MB
maxReceivedMessageSize="67108864" (value in bytes) = Approx 64 MB
You can change this value to whatever size you need.
- 3. ActiveSync
Default Email message size in Activesync:
maxRequestLength="10240" (value in kilobytes ) = Approx 10 MB
Error Message and NDR
There are various error message which is listed below will occur if the value is not configured as per the above rule.
Error 1:
The following recipient(s) could not be reached:
raji@mail.com on 01/15/2014 3:54 PM
This message is larger than the current system limit or the recipient’s mailbox is full. Create a shorter message body or remove attachments and try sending it again.
Error 2:
The following recipient(s) could not be reached
raji@mail.com on 01/15/2014 3:54 PM
This message is larger than the current system limit or the recipient’s mailbox is full. Create a shorter message body or remove attachments and try sending it again.
Error 3:
Delivery has failed to these recipients or distribution lists:
administrator@mail.com
This message exceeds the maximum message size allowed. Microsoft Exchange will not try to redeliver this message for you. Please make the message smaller -- by removing attachments, for example -- and try sending it again, or provide the following diagnostic text to your system administrator.
Diagnostic information for administrators:
Generating server: MBX01.mail.com
administrator@mail.com
#550 5.2.3 RESOLVER.RST.SendSizeLimit; message too large for this sender ##
Error 4
OWA Error - The request filter module is configured to deny a request that exceeds the request content length”
Error 5
EWS Error - Email is goes in drafts or never leaves the outbox and the client receives an “exceeded the size limit”
Reference:
http://technet.microsoft.com/en-us/library/hh529949%28v=exchg.150%29.aspx
http://technet.microsoft.com/en-us/library/bb124345(v=exchg.150).aspx
No comments:
Post a Comment