This tutorial is available in other languages. Help translate more
Attention
Check out the lightweight on-premises email archiving software developed by iRedMail team: Spider Email Archiver.
要修改邮件附件大小,需要修改三个地方。
Postfix 是一个邮件传送代理(MTA),因此,要修改配置以使它能传送大附件的邮件。
假设要修改附件大小为 100MB,需对 message_size_limit
和 mailbox_size_limit
做如下修改:
# postconf -e message_size_limit='104857600'
# postconf -e mailbox_size_limit='104857600'
之后重启 Postfix 服务,使上述修改生效:
# /etc/init.d/postfix restart
注意:
104857600
是由 100 (MB) x 1024 (KB) x 1024 (Bit) 计算得到的结果。mailbox_size_limit
的值比 message_size_limit
小,你会在 Postfix 日志
文件里看到这样的错误信息:fatal: main.cf configuration error:
mailbox_size_limit is smaller than message_size_limit
.这样你就可以通过客户端正常发送邮件了。
如果使用 Roundcube 网页邮箱,需要额外更改两个地方:
修改 PHP 配置文件 /etc/php.ini
中的 memory_limit
, upload_max_filesize
和 post_max_size
三个参数:
/etc/php.ini
/etc/php5/apache2/php.ini
/usr/local/etc/php.ini
(Apache),或者是 /etc/php5/fpm/php.ini
(Nginx)。/etc/php-5.4.ini
。如果你运行的 PHP 版本号为 5.4 ,路径将会不一样。memory_limit = 200M;
upload_max_filesize = 100M;
post_max_size = 100M;
修改 roundcube 目录下的 .htaccess
文件:
/var/www/roundcubemail/.htaccess
/usr/share/apache2/roundcubemail/.htaccess
或者
/opt/www/roundcubemail/.htaccess
./usr/local/www/roundcubemail/.htaccess
/var/www/roundcubemail/.htaccess
注意:某些 Linux/BSD 发行版本可能没有 .htaccess
文件,此时你可以忽略此步骤。
php_value memory_limit 200M
php_value upload_max_filesize 100M
php_value post_max_size 100M
重启 Apache 或 php-fpm 服务以使上述修改生效。
在配置文件 /etc/nginx/nginx.conf
中找到参数 client_max_body_size
,按需要修改大小:
http {
...
client_max_body_size 100m;
...
}
SOGo-3.x 引入新参数 WOMaxUploadSize
用于限制上传文件的大小,请将它添加到 SOGo
配置文件 /etc/sogo/sogo.conf
里并设置一个合适的附件大小。
// set the maximum allowed size for content being sent to SOGo using a PUT or
// a POST call. This can also limit the file attachment size being uploaded
// to SOGo when composing a mail.
//
// - The value is in kilobyte.
// - By default, the value is 0, or disabled so no limit will be set.
WOMaxUploadSize = 102400;
修改后需要重启 SOGo 服务。
Outlook 有自己的附件大小限制,如果超出限制会弹出错误信息 The
attachment size exceeds the allowable limit.
如需要在 Windows 系统上修改 Outlook 程序的附件大小限制,请参照以下步骤:
HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences
HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Preferences
在以上条目底下添加注册表项:
注意:
退出注册表编辑器。