diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-12-23 12:23:11 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-12-23 12:23:11 +0000 |
commit | c0902fb95276d35933174f15147ce461711f43c9 (patch) | |
tree | 4a1cdebfc9570e92fbd1ef4c7043b58ef87b455f | |
parent | 09ef28777e8df0ca3866d4c4576b76ecba88af4f (diff) | |
download | rspamd-c0902fb95276d35933174f15147ce461711f43c9.tar.gz rspamd-c0902fb95276d35933174f15147ce461711f43c9.zip |
Fix symbol names.
-rw-r--r-- | conf/metrics.conf | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/conf/metrics.conf b/conf/metrics.conf index bd499218e..ff4aa69d0 100644 --- a/conf/metrics.conf +++ b/conf/metrics.conf @@ -323,24 +323,34 @@ metric { name = "ONCE_RECEIVED_STRICT"; } symbol { - weight = 1.0; - description = "Received headers contains addresses from zen spamhaus RBL"; + weight = 2.0; + description = "From address is listed in zen spamhaus BL"; name = "RBL_ZEN"; } symbol { - weight = 1.0; - description = "Received headers contains addresses from senderscore.com RBL"; + 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 { + weight = 2.0; + description = "From address is listed in senderscore.com BL"; name = "RBL_SENDERSCORE"; } symbol { - weight = 1.0; - description = "Received headers contains addresses from mailspike.com RBL"; + weight = 2.0; + description = "From address is listed in mailspike.com BL"; name = "RBL_MAILSPIKE"; } symbol { weight = 1.0; name = "RBL_SORBS"; - description = "Received headers contains addresses from RBL"; + description = "From address is listed in SORBS RBL"; } symbol { weight = 2.5; |