diff options
author | eneq123 <you@example.com> | 2014-05-07 15:43:43 +0400 |
---|---|---|
committer | eneq123 <you@example.com> | 2014-05-07 15:43:43 +0400 |
commit | 6ec0f7ee2a708df13863c938c1918a62c6f3ebb0 (patch) | |
tree | 2b9f4f6b683868babf2583b866009a04e995002b /conf/metrics.conf | |
parent | b864da214b9ca8da5c83e1e3ddf88227920ea5b5 (diff) | |
download | rspamd-6ec0f7ee2a708df13863c938c1918a62c6f3ebb0.tar.gz rspamd-6ec0f7ee2a708df13863c938c1918a62c6f3ebb0.zip |
DNSWL support (via RBL) added
Diffstat (limited to 'conf/metrics.conf')
-rw-r--r-- | conf/metrics.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/conf/metrics.conf b/conf/metrics.conf index 088d6aaca..520f05a74 100644 --- a/conf/metrics.conf +++ b/conf/metrics.conf @@ -322,6 +322,12 @@ metric { description = "One received header with 'bad' patterns inside"; name = "ONCE_RECEIVED_STRICT"; } + + symbol { name = "RCVD_IN_DNSWL"; weight = 0.0; description = "Sender listed at http://www.dnswl.org"; } + symbol { name = "RCVD_IN_DNSWL_LOW"; weight = -0.1; description = "Sender listed at http://www.dnswl.org, low trust"; } + symbol { name = "RCVD_IN_DNSWL_MED"; weight = -1.0; description = "Sender listed at http://www.dnswl.org, medium trust"; } + symbol { name = "RCVD_IN_DNSWL_HI"; weight = -5.0; description = "Sender listed at http://www.dnswl.org, high trust"; } + 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"; } |