廣告

2024 年 5 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

彙整

20210203 – postfix 自動刪除MAILBOX八天後的信

FOXMAIL最少只能設定14天,我希望能保存八天即可


加入排程
[root@mail maildir]# vim /etc/crontab

設定時間與指令

#每日0點10分刪除使用者信箱保留8天

10 0 * * * root find /var/spool/maildir/*/cur -mdate +8 -exec rm {} \;

==================
每個USER信箱可用萬用字元代替,就可以不用迴圈處理 /var/spool/maildir/*

這邊要處理所有使用者信箱的 cur目錄,讓信件維持在八天左右,超過自動刪除

讀者也會看的其它文章:

    Comments are closed.