Add multi-domain to sending SMTP transport.

It's not important because we are sending via the proxies, but in case
we ever move to direct sending, Google insists on this.
This commit is contained in:
Jim Hague 2024-06-24 10:16:42 +01:00
parent 8d1523d232
commit 8daf3c4d06
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ remote_forwarded_smtp:
# modify the envelope from, for mails that we forward
max_rcpt = 1
return_path = ${srs_encode {SRS_SECRET} {$return_path} {$original_domain}}
multi_domain = false
.ifndef IGNORE_SMTP_LINE_LENGTH_LIMIT
message_size_limit = ${if > {$max_received_linelength}{998} {1}{0}}
.endif

View File

@ -6,7 +6,7 @@ remote_forwarded_smtp_smarthost:
# modify the envelope from, for mails that we forward
max_rcpt = 1
return_path = ${srs_encode {SRS_SECRET} {$return_path} {$original_domain}}
multi_domain
multi_domain = false
.ifndef IGNORE_SMTP_LINE_LENGTH_LIMIT
message_size_limit = ${if > {$max_received_linelength}{998} {1}{0}}
.endif