From 9ba051d292151ee66efe9ee0e80bc2548c250653 Mon Sep 17 00:00:00 2001 From: Anton Yuzhaninov Date: Tue, 15 Feb 2022 14:33:08 +0000 Subject: [PATCH] [Rules] Fix symbol for DKIM temporary failure There is no R_DKIM_DNSFAIL symbol (in default config), but there is R_DKIM_TEMPFAIL. --- conf/composites.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/composites.conf b/conf/composites.conf index def043f1b..c750be39a 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -56,7 +56,7 @@ composites { description = "Authenticating message via SPF/DKIM/DMARC/ARC not possible"; } DKIM_MIXED { - expression = "-R_DKIM_ALLOW & (R_DKIM_DNSFAIL | R_DKIM_PERMFAIL | R_DKIM_REJECT)" + expression = "-R_DKIM_ALLOW & (R_DKIM_TEMPFAIL | R_DKIM_PERMFAIL | R_DKIM_REJECT)" policy = "remove_weight"; } MAIL_RU_MAILER_BASE64 { -- 2.39.5