diff options
author | root <root@homebase.dk> | 2009-05-07 12:38:28 +0200 |
---|---|---|
committer | root <root@homebase.dk> | 2009-05-07 12:38:28 +0200 |
commit | 5c77354ed123874f634332042dd2074d955d6818 (patch) | |
tree | bc087305d146bd6b86616f04546af6d3b905e03d /postfix/cron.weekky/local-purgeoldtrashedmails | |
parent | fff01fe0db15da361ca8579b4aebfa009f77e9e4 (diff) |
Fix typo in dirname: cron.weekky → cron.weekly.
Diffstat (limited to 'postfix/cron.weekky/local-purgeoldtrashedmails')
-rwxr-xr-x | postfix/cron.weekky/local-purgeoldtrashedmails | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/postfix/cron.weekky/local-purgeoldtrashedmails b/postfix/cron.weekky/local-purgeoldtrashedmails deleted file mode 100755 index 7674508..0000000 --- a/postfix/cron.weekky/local-purgeoldtrashedmails +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# -# Purge trashed mails older than 2 months - -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 '{}' ';' - -exit 0 |