Install Config Wiki

All about installing, configuring and troubleshooting

User Tools

Site Tools


wiki:setting-message-size-limits-in-exchange-server-2016

This is an old revision of the document!


Setting Email Message Size Limits in Exchange 2016

Message size limits There are basically three places where you can configure default message size limits on Exchange:

  • Organization transport settings
  • Send/receive connector settings
  • User mailbox settings.

To check your server’s current limit you can open and access them via Exchange Management Console (EMC), however you can use PowerShell as a method for checking message limits as well. Run the following code in the Exchange Management Shell:

get-transportconfig | ft maxsendsize, maxreceivesize 
get-receiveconnector | ft name, maxmessagesize 
get-sendconnector | ft name, maxmessagesize 
get-mailbox Administrator |ft Name, Maxsendsize, maxreceivesize

The last line of the script (Get-Mailbox) returns information only about the Administrator’s user mailbox. Replace it with the user name that you want to check. Or, you can remove the username Administrator, and this will result in a list of all mailboxes that are present on the Exchange.

get-mailbox |ft Name, Maxsendsize, maxreceivesize

To change the above size limits you can use a PS script too. The example below shows how to change the size of messages accepted by the transport service 100 MB.

Set-TransportConfig -MaxSendSize 100MB -MaxReceiveSize 100MB

The quickest way to set the maximum message size limits for the exchange send and receive connectors is to log into the Exchange Admin Center as a user with appropriate administrative privileges. https://yourmailhostname.yourdomain.tld/ecp/

  • Select 'mail Flow' from the left menu.
  • Select 'receive connectors from the horizontal submenu
  • Select and separately edit each receive connector in the list to change the Maximum receive message size (MB), and click the “Save” button.
  • Select 'send connectors' from the horizontal submenu
  • Select and edit the listed send connector to change the Maximum send message size (MB), and click the 'Save“ button.

To check that your changes have taken effect, open Exchange Management Shell and enter the following:

get-transportconfig | ft maxsendsize, maxreceivesize 
get-receiveconnector | ft name, maxmessagesize 
get-sendconnector | ft name, maxmessagesize 
wiki/setting-message-size-limits-in-exchange-server-2016.1579543686.txt.gz · Last modified: 2020/01/20 18:08 by wikiadmin