From f6d8450985402efb404e6b43410c66e674d405e1 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Mon, 3 Nov 2025 10:05:21 +0100 Subject: [PATCH] fix: remove mydestination postfix config It was causing mails to be delivered locally to `/var/mail` instead of to `/var/vmail` and being handled by dovecot. Signed-off-by: Lander Van den Bulcke --- hosts/servers/mail-01.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hosts/servers/mail-01.nix b/hosts/servers/mail-01.nix index 94ddbb6..96ae8ae 100644 --- a/hosts/servers/mail-01.nix +++ b/hosts/servers/mail-01.nix @@ -91,11 +91,6 @@ in inet_protocols = "ipv4"; smtp_bind_address = floatingIPv4; - mydestination = lib.mkForce [ - "localhost" - "escapeangle.com" - ]; - virtual_mailbox_domains = lib.mkForce (builtins.toFile "vhosts" "escapeangle.com"); };