If your users receive an NDR with "Your message
wasn't delivered to anyone because it's too large." a quick way to check the limits on your connectors is:
Get-TransportConfig | ft maxsendsize, maxreceivesize
MaxSendSize MaxReceiveSize
----------- --------------
50 MB (52,428,800 bytes) 50 MB (52,428,800 bytes)
Get-ReceiveConnector | ft name, maxmessagesize
Name MaxMessageSize
---- --------------
Exchange Users 50 MB (52,428,800 bytes)
Relay - This 50 MB (52,428,800 bytes)
Relay - That 50 MB (52,428,800 bytes)
Get-SendConnector | ft name, maxmessagesize
Name MaxMessageSize
---- --------------
Exchange Users 50 MB (52,428,800 bytes)
Send - This 50 MB (52,428,800 bytes)
Send - That 50 MB (52,428,800 bytes)
Get-TransportConfig | ft maxsendsize, maxreceivesize
MaxSendSize MaxReceiveSize
----------- --------------
50 MB (52,428,800 bytes) 50 MB (52,428,800 bytes)
Get-ReceiveConnector | ft name, maxmessagesize
Name MaxMessageSize
---- --------------
Exchange Users 50 MB (52,428,800 bytes)
Relay - This 50 MB (52,428,800 bytes)
Relay - That 50 MB (52,428,800 bytes)
Get-SendConnector | ft name, maxmessagesize
Name MaxMessageSize
---- --------------
Exchange Users 50 MB (52,428,800 bytes)
Send - This 50 MB (52,428,800 bytes)
Send - That 50 MB (52,428,800 bytes)
Comments
Post a Comment