detox1978
asked on
Exchange send email attachment limit
Hi All,
We are using Small Business Server 2011. That has Exchange 2010 installed.
One of our users is trying to send a 13MB email, but it is being rejected.
Where is this limit set and how do I remove it?
Thanks
D
We are using Small Business Server 2011. That has Exchange 2010 installed.
One of our users is trying to send a 13MB email, but it is being rejected.
Where is this limit set and how do I remove it?
Thanks
D
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I applied the PowerShell comand, but the user is still getting the error message in Outlook.
They are using Outlook Anywhere - RPC over HTTP. message pops up like an IE alert message.
I've also applied this, but still no luck
http://support.microsoft.com/kb/2222370
They are using Outlook Anywhere - RPC over HTTP. message pops up like an IE alert message.
I've also applied this, but still no luck
http://support.microsoft.com/kb/2222370
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
many thanks got it working,
View current settings
Change settings
View current settings
Get-TransportConfig | ft name, MaxSendSize, MaxReceiveSize
Get-ReceiveConnector | ft name, MaxMessageSize
Get-SendConnector | ft name, MaxMessageSize
Get-mailbox | ft name, MaxSendSize, MaxReceiveSize
Change settings
Set-TransportConfig –MaxSendSize 25MB –MaxReceiveSize 25MB
Set-ReceiveConnector “Windows SBS Internet Receive ServerName” –MaxMessageSize 25MB
Set-SendConnector “Windows SBS Internet Send ServerName” –MaxMessageSize 25MB
http://technet.microsoft.com/en-us/library/bb124708%28v=exchg.150%29.aspx
for specific user you are increase with powershell command too