mail: fix DKIM/ARC for mailman3

This commit is contained in:
Markus 2022-01-27 19:46:51 +01:00
parent 1541f5c7a8
commit 45cb1623cf
3 changed files with 6 additions and 0 deletions

View File

@ -57,6 +57,8 @@ admin_user: restadmin
admin_pass: {{ mailman3_restadminpass }}
[mta]
remove_dkim_headers: yes
dmarc_mitigate_action: wrap_message
incoming: mailman.mta.postfix.LMTP
outgoing: mailman.mta.deliver.deliver
smtp_host: localhost

View File

@ -3,5 +3,7 @@ sign_networks = [127.0.0.1, ::1, {{ mail_trusted | join(", ") }}];
check_pubkey = true;
try_fallback = false;
use_esld = false;
allow_hdrfrom_mismatch = true;
use_domain = "envelope";
path = "/var/lib/rspamd/dkim/$domain.$selector.key";
selector_map = "/etc/rspamd/local.d/arc_selectors.map";

View File

@ -3,5 +3,7 @@ sign_networks = [127.0.0.1, ::1, {{ mail_trusted | join(", ") }}];
check_pubkey = true;
try_fallback = false;
use_esld = false;
allow_hdrfrom_mismatch = true;
use_domain = "envelope";
path = "/var/lib/rspamd/dkim/$domain.$selector.key";
selector_map = "/etc/rspamd/local.d/dkim_selectors.map";