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 /zones | |
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 'zones')
-rw-r--r-- | zones/vhack.eu/zone.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/zones/vhack.eu/zone.nix b/zones/vhack.eu/zone.nix index 78f2f13..5f65034 100644 --- a/zones/vhack.eu/zone.nix +++ b/zones/vhack.eu/zone.nix @@ -31,7 +31,7 @@ MX = [ { preference = 10; - exchange = "mail.foss-syndicate.org."; + exchange = "mail.vhack.org."; } ]; @@ -77,7 +77,7 @@ priority = 0; weight = 1; port = 993; - target = "mail.foss-syndicate.org"; + target = "mail.vhack.org"; } { service = "pop3s"; @@ -85,7 +85,7 @@ priority = 0; weight = 1; port = 995; - target = "mail.foss-syndicate.org"; + target = "mail.vhack.org"; } { service = "smtps"; @@ -93,7 +93,7 @@ priority = 0; weight = 1; port = 465; - target = "mail.foss-syndicate.org"; + target = "mail.vhack.org"; } ]; # }}} @@ -104,6 +104,8 @@ source.CNAME = ["server2.vhack.eu."]; + mail.CNAME = ["server2.vhack.eu."]; + dav.CNAME = ["server2.vhack.eu."]; etebase.CNAME = ["server2.vhack.eu."]; git.CNAME = ["server2.vhack.eu."]; |