commit 9ba051d: [Rules] Fix symbol for DKIM temporary failure

Anton Yuzhaninov citrin+git at citrin.ru
Tue Feb 15 20:35:04 UTC 2022


Author: Anton Yuzhaninov
Date: 2022-02-15 14:33:08 +0000
URL: https://github.com/rspamd/rspamd/commit/9ba051d292151ee66efe9ee0e80bc2548c250653 (refs/pull/4077/head)

[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 {


More information about the Commits mailing list