2016-07-19 14:22:23 0 评论 Linux Boy.Lee

Centos Mutt 邮件发送失败 postdrop: warning: uid=0: File too large 解决办法

在Centos中使用Mutt当发送带附件邮件的时候, 会得到错误 postdrop: warning: uid=0: File too large,主要是因为附件超过限制大小,可以通过如下方法解决

//修改限制到512M
# postconf -e "message_size_limit = 512000000"
# postconf -e "mailbox_size_limit = 512000000"


//修改限制到1024M(1G) 
# postconf -e "message_size_limit = 1024000000"
# postconf -e "mailbox_size_limit = 1024000000"

{ 相关链接 }

CENTOS 使用 MUTT发送邮件