minor fix. Use ':' instead of '=' for SPF mechanisms and modifiers.
This commit is contained in:
parent
be6359d984
commit
21394f7d81
@ -316,7 +316,7 @@ class DNSManager::Storage::Zone
|
|||||||
end
|
end
|
||||||
|
|
||||||
def to_bind9(io : IO)
|
def to_bind9(io : IO)
|
||||||
io << "#{t.to_s.downcase}=#{v}"
|
io << "#{t.to_s.downcase}:#{v}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -367,7 +367,7 @@ class DNSManager::Storage::Zone
|
|||||||
end
|
end
|
||||||
|
|
||||||
io << t.to_s.downcase
|
io << t.to_s.downcase
|
||||||
io << "=#{v}" if v != ""
|
io << ":#{v}" if v != ""
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user