1 #!/bin/bash
 2 # 2008-07-02 by SDK, clean up mailbox and correct bogofilter
 3
 4 echo "Spam missed (learning now):"
 5 bogofilter-sqlite -vv -s -B ~/.emails/.x-spam-missed
 6 rm -f ~/.emails/.x-spam-missed/cur/*
 7 rm -f ~/.emails/.x-spam-missed/new/*
 8
 9 echo "False positive (learning now):"
10 bogofilter-sqlite -vv -n -B ~/.emails/.x-spam-false-positive
11 rm -f ~/.emails/.x-spam-false-positive/cur/*
12 rm -f ~/.emails/.x-spam-false-positive/new/*
13
14 echo "Clear out spam folder:"
15 rm -f ~/.emails/.x-spam/cur/*
16 rm -f ~/.emails/.x-spam/new/*
17