summaryrefslogtreecommitdiff
path: root/postfix/cron.weekly/local-purgeoldtrashedmails
blob: 2acd6123026694d57854c3f0b0c3d42002e81fa2 (plain)
  1. #!/bin/sh
  2. #
  3. # Purge trashed mails older than 2 months
  4. set -e
  5. 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 '{}' ';'
  6. exit 0