diff options
author | moisseev <moiseev@mezonplus.ru> | 2024-07-29 10:32:46 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2024-07-29 10:32:46 +0300 |
commit | f7cf3a4d8dc425ba031b56b72c1e6b96ec9a83ef (patch) | |
tree | 71e2553d289202673a5fc80d8ad471a854fe143a /conf | |
parent | 138186685a20afe1618f881094f3fb9e76a8b43a (diff) | |
download | rspamd-f7cf3a4d8dc425ba031b56b72c1e6b96ec9a83ef.tar.gz rspamd-f7cf3a4d8dc425ba031b56b72c1e6b96ec9a83ef.zip |
Set SenderScore RPBL scores
Diffstat (limited to 'conf')
-rw-r--r-- | conf/scores.d/rbl_group.conf | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/conf/scores.d/rbl_group.conf b/conf/scores.d/rbl_group.conf index b22239d21..e1ff8eace 100644 --- a/conf/scores.d/rbl_group.conf +++ b/conf/scores.d/rbl_group.conf @@ -172,32 +172,32 @@ symbols = { groups = ["senderscore"]; } "RBL_SENDERSCORE_NA" { - weight = 1.5; + weight = 0.0; description = "From address is listed in SenderScore RPBL - noauth"; groups = ["senderscore"]; } "RBL_SENDERSCORE_NA_BOT" { - weight = 2.5; + weight = 1.0; description = "From address is listed in SenderScore RPBL - noauth+botnet"; groups = ["senderscore"]; } "RBL_SENDERSCORE_PRST" { - weight = 1.0; + weight = 2.0; description = "From address is listed in SenderScore RPBL - pristine"; groups = ["senderscore"]; } "RBL_SENDERSCORE_PRST_BOT" { - weight = 2.0; + weight = 3.0; description = "From address is listed in SenderScore RPBL - pristine+botnet"; groups = ["senderscore"]; } "RBL_SENDERSCORE_PRST_NA" { - weight = 1.5; + weight = 2.0; description = "From address is listed in SenderScore RPBL - pristine+noauth"; groups = ["senderscore"]; } "RBL_SENDERSCORE_PRST_NA_BOT" { - weight = 2.5; + weight = 3.0; description = "From address is listed in SenderScore RPBL - pristine+noauth+botnet"; groups = ["senderscore"]; } @@ -207,47 +207,47 @@ symbols = { groups = ["senderscore"]; } "RBL_SENDERSCORE_SUS_ATT_NA" { - weight = 1.5; + weight = 1.0; description = "From address is listed in SenderScore RPBL - suspect_attachments+noauth"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SUS_ATT_NA_BOT" { - weight = 2.0; + weight = 1.5; description = "From address is listed in SenderScore RPBL - suspect_attachments+noauth+botnet"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SUS_ATT_PRST_NA" { - weight = 1.5; + weight = 3.0; description = "From address is listed in SenderScore RPBL - suspect_attachments+pristine+noauth"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SUS_ATT_PRST_NA_BOT" { - weight = 2.0; + weight = 3.5; description = "From address is listed in SenderScore RPBL - suspect_attachments+pristine+noauth+botnet"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SCORE" { - weight = 1.0; + weight = 2.0; description = "From address is listed in SenderScore RPBL - sender_score"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SCORE_NA" { - weight = 1.5; + weight = 2.0; description = "From address is listed in SenderScore RPBL - sender_score+noauth"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SCORE_PRST" { - weight = 1.0; + weight = 4.0; description = "From address is listed in SenderScore RPBL - sender_score+pristine"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SCORE_PRST_NA" { - weight = 1.5; + weight = 4.0; description = "From address is listed in SenderScore RPBL - sender_score+pristine+noauth"; groups = ["senderscore"]; } "RBL_SENDERSCORE_SCORE_SUS_ATT_NA" { - weight = 1.5; + weight = 3.0; description = "From address is listed in SenderScore RPBL - sender_score+suspect_attachments+noauth"; groups = ["senderscore"]; } |