1
0
forked from infra/ansible
infra/roles/mail/templates/rspamd/local.d/settings.conf.j2
Markus Hauschild 43a672b064 mail: fix rspamd settings
a config keyword has changed which which used to prevent locally sources
mails from being checked again
2022-04-25 21:48:03 +02:00

16 lines
266 B
Django/Jinja

localhost_mail {
id = "localhost_mail";
priority = high;
ip = "127.0.0.0/8";
ip = "::1/128";
apply {
actions {
# Disable any action for mail from localhost
reject = null;
greylist = null;
"add header" = null;
"rewrite subject" = null;
}
}
}