Hack around sieve execution for multiple recipients.

This commit is contained in:
Gonne 2025-03-04 07:39:36 +01:00
parent 67d8132606
commit c24757321e
2 changed files with 9 additions and 1 deletions

View file

@ -43,7 +43,11 @@ in {
webHosts = [cfg.hostName];
serve.enable = true; #
# Don't include confirmation tokens in reply addresses, because we would need to send them to HRZ otherwise.
settings.mta.verp_confirmations = "no";
settings.mta = {
verp_confirmations = "no";
max_recipients = "1"; # We can only send to one recipient at a time due to how forwarding currently works. See also the mail module.
max_sessions_per_connection = "1";
};
};
};