Reduce Rspamd DNSBL false positives (#3311)

* rspamd: ignore Spamhaus XBL for Received headers

* rspamd: ignore SORBS RBL for forwarding hosts

* rspamd: ignore RBLs for forwarding hosts
This commit is contained in:
Michael Kuron
2020-02-04 12:35:52 +01:00
committed by GitHub
parent 60fb5498ff
commit 3cdbe7b73c
2 changed files with 7 additions and 0 deletions

View File

@@ -34,3 +34,6 @@ FORGED_W_BAD_POLICY {
expression = "( ~g+:policies | ~R_SPF_NA) & ( ~FROM_NEQ_ENVFROM & ~FORGED_SENDER )"
score = 3.0;
}
RBL_EXCLUDE_FWD_HOST {
expression = "-WHITELISTED_FWD_HOST & ^g:rbl"
}