From 4cfd068193fbf457b299f1cd90fedf39ef9d16f0 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Thu, 7 Mar 2024 03:20:16 +0100 Subject: [PATCH] SPF: modifiers require a "=" character, not ":". --- src/storage/zone.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/zone.cr b/src/storage/zone.cr index d3b2c6f..4990e90 100644 --- a/src/storage/zone.cr +++ b/src/storage/zone.cr @@ -316,7 +316,7 @@ class DNSManager::Storage::Zone end def to_bind9(io : IO) - io << "#{t.to_s.downcase}:#{v}" + io << "#{t.to_s.downcase}=#{v}" end end