Browse Source

Merge pull request #259 from mkuron/patch-1

Consistent symbol names for forwarding hosts
André Peters 8 years ago
parent
commit
6ebcac5bcb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      data/conf/rspamd/local.d/force_actions.conf

+ 2 - 2
data/conf/rspamd/local.d/force_actions.conf

@@ -11,12 +11,12 @@ rules {
   }
   WHITELIST_FORWARDING_HOST_NO_REJECT {
     action = "add header";
-    expression = "WHITELIST_FORWARDING_HOST";
+    expression = "WHITELISTED_FWD_HOST";
     require_action = ["soft reject", "reject"];
   }
   WHITELIST_FORWARDING_HOST_NO_GREYLIST {
     action = "no action";
-    expression = "WHITELIST_FORWARDING_HOST";
+    expression = "WHITELISTED_FWD_HOST";
     require_action = ["greylist"];
   }
 }