This tutorial is available in other languages

Italiano / 简体中文 /

Change mail attachment size

To change mail attachment size, we have to change 3 settings.

Change message size limit in postfix

Postfix is MTA, so we have to change its setting to transfer mail with large attachment.

For example, to allow mail with 100Mb attachment, please change both message_size_limit and mailbox_size_limit settings like below:

# postconf -e message_size_limit='104857600'
# postconf -e mailbox_size_limit='104857600'

Restart postfix to make it work:

# /etc/init.d/postfix restart

NOTES:

If you use mail clients such as Outlook, thunderbird to send mails, it's now ok to sent large attachment with above setting.

Change upload file size in Roundcube webmail

If you have Roundcube webmail, please change two more settings:

Change PHP setting to allow to upload large attachment

You should change memory_limit, upload_max_filesize and post_max_size in PHP config file /etc/php.ini

memory_limit = 200M;
upload_max_filesize = 100M;
post_max_size = 100M;

Change Roundcube webmail settings to allow large attachment

Change same settings in file .htaccess under roundcube root directory:

Note: this .htaccess file may not exist on some Linux/BSD distributions, if it doesn't exist, you can skip this step.

php_value    memory_limit   200M
php_value    upload_max_filesize    100M
php_value    post_max_size  100M

Restart Apache or php-fpm service to make it work.

Change upload file size in Nginx

Find setting client_max_body_size in Nginx config file /etc/nginx/nginx.conf, change it to a proper value to match your need.

``` http { ... client_max_body_size 100m; ... }

All documents are available in BitBucket repository, and published under Creative Commons license. You can download the latest version for offline reading. If you found something wrong, please do contact us to fix it.