From 6b1f987f8294f7baa43cacdd5f56f83c8dbe6d4d Mon Sep 17 00:00:00 2001 From: Thomas Preisner Date: Fri, 12 Dec 2025 11:58:51 +0100 Subject: [PATCH] mailsystem: postfix: Update option names to comply with 25.11 --- mailsystem/postfix.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mailsystem/postfix.nix b/mailsystem/postfix.nix index 7e9e752..0f31417 100644 --- a/mailsystem/postfix.nix +++ b/mailsystem/postfix.nix @@ -60,9 +60,6 @@ in { services.postfix = { enable = true; - hostname = "${cfg.reverseFqdn}"; - networksStyle = "host"; - enableSubmissions = true; mapFiles."virtual_aliases" = aliases_file; @@ -83,6 +80,8 @@ in { }; settings.main = { + myhostname = "${cfg.reverseFqdn}"; + mynetworks_style = "host"; mydestination = ""; recipient_delimiter = "+"; smtpd_banner = "${cfg.fqdn} ESMTP NO UCE";