From 9475cc24b505c0c4016f2b5137ce855fde8fbb38 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sat, 5 Jun 2021 10:57:09 +0100 Subject: [PATCH] Add SPF records for messages and noreply subdomains --- src/openstreetmap.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/openstreetmap.js b/src/openstreetmap.js index 3508887..93c0dd7 100644 --- a/src/openstreetmap.js +++ b/src/openstreetmap.js @@ -39,6 +39,30 @@ D(DOMAIN, REGISTRAR, DnsProvider(PROVIDER), ] }), + SPF_BUILDER({ + label: "messages", + ttl: "1h", + parts: [ + "v=spf1", + "ip4:212.110.172.32", // shenron ipv4 + "ip6:2001:41c9:1:400::32", // shenron ipv6 + "mx", // safety net if we change mx + "-all" + ] + }), + + SPF_BUILDER({ + label: "noreply", + ttl: "1h", + parts: [ + "v=spf1", + "ip4:212.110.172.32", // shenron ipv4 + "ip6:2001:41c9:1:400::32", // shenron ipv6 + "mx", // safety net if we change mx + "-all" + ] + }), + SPF_BUILDER({ label: "otrs", ttl: "1h", -- 2.39.5