
wtogami at apache
Oct 16, 2009, 1:52 PM
Post #1 of 1
(148 views)
Permalink
|
|
svn commit: r826083 - /spamassassin/trunk/rulesrc/sandbox/wtogami/20_anubis.cf
|
|
Author: wtogami Date: Fri Oct 16 20:52:32 2009 New Revision: 826083 URL: http://svn.apache.org/viewvc?rev=826083&view=rev Log: Test Anubis Reputation DNS lists Added: spamassassin/trunk/rulesrc/sandbox/wtogami/20_anubis.cf Added: spamassassin/trunk/rulesrc/sandbox/wtogami/20_anubis.cf URL: http://svn.apache.org/viewvc/spamassassin/trunk/rulesrc/sandbox/wtogami/20_anubis.cf?rev=826083&view=auto ============================================================================== --- spamassassin/trunk/rulesrc/sandbox/wtogami/20_anubis.cf (added) +++ spamassassin/trunk/rulesrc/sandbox/wtogami/20_anubis.cf Fri Oct 16 20:52:32 2009 @@ -0,0 +1,38 @@ +# Testing for masscheck testing only + +## Bad +header __RCVD_IN_ANBREP eval:check_rbl('anubisrep-lastexternal', 'c.anubisnetworks.com.') +tflags __RCVD_IN_ANBREP net +## Good +header __RCVD_IN_ANBREP_F eval:check_rbl('anubisrep-firsttrusted', 'c.anubisnetworks.com.') +tflags __RCVD_IN_ANBREP_F net + +##### Reputation compensations +# Definitions +header RCVD_IN_ANBREP_Z eval:check_rbl_sub('anubisrep-lastexternal', '^127.0.0.2$') +describe RCVD_IN_ANBREP_Z Spam wave participant +tflags RCVD_IN_ANBREP_Z net nopublish +header RCVD_IN_ANBREP_L5 eval:check_rbl_sub('anubisrep-lastexternal', '^127.0.0.10$') +describe RCVD_IN_ANBREP_L5 Very bad reputation (-5) +tflags RCVD_IN_ANBREP_L5 net nopublish +header RCVD_IN_ANBREP_L4 eval:check_rbl_sub('anubisrep-lastexternal', '^127.0.0.11$') +describe RCVD_IN_ANBREP_L4 Bad reputation (-4) +tflags RCVD_IN_ANBREP_L4 net nopublish +header RCVD_IN_ANBREP_L3 eval:check_rbl_sub('anubisrep-lastexternal', '^127.0.0.12$') +describe RCVD_IN_ANBREP_L3 Low reputation (-3) +tflags RCVD_IN_ANBREP_L3 net nopublish +header RCVD_IN_ANBREP_L2 eval:check_rbl_sub('anubisrep-lastexternal', '^127.0.0.13$') +describe RCVD_IN_ANBREP_L2 Suspicious sender (-2) +tflags RCVD_IN_ANBREP_L2 net nopublish +header RCVD_IN_ANBREP_H2 eval:check_rbl_sub('anubisrep-firsttrusted', '^127.0.0.17$') +describe RCVD_IN_ANBREP_H2 Average reputation sender (2) +tflags RCVD_IN_ANBREP_H2 net nice nopublish +header RCVD_IN_ANBREP_H3 eval:check_rbl_sub('anubisrep-firsttrusted', '^127.0.0.18$') +describe RCVD_IN_ANBREP_H3 Good reputation sender (3) +tflags RCVD_IN_ANBREP_H3 net nice nopublish +header RCVD_IN_ANBREP_H4 eval:check_rbl_sub('anubisrep-firsttrusted', '^127.0.0.19$') +describe RCVD_IN_ANBREP_H4 High reputation sender (4) +tflags RCVD_IN_ANBREP_H4 net nice nopublish +header RCVD_IN_ANBREP_H5 eval:check_rbl_sub('anubisrep-firsttrusted', '^127.0.0.20$') +describe RCVD_IN_ANBREP_H5 Excelent reputation sender (5) +tflags RCVD_IN_ANBREP_H5 net nice nopublish
|