1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00

Ensure we REJECT when we don't have a DMARC policy

This restores the old behaviour
This commit is contained in:
Florent Daigniere 2022-10-19 17:53:32 +02:00
parent 0204c9e59d
commit f7b3aad831
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,7 @@
rules {
WHITELIST_EXCEPTION {
action = "reject";
expression = "(AUTH_NA|BLACKLIST_ANTISPOOF) & IS_LOCAL_DOMAIN";
message = "Rejected (anti-spoofing)";
}
}

View File

@ -0,0 +1,5 @@
IS_LOCAL_DOMAIN {
type = "from";
filter = "email:domain";
map = "http://{{ ADMIN_ADDRESS }}/internal/rspamd/local_domains";
}