postfix: don't cast message_size_limit to string

On unstable this will become a signed integer and there was never a good
reason for this to be a string.
This commit is contained in:
Martin Weinelt 2025-08-02 02:11:11 +02:00
parent ce87c8a977
commit 027e6bcd76
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -277,7 +277,7 @@ in
recipient_delimiter = cfg.recipientDelimiter;
smtpd_banner = "${cfg.fqdn} ESMTP NO UCE";
disable_vrfy_command = true;
message_size_limit = toString cfg.messageSizeLimit;
message_size_limit = cfg.messageSizeLimit;
# virtual mail system
virtual_uid_maps = "static:5000";