From 9a9ca6d7bb5f1643411e3655905e6aace0b47a0d Mon Sep 17 00:00:00 2001 From: Marco Davids Date: Fri, 1 Aug 2025 16:06:34 +0200 Subject: [PATCH] Update README.md Small fix in Zone format example, to avoid parsing errors in muxmanager.go. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 293ceacb..86b1c51c 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ A record for users in Europe than anywhere else, use: "ns": [ "ns.example.net", "ns2.example.net" ], "txt": "Example zone", "spf": [ { "spf": "v=spf1 ~all", "weight": 1 } ], - "mx": { "mx": "mail.example.com", "preference": 10 } + "mx": [ { "mx": "mail.example.com", "preference": 10 } ] }, "mail": { "a": [ ["192.168.0.1", 100], ["192.168.10.1", 50] ] }, "mail.europe": { "a": [ ["192.168.255.1", 0] ] },