From f03b4d1c7cd1e160305cb39914c36e54d3f434ce Mon Sep 17 00:00:00 2001 From: Frederik Bosch Date: Wed, 12 Oct 2022 11:53:44 +0200 Subject: [PATCH] Composites should not be recursive --- conf/composites.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.39.5