This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
internet:mail:exchange:exchange_max_msg_size [2018/04/17 09:24] jcooper |
internet:mail:exchange:exchange_max_msg_size [2020/06/09 08:46] (current) gcooper |
||
---|---|---|---|
Line 74: | Line 74: | ||
===== Exchange 2013 ===== | ===== Exchange 2013 ===== | ||
- | https://technet.microsoft.com/en-us/library/ | + | https://cinchit.com/how-to-set-exchange-2013-email-message-size-restriction/ |
+ | |||
+ | ==== Transport ==== | ||
< | < | ||
- | Set-Mailbox "Debra Garcia" | + | Get-TransportConfig | ft MaxSendSize, |
+ | Set-TransportConfig | ||
</ | </ | ||
- | Check user limits | + | ==== Send Connector ==== |
< | < | ||
- | Get-Mailbox < | + | Get-SendConnector |
+ | Set-SendConnector < | ||
</ | </ | ||
+ | |||
+ | ==== Receive Connector ==== | ||
+ | |||
+ | < | ||
+ | Get-ReceiveConnector | ft name, MaxMessageSize | ||
+ | Set-ReceiveConnector < | ||
+ | </ | ||
+ | |||
+ | ==== Mailbox ==== | ||
+ | |||
+ | < | ||
+ | Get-mailbox | ft Name, MaxSendSize, | ||
+ | Set-Mailbox "User Name" –MaxSendSize 50MB –MaxReceiveSize 50MB | ||
+ | </ | ||
+ | |||
+ | ==== OWA, EWS and ActiveSync ==== | ||
+ | |||
+ | **ActiveSync**: | ||
+ | |||
+ | https:// | ||
+ |