From 0a4b80c8604a70e514f1580f6a4813ea5ea14c71 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 21 May 2025 09:33:42 +0200 Subject: [PATCH] refactor(mail): comment out rootAlias and update alias mapping --- systems/x86_64-linux/sgx/mail.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/x86_64-linux/sgx/mail.nix b/systems/x86_64-linux/sgx/mail.nix index 5b81cba..0a1446a 100644 --- a/systems/x86_64-linux/sgx/mail.nix +++ b/systems/x86_64-linux/sgx/mail.nix @@ -9,7 +9,7 @@ enable = true; relayHost = "smtp.gmail.com"; relayPort = 587; - rootAlias = "harald.hoyer@gmail.com"; + #rootAlias = "harald.hoyer@gmail.com"; extraAliases = "admin: root"; config = { smtp_use_tls = "yes"; @@ -18,7 +18,7 @@ smtp_sasl_password_maps = "texthash:${config.sops.secrets.sasl_passwd.path}"; # optional: Forward mails to root (e.g. from cron jobs, smartd) # to me privately and to my work email: - virtual_alias_maps = "inline:{ {root=you@gmail.com, you@work.com} }"; + virtual_alias_maps = "inline:{ {root=harald.hoyer@gmail.com} }"; }; };