1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-03-05 14:55:20 +02:00

Quote SMTP SIZE to avoid splitting keyword and parameter in EHLO response

This commit is contained in:
Blaž Zupan 2022-10-21 16:42:33 -07:00
parent bbbed4d9ac
commit 56617bbe12
2 changed files with 2 additions and 1 deletions

View File

@ -288,7 +288,7 @@ mail {
{% endif %}
# Advertise real capabilities of backends (postfix/dovecot)
smtp_capabilities PIPELINING SIZE {{ MESSAGE_SIZE_LIMIT }} ETRN ENHANCEDSTATUSCODES 8BITMIME DSN;
smtp_capabilities PIPELINING "SIZE {{ MESSAGE_SIZE_LIMIT }}" ETRN ENHANCEDSTATUSCODES 8BITMIME DSN;
pop3_capabilities TOP UIDL RESP-CODES PIPELINING AUTH-RESP-CODE USER;
imap_capabilities IMAP4 IMAP4rev1 UIDPLUS SASL-IR LOGIN-REFERRALS ID ENABLE IDLE LITERAL+;

View File

@ -0,0 +1 @@
Quote SMTP SIZE to avoid splitting keyword and parameter in EHLO response