about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-11 09:39:10 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-11 09:39:10 +0200
commitf1ff314b24ed0d26d1323cc9431d675e37298961 (patch)
tree30386e8b5ad85f49462eb0039542ee8da9ccc9ad
parentpkgs/stalwart-mail-patched/update.sh: Avoid building the output (diff)
downloadnixos-server-no-stalwart.zip
zones/vhack.eu: Remove Stalwart from the MX record no-stalwart
It is not (yet) correctly configured and as such refuses to deal with
some emails (e.g., send from apple). This effectively means that the
fallback is not tried, and the mail is never delivered.
-rw-r--r--zones/vhack.eu/zone.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/zones/vhack.eu/zone.nix b/zones/vhack.eu/zone.nix
index 668d6dc..070b58a 100644
--- a/zones/vhack.eu/zone.nix
+++ b/zones/vhack.eu/zone.nix
@@ -38,7 +38,7 @@ in {
     adminEmail = "dns-admin@foss-syndicate.org";
     # NOTE(@bpeetz): ALWAYS change the serial number, when you change something in the
     # zone file! <2025-04-01>
-    serial = mkSerial 2025 04 23 01;
+    serial = mkSerial 2025 06 11 01;
   };
   useOrigin = false;
 
@@ -65,12 +65,12 @@ in {
 
   # Mail section {{{
   MX = [
+    # {
+    #   preference = 10;
+    #   exchange = "mail.vhack.eu.";
+    # }
     {
       preference = 10;
-      exchange = "mail.vhack.eu.";
-    }
-    {
-      preference = 100;
       exchange = "mail.foss-syndicate.org.";
     }
   ];