From 3d9c161be193b8d026bda8b1f938c2584ce3e7cf Mon Sep 17 00:00:00 2001 From: Michael Kuron Date: Sat, 9 Sep 2017 10:30:26 +0200 Subject: [PATCH] Forwarding hosts: treat soft reject like greylist --- data/conf/rspamd/local.d/force_actions.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/conf/rspamd/local.d/force_actions.conf b/data/conf/rspamd/local.d/force_actions.conf index 2541f949..3373ce15 100644 --- a/data/conf/rspamd/local.d/force_actions.conf +++ b/data/conf/rspamd/local.d/force_actions.conf @@ -12,11 +12,11 @@ rules { WHITELIST_FORWARDING_HOST_NO_REJECT { action = "add header"; expression = "WHITELISTED_FWD_HOST"; - require_action = ["soft reject", "reject"]; + require_action = ["reject"]; } WHITELIST_FORWARDING_HOST_NO_GREYLIST { action = "no action"; expression = "WHITELISTED_FWD_HOST"; - require_action = ["greylist"]; + require_action = ["greylist", "soft reject"]; } }