diff options
author | Frederik Bosch <f.bosch@genkgo.nl> | 2022-10-12 11:53:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 11:53:44 +0200 |
commit | f03b4d1c7cd1e160305cb39914c36e54d3f434ce (patch) | |
tree | b842259f55ebc42518bf4738684693e64d549182 /conf | |
parent | 92c051189755705cff095e6cce7bc6a6e35a0353 (diff) | |
download | rspamd-f03b4d1c7cd1e160305cb39914c36e54d3f434ce.tar.gz rspamd-f03b4d1c7cd1e160305cb39914c36e54d3f434ce.zip |
Composites should not be recursive
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 543d7c46a..2952773e9 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -56,7 +56,7 @@ composites { description = "Authenticating message via SPF/DKIM/DMARC/ARC not available"; } AUTH_NA_OR_FAIL { - expression = "!AUTH_NA & (R_DKIM_NA | R_DKIM_TEMPFAIL | R_DKIM_PERMFAIL) & (R_SPF_NA | R_SPF_DNSFAIL) & DMARC_NA & (ARC_NA | ARC_DNSFAIL)"; + expression = "!(R_DKIM_NA & R_SPF_NA & DMARC_NA & ARC_NA) & (R_DKIM_NA | R_DKIM_TEMPFAIL | R_DKIM_PERMFAIL) & (R_SPF_NA | R_SPF_DNSFAIL) & DMARC_NA & (ARC_NA | ARC_DNSFAIL)"; score = 1.0; policy = "remove_weight"; description = "Authenticating message via SPF/DKIM/DMARC/ARC not available or failed"; |