All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
11 PMVAR=$HOME/.var/procmail
12 MAILFILT=$HOME/.etc/mailfilter
15 REPLIES=$MAILFILT/autoreplies
17 LOGFILE=${LOGFILE:-$PMVAR/log}
22 #NICE='/usr/bin/nice -20'
24 PROCMAIL="$NICE /usr/bin/procmail -p $PMDIR/procmailrc"
25 FORMAIL="$NICE /usr/bin/formail -f"
26 EGREP="$NICE /bin/egrep"
28 DELIVER="$NICE /usr/lib/dovecot/deliver"
30 CRM114="$NICE /usr/share/crm114/mailreaver.crm -u $MAILFILT/crm114/"
31 SA_PREFS="$MAILFILT/spamassassin/user_prefs"
32 SPAMASSASSIN="$NICE /usr/bin/spamassassin --prefs-file=$SA_PREFS"
33 SPAMC="$NICE /usr/bin/spamc --log-to-stderr --no-safe-fallback"
34 #SPAMC="$SPAMASSASSIN"
35 TRAINER="$MAILFILT/bin/train"
38 OURDATE_SHORT=`date +%Y.%m.%d.%H.%M.%N`
44 ORGMAIL=$HOME/BOUNCED-MAIL
46 # maximum message size for spam checking
47 SPAMCHECK_MAX_MESSAGE_SIZE=512000
49 # if crm114 is unsure and SA returns a score less-than-or-equal to this,
50 # autotrain crm114 with ham
51 CRM_UNSURE_SA_AUTOTRAIN_LIMIT_HAM=2.0
52 # if crm114 classifies a message as spam but SA returns a score
53 # less-than-or-equal to this, retrain crm114
54 CRM_MISCLASSIFY_SA_AUTOTRAIN_LIMIT_HAM=-1.0
55 # if crm114 is unsure and SA returns a score greater than this, autotrain
57 CRM_UNSURE_SA_AUTOTRAIN_LIMIT_SPAM=8.0
58 # if crm114 classifies a message as ham but SA returns a score
59 # greate than this, retrain crm114
60 CRM_MISCLASSIFY_SA_AUTOTRAIN_LIMIT_SPAM=11
62 ### constants used in rules
65 RE_MYDOMAIN="(.+\.)*madduck\.net"
66 RE_MAILRELAYS="(seamus|clegg)\.madduck\.net"
69 RE_SPACE_NEWLINE="(^|$RE_SPACE)"
70 RE_FIRSTNAME="martin($RE_SPACE_NEWLINE+f(\.?|elix))?"
72 RE_EXTRACT_HEADER_VALUE="$RE_SPACE*\/$RE_NOT_SPACE.*"
74 DEJAVU_HEADER=X-Deja-Vu
77 DELAY_QUEUE=$BASE/.delay/
78 TICKLER_QUEUE=$BASE/.tickler/
79 DISCARD=$BASE/.discard/
80 #DISCARD="'|$DELIVER -m BASE.discard'"
82 ### variables from the message
84 ### local recipient data
85 # user+foobar@my.domain.org
91 USER="${USER:-$LOGNAME}"
92 EXTENSION="${EXTENSION:-}"
93 LOCAL="${LOCAL:-$USER${EXTENSION:++$EXTENSION}}"
94 HOSTNAME="`hostname --fqdn`"
95 DOMAIN="${DOMAIN:-$HOSTNAME}"
96 RECIPIENT="${RECIPIENT:-$LOCAL@$DOMAIN}"
97 ID="$LOGNAME@$HOSTNAME"
100 INCLUDERC=$PMDIR/get-msgid
102 # if $SENDER is undefined or not an email address, get it from the message
105 *$ ^Sender:$RE_EXTRACT_HEADER_VALUE
109 *$ ^Date:$RE_EXTRACT_HEADER_VALUE
113 *$ ^From:$RE_EXTRACT_HEADER_VALUE
117 *$ ^Subject:$RE_EXTRACT_HEADER_VALUE
121 *$ ^X-Original-To:$RE_EXTRACT_HEADER_VALUE
122 { ORIGINAL_TO="$MATCH" }
124 { LOG="NO ORIGINAL_TO: $MSGID" }
126 # fix variable values for special cases
127 INCLUDERC=$PMDIR/normalise
130 * ORIGINAL_TO ?? ^\/[^@]+
131 { ORIG_LOCAL="$MATCH" }
134 * ORIGINAL_TO ?? .+@\/.+
135 { ORIG_DOMAIN="$MATCH" }
137 ### run-time variables
140 # a procmail-style flag, which is true if unset and false if set (to !).
141 # unset by dejavu if the message has already been seen by the filter (according
142 # to the X-Been-There header).
146 # set this to a folder if the message should be delivered elsewhere than the
151 # if set, cuases spamchecks to be skipped, value lists reason
155 # set by spamtrapped and eqdomains and used to bypass spamchecks and handle as
156 # spam immediately. The value identifies who unset the variable.
160 # if set, then the mailfilter is as sure as it gets that the message is spam.
161 # The value identifies who set the variable.
165 # if set, then the various spamchecks disagree about spaminess of the mail.
166 # The value can hold additional information.
170 # if set, then the various spamchecks are unsure about spaminess of the mail.
171 # The value can hold additional information.
175 # if set, the spamchecks were skipped. The value gives the reason for
180 # if set, causes spamfilters to be retrained, according to the variable's value
184 # if set, contains reason why justme message was passed
188 # if set, contains category with which this message has just been trained