Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

attachments above 10Mb fails

Status
Not open for further replies.

Beecky

IS-IT--Management
Dec 16, 2006
29
0
0
BE
Hi folks,

We encounter some issues when sending emails above 10Mb.
When we try to send these from our outlook client, we get the message

"... reported error (0x80040610):'The message being sent exceeds the message size established for this user'

I allready changed the Receiveconnector from 10Mb to 30Mb but still not possible to sent emails above 10Mb.
I also checked the sendconnector but here is the maxmessagesize set to unlimited.

I don't know anymore where to search.

Thanks for your help

Best Regards


Beecky

 
To find out what the current limit is use the following command in power shell

Get-SendConnector "Send Connector Name" | Format-List

10 MB is default. To set a new limit use the following command in power shell

Set-SendConnector "Send Connector Name" -MaxMessageSize 100MB

It is what it is!!
__________________________________
A+, Net+, I-Net+, Certified Web Master, MCP, MCSA, MCSE, CCNA, CCDA, and few others (I got bored one day)
 
Hello Computerhighguy

I don't agree with your tip. This is true when sending email to the internet. But we have also this problem when we try to send internal emails above 10Mb
The transportcontrol show also that the maximum messagesize is Unlimited.

This is the result from a Get-SendConnector

AddressSpaces : {smtp:*;1}
AuthenticationCredential :
Comment :
ConnectedDomains : {}
ConnectionInactivityTimeOut : 00:10:00
DNSRoutingEnabled : False
DomainSecureEnabled : False
Enabled : True
ForceHELO : False
Fqdn :
HomeMTA : Microsoft MTA
HomeMtaServerId : xxxxxx
Identity : xxxxxxxxx
IgnoreSTARTTLS : False
IsScopedConnector : False
IsSmtpConnector : True
LinkedReceiveConnector :
MaxMessageSize : unlimited
Name : xxxxxxxxxxxx
Port : 25
ProtocolLoggingLevel : None
RequireTLS : False
SmartHostAuthMechanism : None
SmartHosts : {[192.168.1.8]}
SmartHostsString : [192.168.1.8]
SourceIPAddress : 0.0.0.0
SourceRoutingGroup : Exchange Routing Group (DWBGZMFD01QNBJR)
SourceTransportServers : {xxxxx}
UseExternalDNSServersEnabled : False

regards

David
 
Have you tried these commands

Get-SendConnector | Select identity,MaxMessageSize

followed by increasing it's size:

Set-SendConnector -identity "NameOfSendConnector" -MaxMessageSize: 20MB
 
GrimR

I've read the document, but all seems correct. The strangest thing is that even internal mail above 10Mb is not getting through. The when I do a Get-Transportconfig it shows me unlimited.

The result of the Get-SendConnector is

This is the result from a Get-SendConnector

AddressSpaces : {smtp:*;1}
AuthenticationCredential :
Comment :
ConnectedDomains : {}
ConnectionInactivityTimeOut : 00:10:00
DNSRoutingEnabled : False
DomainSecureEnabled : False
Enabled : True
ForceHELO : False
Fqdn :
HomeMTA : Microsoft MTA
HomeMtaServerId : xxxxxx
Identity : xxxxxxxxx
IgnoreSTARTTLS : False
IsScopedConnector : False
IsSmtpConnector : True
LinkedReceiveConnector :
MaxMessageSize : unlimited
Name : xxxxxxxxxxxx
Port : 25
ProtocolLoggingLevel : None
RequireTLS : False
SmartHostAuthMechanism : None
SmartHosts : {[192.168.1.8]}
SmartHostsString : [192.168.1.8]
SourceIPAddress : 0.0.0.0
SourceRoutingGroup : Exchange Routing Group (DWBGZMFD01QNBJR)
SourceTransportServers : {xxxxx}
UseExternalDNSServersEnabled : False


As you can see it shows unlimited...

I'm missing something here

regards

Beecky
 
Yeah I totally want my props for this one. Lots of stars everyone.

3 Easy Steps

1)Using ADSIEdit, go to Configuration -> Services -> Microsoft Exchange -> (org) -> Global Settings

2)Right click Message Delivery -> Properties,

3) Clear delivContLength & Clear submissionContLength

I had to reboot the exchange server for this to take effect. If you wait 20 minutes or so, it will probably take effect.





It is what it is!!
__________________________________
A+, Net+, I-Net+, Certified Web Master, MCP, MCSA, MCSE, CCNA, CCDA, and few others (I got bored one day)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top