iRedMail/Roundcube修改邮件上传附件大小
- 其他运维
- 2024-07-07
- 359热度
- 0评论
iredmail安装完成后默认的附件大小为10Mb,对于正常使用来说太小了,本篇我们记录一下如何调整iredmail附件大小,可一顿操作下来还是提示”上传附件最大不超过 11 MB“,如何解决?iredmail调整附件大小稍微麻烦一点,需要修改的地方主要是以下几处:
1、php-fpm(webmail);
2、postfix(邮件服务器);
3、nginx(web)
参考官方文档:https://docs.iredmail.org/change.mail.attachment.size-zh_CN.html
修改php上传限制
vi /etc/php.ini
修改以下2处,upload_max_filesize和post_max_size,需要注意的是post_max_size大于等于upload_max_filesize。
upload_max_filesize = 1024M;
post_max_size = 1200M;
修改postfix附件大小限制
postconf -e message_size_limit='1073741824'
postconf -e mailbox_size_limit='1073741824'
修改roundcube配置
修改roundcube目录下.htaccess文件
vi /opt/www/roundcubemail/.htaccess
添加配置
php_value memory_limit 1500M
php_value upload_max_filesize 1024M
php_value post_max_size 1200M
修改nginx配置
通过查看nginx的配置文件可知,iredmail安装后已经把body size配置单独拎出来了,直接修改即可
vi /etc/nginx/conf-enabled/client_max_body_size.conf
修改client_max_body_size大小
client_max_body_size 1024m;
重启服务
重启php
service php7.4-fpm restart
重启postfix
/etc/init.d/postfix restart
nginx重载配置
/usr/sbin/nginx -s reload
意外情况
至此已按照官方文档对邮件附件大小进行修改,不出意外的话这里会出现意外,发现roundcube web端还是提示”上传附件最大不超过 11 MB“,奇怪~
猜测是roundcube还有其他地方对附件大小进行了设置,查看roundcube配置
vi /opt/www/roundcubemail/config/config.inc.php
发现有这么一个配置
$config['max_message_size'] = '15M';
将其改为100M测试一下,web端显示变成了75M,看来roundcube是取max_message_size的75%作为附件大小限制,那么我们想限定附件大小1024M,设为1366M即可。