Browse Source

Move mail to spam when DKIM fails, ignore when white/blacklist and honor other actions

andryyy 8 năm trước cách đây
mục cha
commit
95cbfe3661
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      data/conf/rspamd/local.d/force_actions.conf

+ 7 - 0
data/conf/rspamd/local.d/force_actions.conf

@@ -0,0 +1,7 @@
+rules {
+  DKIM_FAIL {
+    action = "add header";
+    expression = "R_DKIM_REJECT & !MAILLIST & !MAILCOW_WHITE & !MAILCOW_BLACK";
+    require_action = ["no action", "greylist"];
+  }
+}