diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-21 12:26:14 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-29 15:13:15 +0100 |
commit | 5c28c5d242c60c0fdceffa88a33c65d540e1c8b7 (patch) | |
tree | a65b4547f7cc73f08e947d209b929452a3e7b2f5 /modules/by-name | |
parent | tests/email-dns/secrets: Re-key secrets, so that soispha and sils can read them (diff) | |
download | nixos-server-5c28c5d242c60c0fdceffa88a33c65d540e1c8b7.zip |
hosts/server2: Setup stalwalt-mail on mail.vhack.eu for soispha@vhack.eu
We need to actually test stalwart out in the real world, because the test can never actually capture all the weird things people do with their mail setup. Refs: #6ea08aa
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/ma/mail/module.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/by-name/ma/mail/module.nix b/modules/by-name/ma/mail/module.nix index 55f2fb8..4df3b1d 100644 --- a/modules/by-name/ma/mail/module.nix +++ b/modules/by-name/ma/mail/module.nix @@ -5,9 +5,9 @@ }: let cfg = config.vhack.mail; all_admins = [ - "sils@vhack.eu" - "soispha@vhack.eu" - "nightingale@vhack.eu" + # "sils@vhack.eu" + # "soispha@vhack.eu" + # "nightingale@vhack.eu" ]; in { options.vhack.mail = { @@ -76,9 +76,9 @@ in { useFsLayout = true; extraVirtualAliases = { - "abuse@vhack.eu" = all_admins; - "postmaster@vhack.eu" = all_admins; - "admin@vhack.eu" = all_admins; + # "abuse@vhack.eu" = all_admins; + # "postmaster@vhack.eu" = all_admins; + # "admin@vhack.eu" = all_admins; }; mailDirectory = "/var/lib/mail/vmail"; @@ -100,7 +100,7 @@ in { certificateFile = "/var/lib/acme/${cfg.fqdn}/fullchain.pem"; domains = [ - "vhack.eu" + # "vhack.eu" "s-schoeffel.de" "b-peetz.de" @@ -114,9 +114,9 @@ in { "sils@vhack.eu" = { hashedPassword = "$2b$05$RW/Svgk7iGxvP5W7ZwUZ1e.a3fj4fteevb2MtfFYYD0d1DQ17y9Fm"; }; - "soispha@vhack.eu" = { - hashedPassword = "$2b$05$XX36sJuHNbTFvi8DFldscOeQBHahluSkiUqD9QGzQaET7NJusSuQW"; - }; + # "soispha@vhack.eu" = { + # hashedPassword = "$2b$05$XX36sJuHNbTFvi8DFldscOeQBHahluSkiUqD9QGzQaET7NJusSuQW"; + # }; "benedikt.peetz@b-peetz.de" = { hashedPassword = "$2b$05$MfET8utot2OolPZNASqoDe4VXNoG2chnEWhdfQ2E92mit0TvI2gBy"; |