Attachment size in Webmail

Discussion forum for Enterprise Edition.
Post Reply
dcol
Posts: 237
Joined: Fri May 26, 2017 11:25 pm

Attachment size in Webmail

Post by dcol »

I am getting an error when trying to attach a large 40MB file in webmail. The message I get is 'The page was not displayed because the request entity is too large'. I can send a 25MB file but not much larger. I want to limit attachment size to 100MB
I set the maxRequestLength="100240" in web.config and that did not work. Also changed SMTP outbound limit size to 100MB

MailEnable-Ian
Site Admin
Posts: 9738
Joined: Mon Mar 22, 2004 4:44 am
Location: Melbourne, Victoria, Australia

Re: Attachment size in Webmail

Post by MailEnable-Ian »

Hi,

You may need to edit the maxAllowedContentLength property in the ApplicationHost.config file, as this maybe overriding the web.config for web mail.

Please see: http://www.mailenable.com/kb/content/article.asp?ID=ME020445
Regards,

Ian Margarone
MailEnable Support

dcol
Posts: 237
Joined: Fri May 26, 2017 11:25 pm

Re: Attachment size in Webmail

Post by dcol »

Don't know where the ApplicationHost.config file is located. Ended up fixing it by adding this to the web.config

<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="100240000" />
</requestFiltering>
</security>

Post Reply