1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-15 19:06:03 +00:00

Do not apply SOGO_CONTACT for hard SPF failures

Fixes #1983 more completely
This commit is contained in:
Michael Kuron
2019-01-13 10:28:21 +01:00
committed by GitHub
parent 500f643169
commit 2b0065d5ab

View File

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