#!/bin/bash # commented, because relying on cronjob #offlineimap -a fsf # delete based on http://deflexion.com/2006/05/imap-way-of-deleting-message sieve-filter -eW -o mail_location=maildir:/nocow/user/fsfmd:LAYOUT=fs:INBOX=/nocow/user/fsfmd/INBOX ~/sieve/fsf.sieve INBOX delete &>>/tmp/fsfsieve.log # mu indexing happens after this, and if offlineimap is running, # it can index messages which are in the wrong folder. # Just run it again if this happens. # to test new rules, update fsf-test.sieve, run these commands, then copy new fsf-test.sieve to fsf.sieve # sieve-filter -o mail_location=maildir:/nocow/user/fsfmd:LAYOUT=fs:INBOX=/nocow/user/fsfmd/INBOX ~/sieve/fsf-test.sieve INBOX &>/tmp/testfsfsieve.log # sed -rn '/^Performed actions:/{n;n;p}' /tmp/testfsfsieve.log | sort -u