Merge pull request #2173 from mailcow/spf_contact

Do not apply SOGO_CONTACT for hard SPF failures
master
André Peters 2019-01-13 10:35:13 +01:00 committed by GitHub
commit 0999ae375d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,5 +14,5 @@ SOGO_CONTACT_EXCLUDE_FWD_HOST {
expression = "WHITELISTED_FWD_HOST & ~SOGO_CONTACT"; expression = "WHITELISTED_FWD_HOST & ~SOGO_CONTACT";
} }
SOGO_CONTACT_SPOOFED { SOGO_CONTACT_SPOOFED {
expression = "(R_SPF_PERMFAIL | R_SPF_SOFTFAIL) & ~SOGO_CONTACT"; expression = "(R_SPF_PERMFAIL | R_SPF_SOFTFAIL | R_SPF_FAIL) & ~SOGO_CONTACT";
} }