报错:
postfix/postdrop[23110]: warning: mail_queue_enter: create file maildrop/749274.23110: No such file or directory
postdrop: warning: mail_queue_enter: create file maildrop/xxxx.xxxx: Permission denied
参考链接:
http://blog.sina.com.cn/s/blog_49972b9501011yg5.html
http://www.cnblogs.com/skyaccross/archive/2013/03/21/crond_sendmail.html
http://blog.csdn.net/smstong/article/details/8920808
crond在执行脚本时会将脚本输出信息以邮件的形式发送给crond用户,而环境的postfix没有正常运行,导致邮件发送失败
所以在写root或者其他用户的crontab的时候,结尾一定要加上 > /dev/null 2>&1
*/1 * * * * echo 'flush_all' | nc -v localhost 11211 > /dev/null 2>&1
*/1 * * * * zmprov fc all > /dev/null 2>&1
防止/var/spool/postfix/maildrop的小文件将inode数量占满。
第一:定时清除文件
0 0 * * * root find /var/spool/postfix/maildrop/ -type f | xargs rm -f > /dev/null 2>&1
第二:去掉MAILTO=ROOT改成MAILTO=""(貌似不太管用)
本文转自Tenderrain 51CTO博客,原文链接:http://blog.51cto.com/tenderrain/1836034,如需转载请自行联系原作者