summaryrefslogtreecommitdiff
path: root/postfix/cron.weekly
diff options
context:
space:
mode:
authorroot <root@homebase.dk>2010-06-18 08:57:45 +0200
committerroot <root@homebase.dk>2010-06-18 08:57:45 +0200
commit7b4ac1d137f6ed31f341e4ce86db10dd5039f7e6 (patch)
treeeabcf62bb183e133b25a88d115f4c7c6ba5ecd59 /postfix/cron.weekly
parentd571bda1393dfe7ea85dee072f6c5ab56296c78d (diff)
Extend weekly mail purge with /home/*/Maildir/.Junk.
Diffstat (limited to 'postfix/cron.weekly')
-rwxr-xr-xpostfix/cron.weekly/local-purgeoldtrashedmails2
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