Postfix邮件队列查看方法
PostFix之postqueue指令
看被Queue的信:
postqueue -p?
or
mailq
強迫將Queue信寄出:
postqueue -f
刪除所有被Queue的信:
postsuper -d ALL
刪除某封Queue的信:
先用postqueue -q or mailq
查queue_id
postsuper -d queue_id
刪除所有正在 deferred 隊列中的郵件 ( 刪除曾經(jīng)發(fā)生失敗的信 ):
postsuper -d ALL deferred
刪除所有正在 deferred 隊列中的郵件 ( 可看出哪些信被刪除了 ):
find /var/spool/postfix/deferred -type f -exec rm -vf {} ;
刪掉「三天以前」無法發(fā)出的郵件:
find /var/spool/postfix/deferred -type f -mtime +3 -exec rm -f {} ;
列出目前所有無法發(fā)出的郵件:
find /var/spool/postfix/deferred -type f -exec ls -l --time-style=+%Y-%m-%d_%H:%M:%S {} ;
刪除超過 5 天的 "defer" 隊列中的退信記錄:
find /var/spool/postfix/defer -type f -mtime +5 -exec rm -f {} ;
附帶一提:
如何讓PostFix支持MailDir格式:
在main.cf中設(shè)置:
home_mailbox = Maildir/
任何相對路徑末尾加上「/」號都表示打開了maildir支持,home_mailbox設(shè)置的值將會追加到使用者的home目錄,也就是如果你指定home_mailbox = mymail/,那么postfix也認為
打開了maildir支持,並把信件投遞到使用者home目錄下的mymail目錄中。
轉(zhuǎn)載于:https://www.cnblogs.com/gongchixin/articles/7518610.html
總結(jié)
以上是生活随笔為你收集整理的Postfix邮件队列查看方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: TDDBDD
- 下一篇: python3 爬虫4--解析链接