Roundcube webmail attach size limit
increase all php settings message_size_limit upload_max_filesize memory_limit
whereis php.ini
make sure there is .htaccess file in /var/www/roundcube/.htaccess
i edit php ini
post_max_size = 100M
upload_max_filesize = 100M
also
/var/www/html/roundcubemail/.htaccess
or comment all limitation in /var/www/html/roundcube/.htaccess
#php_value upload_max_filesize 64M
#php_value post_max_size 64M
#php_value memory_limit 64M
php_value upload_max_filesize 100M
php_value post_max_size 100M
| ||
The default setting in the /etc/exim.conf for the message size limit is: message_size_limit = 20M You can edit the /etc/exim.conf and increase this value as needed. Restart exim after changing the value/etc/init.d/exim restart SpamBlocker 4.x+Newer exim.conf versions will use the /etc/exim.variables.conf file.To change that, edit /etc/exim.variables.conf.custom using the custom variables guide to add:message_size_limit=500M or whatever you need, then run:cd /usr/local/directadmin/custombuild If you're using ClamAV, you'd also need to match the StreamMaxLength setting in /etc/clamd.conf, to the message_size_limit. |
Comments
Post a Comment