diff options
author | Player701 <Player701@users.noreply.github.com> | 2022-08-19 19:47:46 +0300 |
---|---|---|
committer | Player701 <Player701@users.noreply.github.com> | 2022-08-19 19:47:46 +0300 |
commit | 73485446f789538c55449d742b560ab832fda9d5 (patch) | |
tree | 3c0b9488e24176c692a782cf5dab9fd632509296 /conf | |
parent | f8c8e994b960e6ccd910481c19f56d4ee887a049 (diff) | |
download | rspamd-73485446f789538c55449d742b560ab832fda9d5.tar.gz rspamd-73485446f789538c55449d742b560ab832fda9d5.zip |
[Fix] BAD_REP_POLICIES did not trigger when message was classified as spam by Bayes
Diffstat (limited to 'conf')
-rw-r--r-- | conf/composites.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/composites.conf b/conf/composites.conf index c750be39a..cd03d5fdd 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -124,7 +124,7 @@ composites { } BAD_REP_POLICIES { description = "Contains valid policies but are also marked by fuzzy/bayes/surbl/rbl"; - expression = "(~g-:policies) & (-g+:fuzzy | -g+:bayes | -g+:surbl | -g+:rbl)"; + expression = "(~g-:policies) & (-g+:fuzzy | -g+:statistics | -g+:surbl | -g+:rbl)"; score = 0.1; } |