diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-12-24 17:07:12 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-12-24 17:07:12 +0000 |
commit | 4b0f1587bb149bc7a1f4114a9ec5d5e4f301aaa9 (patch) | |
tree | b21d187db1dbce007053db4a4c458656a69ee930 /conf/metrics.conf | |
parent | 9131d16dfffbdf234e3c3aabccd6bdd8cbeea3c5 (diff) | |
download | rspamd-4b0f1587bb149bc7a1f4114a9ec5d5e4f301aaa9.tar.gz rspamd-4b0f1587bb149bc7a1f4114a9ec5d5e4f301aaa9.zip |
Improve spamhaus RBL support.
Submitted by: AL
Diffstat (limited to 'conf/metrics.conf')
-rw-r--r-- | conf/metrics.conf | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/conf/metrics.conf b/conf/metrics.conf index 498defa40..4db1e45a3 100644 --- a/conf/metrics.conf +++ b/conf/metrics.conf @@ -322,21 +322,12 @@ metric { description = "One received header with 'bad' patterns inside"; name = "ONCE_RECEIVED_STRICT"; } - symbol { - weight = 2.0; - description = "From address is listed in zen spamhaus BL"; - name = "RBL_ZEN"; - } - symbol { - weight = 3.0; - description = "Received headers contains addresses from XBL spamhaus RBL"; - name = "RBL_XBL"; - } - symbol { - weight = 2.0; - description = "Received headers contains addresses from PBL spamhaus RBL"; - name = "RBL_PBL"; - } + symbol { name = "RBL_SPAMHAUS"; weight = 0.0; description = "From address is listed in zen"; } + symbol { name = "RBL_SPAMHAUS_SBL"; weight = 2.0; description = "From address is listed in zen sbl"; } + symbol { name = "RBL_SPAMHAUS_CSS"; weight = 2.0; description = "From address is listed in zen css"; } + symbol { name = "RBL_SPAMHAUS_XBL"; weight = 4.0; description = "From address is listed in zen xbl"; } + symbol { name = "RBL_SPAMHAUS_PBL"; weight = 2.0; description = "From address is listed in zen pbl"; } + symbol { name = "RECEIVED_SPAMHAUS_XBL"; weight = 3.0; description = "Received address is listed in zen pbl"; } symbol { weight = 2.0; description = "From address is listed in senderscore.com BL"; |