diff options
author | root <root@homebase.dk> | 2010-06-18 08:57:45 +0200 |
---|---|---|
committer | root <root@homebase.dk> | 2010-06-18 08:57:45 +0200 |
commit | 7b4ac1d137f6ed31f341e4ce86db10dd5039f7e6 (patch) | |
tree | eabcf62bb183e133b25a88d115f4c7c6ba5ecd59 | |
parent | d571bda1393dfe7ea85dee072f6c5ab56296c78d (diff) |
Extend weekly mail purge with /home/*/Maildir/.Junk.
-rwxr-xr-x | postfix/cron.weekly/local-purgeoldtrashedmails | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix/cron.weekly/local-purgeoldtrashedmails b/postfix/cron.weekly/local-purgeoldtrashedmails index 7674508..2acd612 100755 --- a/postfix/cron.weekly/local-purgeoldtrashedmails +++ b/postfix/cron.weekly/local-purgeoldtrashedmails @@ -4,6 +4,6 @@ set -e -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 '{}' ';' +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 /home/*/Maildir/.Junk -type f -mtime +60 -exec rm -f '{}' ';' exit 0 |