A few of my users were getting rejected by a remote server when trying to send/receive attachment of 9-10Mb.
I tried the following command
Set-TransportConfig –MaxSendSize 10MB –MaxReceiveSize 15MB
This did not work.
I ran the following command
Set-TransportConfig -ExternalDsnMaxMessageAttachSize 100 MB -InternalDsnMaxMessageAttachSize 100MB -MaxReceiveSize 100MB -MaxSendSize 100MB
This allowed the users to send and receive attachment size in the 10MB size.
My question is why do I have to increase the attachment to 10 times more than what I intended to do for it to work?
Thanks
Ruben