From 8da6117bb92aac66f0ab422ead887e9314d079c4 Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Thu, 20 Oct 2022 10:35:43 +0200 Subject: [PATCH] clarify --- core/rspamd/conf/force_actions.conf | 6 +++--- core/rspamd/conf/whitelist.conf | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/rspamd/conf/force_actions.conf b/core/rspamd/conf/force_actions.conf index 0d1d1a2b..54e893a9 100644 --- a/core/rspamd/conf/force_actions.conf +++ b/core/rspamd/conf/force_actions.conf @@ -2,16 +2,16 @@ rules { ANTISPOOF_NOAUTH { action = "reject"; expression = "(IS_LOCAL_DOMAIN_E & MISSING_FROM) | (IS_LOCAL_DOMAIN_H & (R_DKIM_NA & R_SPF_NA & DMARC_NA & ARC_NA))"; - message = "Rejected (anti-spoofing noauth)"; + message = "Rejected (anti-spoofing: noauth). Please setup DMARC with DKIM or SPF if you want to send emails from your domain from other servers."; } ANTISPOOF_DMARC_ENFORCE_LOCAL { action = "reject"; expression = "((IS_LOCAL_DOMAIN_H | IS_LOCAL_DOMAIN_E) & (DMARC_POLICY_SOFTFAIL | DMARC_POLICY_REJECT | DMARC_POLICY_QUARANTINE)"; - message = "Rejected (anti-spoofing DMARC-enforce for local domains)"; + message = "Rejected (anti-spoofing: DMARC is enforced for local domains)"; } ANTISPOOF_AUTH_FAILED { action = "reject"; expression = "BLACKLIST_ANTISPOOF"; - message = "Rejected (anti-spoofing auth-failed)"; + message = "Rejected (anti-spoofing: auth-failed)"; } } diff --git a/core/rspamd/conf/whitelist.conf b/core/rspamd/conf/whitelist.conf index 208ca203..56f8a83d 100644 --- a/core/rspamd/conf/whitelist.conf +++ b/core/rspamd/conf/whitelist.conf @@ -3,6 +3,6 @@ rules { valid_dmarc = true; blacklist = true; domains = "http://{{ ADMIN_ADDRESS }}/internal/rspamd/local_domains"; - score = 99.0; + score = 0.0; } }