]> git.donarmstrong.com Git - spamassassin_config.git/commitdiff
* add more rules to try to catch new kinds of automatic response spam
authorDon Armstrong <don@debian.org>
Thu, 12 Mar 2009 04:13:55 +0000 (04:13 +0000)
committerDon Armstrong <don@debian.org>
Thu, 12 Mar 2009 04:13:55 +0000 (04:13 +0000)
git-svn-id: svn+ssh://svn.debian.org/svn/pkg-listmaster/trunk/spamassassin_config@297 0b7a5b0c-1f2c-0410-bd74-c376f8064c91

common/auto_response_spam

index bb6f9b6c591e6bafcfd81edf083afd2f50a35293..41b3f5321b4213a2e59ecdad8cedc1a6f2ca8f0b 100644 (file)
@@ -23,6 +23,18 @@ header YOURMESSAGE   subject =~ /your message/i
 describe YOURMESSAGE   It's great that our message did something; we don't care
 score YOURMESSAGE      2.5
 
+body YOURMESSAGEBOD    /^Your message/i
+describe YOURMESSAGEBOD        It's great that our message did something; we don't care
+score YOURMESSAGEBOD   2.5
+
+body NODELIVERY                /could not be delivered/i
+describe NODELIVERY    We don't care if it could not be delivered
+score NODELIVERY       1.5
+
+body NORESEND          /do not resend your original message/i
+describe NORESEND      If you don't want us to resend our message, why tell us?
+score NORESEND         2
+
 body  NOTPROCBOUNCE    /was not processed by our system/i
 describe NOTPROCBOUNCE Bounce by system that was not processed
 score NOTPROCBOUNCE    2
@@ -75,7 +87,6 @@ header SUPPORTMAIL5   from =~ /\bsupport\@/i
 describe SUPPORTMAIL5  Message from an address that looks like support@
 score SUPPORTMAIL5     1.5
 
-
 header FROMAUTOREPLY   from =~ /(autoreply|no-?repl(?:y|ies))/i
 describe FROMAUTOREPLY Message from an autoreplier or something who doesn't seem to want a reply
 score FROMAUTOREPLY    4
@@ -99,3 +110,19 @@ score        MESBLOCKED     2
 header FAILDELIVERY    subject =~ /failed to deliver/i
 describe FAILDELIVERY  Oh noes! You failed to deliver spam!
 score FAILDELIVERY     2
+
+header NEWADDRESS      subject =~ /new e-?mail address/i
+describe NEWADDRESS    We don't care that you have a new e-mail address
+score NEWADDRESS       2
+
+header VACATIONMAIL1   user-agent =~ /vacation/i
+describe VACATIONMAIL1 Mail from the vacation user agent
+score VACATIONMAIL1    0.1
+
+header VACATIONMAIL2   X-Vacation =~ /./
+describe VACATIONMAIL2 Has an X-Vacation header
+score VACATIONMAIL2    0.1
+
+meta  VACATIONMAIL     (VACATIONMAIL1 || VACATIONMAIL2)
+describe VACATIONMAIL  Looks like a vacation message
+score VACATIONMAIL     1
\ No newline at end of file