diff options
author | root <root@homebase.dk> | 2009-05-07 12:37:19 +0200 |
---|---|---|
committer | root <root@homebase.dk> | 2009-05-07 12:37:19 +0200 |
commit | fff01fe0db15da361ca8579b4aebfa009f77e9e4 (patch) | |
tree | 5b102a91b7bc476cbbb395a40597bc4027c06668 /postfix | |
parent | 558fc7d7cca2df4fd5d68148ccd8bf0f21e4f968 (diff) |
Locate more trash mail to purge.
Diffstat (limited to 'postfix')
-rwxr-xr-x | postfix/cron.weekky/local-purgeoldtrashedmails | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix/cron.weekky/local-purgeoldtrashedmails b/postfix/cron.weekky/local-purgeoldtrashedmails index 205585b..7674508 100755 --- a/postfix/cron.weekky/local-purgeoldtrashedmails +++ b/postfix/cron.weekky/local-purgeoldtrashedmails @@ -4,6 +4,6 @@ set -e -find /home/*/Maildir/.Trash /home/*/Maildir/.trash /home/*/Maildir/.Deleted\ Messages /home/*/Maildir/.Deleted\ Items -type f -mtime +60 -exec rm -f '{}' ';' +find /home/*/Maildir/.Trash /home/*/Maildir/.Trash.* /home/*/Maildir/.INBOX_Trash /home/*/Maildir/.trash /home/*/Maildir/.Deleted\ Messages /home/*/Maildir/.Deleted\ Items /home/*/Maildir/.Slettet\ post -type f -mtime +60 -exec rm -f '{}' ';' exit 0 |