#VERBOSE=ON
###
### Variables
###

PATH=$HOME/bin:/usr/bin:/bin:/usr/local/bin
MAILDIR=$HOME/Mail
LOGFILE=$MAILDIR/log
LOCKFILE=$HOME/.lockmail
DEFAULT=/var/spool/mail/gnuser
NOCLOBBER=

###
### rules
###

# kill mailer automatic repsonses to the spam filter
:0H
* ^FROM_MAILER.*
* B ?? .*Subject: Unexpected Mail.*
/dev/null


# this is the main filtering statement
# it is a giant AND NOT statement
# read it (and edit it) thus:
# If the subject isn't hey::
# and the subject isn't my-email-list-subject (for mailing lists)
# and it isn't to my-email-list@host.com (another mailing list kludge)
# and it isn't from me (my full name--my email address will be spoofed)
# and it isn't from my friend
# and it isn't from my other friend
# then run the spamless script to tell them they got bit-bucketed

:0H
* !^Subject:.*hey::.*
* !^Subject:.*my-email-list-subject.*
* !^To:.*my-email-list@host.com.*
* !^From: Gnu User <gnuser@host.com>$
* !^From: myfriend@hishost.com
* !^From: otherfriend@hishost.com
| ~/spamless/spamless

