Link to home
Create AccountLog in
Avatar of detox1978
detox1978Flag for United Kingdom of Great Britain and Northern Ireland

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
Avatar of Haresh Nikumbh
Haresh Nikumbh
Flag of India image

refer below link

http://technet.microsoft.com/en-us/library/bb124708%28v=exchg.150%29.aspx

for specific user you are increase with powershell command too
SOLUTION
Avatar of Haresh Nikumbh
Haresh Nikumbh
Flag of India image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of detox1978

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
ASKER CERTIFIED SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
many thanks got it working,

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