diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-17 16:21:07 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-17 16:21:07 +0100 |
commit | 7fe418890c736c074cceec0483a5affb7eecf220 (patch) | |
tree | e164a122415ccd8ba8bd218a1bcfdd4a729ba6ac /conf | |
parent | 0aae79766622ea1ecfd1894cd2eeb85dcee6aeff (diff) | |
download | rspamd-7fe418890c736c074cceec0483a5affb7eecf220.tar.gz rspamd-7fe418890c736c074cceec0483a5affb7eecf220.zip |
[Conf] Add BROKEN_HEADERS_MAILLIST composite
Diffstat (limited to 'conf')
-rw-r--r-- | conf/composites.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/conf/composites.conf b/conf/composites.conf index 0f1561017..77332b27f 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -142,6 +142,13 @@ composites { score = 0.0; policy = "remove_weight"; } + BROKEN_HEADERS_MAILLIST { + description = "Negate BROKEN_HEADERS when message comes via some mailing list"; + expression = "BROKEN_HEADERS & -MAILLIST"; + score = 0.0; + policy = "remove_weight"; + } + .include(try=true; priority=1; duplicate=merge) "$LOCAL_CONFDIR/local.d/composites.conf" .include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/composites.conf" |