diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-10-10 20:42:02 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-10-10 20:42:02 +0100 |
commit | fe4a447263c6a990a3d044ecc99def866babe35c (patch) | |
tree | c8c23eaf142381184d016c7267d65744e86d6672 | |
parent | de0bfb9948f07d3e44eebe61c25deaea5761fcc2 (diff) | |
parent | ceac1763f3856ffaf1b754ca2c2d7fdfba7a5532 (diff) | |
download | rspamd-fe4a447263c6a990a3d044ecc99def866babe35c.tar.gz rspamd-fe4a447263c6a990a3d044ecc99def866babe35c.zip |
Merge pull request #108 from citrin/master
Config: SURBL update
-rw-r--r-- | conf/metrics.conf | 14 | ||||
-rw-r--r-- | conf/modules.conf | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/conf/metrics.conf b/conf/metrics.conf index 8e90c97e0..5249b0274 100644 --- a/conf/metrics.conf +++ b/conf/metrics.conf @@ -575,32 +575,32 @@ metric { } symbol { weight = 5.500000; - description = "Phishing and malware sites"; + description = "SURBL: Phishing sites"; name = "PH_SURBL_MULTI"; } symbol { weight = 5.500000; - description = "Outblaze URI Blacklist"; - name = "OB_SURBL_MULTI"; + description = "SURBL: Malware sites"; + name = "MW_SURBL_MULTI"; } symbol { weight = 5.500000; - description = "AbuseButler web sites"; + description = "SURBL: AbuseButler web sites"; name = "AB_SURBL_MULTI"; } symbol { weight = 5.500000; - description = "SpamCop web sites"; + description = "SURBL: SpamCop web sites"; name = "SC_SURBL_MULTI"; } symbol { weight = 5.500000; - description = "jwSpamSpy + Prolocation sites"; + description = "SURBL: jwSpamSpy + Prolocation sites"; name = "JP_SURBL_MULTI"; } symbol { weight = 5.500000; - description = "sa-blacklist web sites "; + description = "SURBL: sa-blacklist web sites "; name = "WS_SURBL_MULTI"; } symbol { diff --git a/conf/modules.conf b/conf/modules.conf index 9d33430e2..3c1b264d1 100644 --- a/conf/modules.conf +++ b/conf/modules.conf @@ -34,14 +34,14 @@ maillist { surbl { whitelist = "file://$CONFDIR/surbl-whitelist.inc"; exceptions = "file://$CONFDIR/2tld.inc"; - + rule { suffix = "multi.surbl.org"; symbol = "SURBL_MULTI"; bits { JP_SURBL_MULTI = 64; AB_SURBL_MULTI = 32; - OB_SURBL_MULTI = 16; + MW_SURBL_MULTI = 16; PH_SURBL_MULTI = 8; WS_SURBL_MULTI = 4; SC_SURBL_MULTI = 2; |