Commit 126ea94c authored by Joshua Tauberer's avatar Joshua Tauberer

drop support for ADSP which since last November is no longer recommended per...

drop support for ADSP which since last November is no longer recommended per http://datatracker.ietf.org/doc/status-change-adsp-rfc5617-to-historic/
parent 0f72f78e
...@@ -168,8 +168,7 @@ def build_zone(domain, zonefile, env, with_ns=True): ...@@ -168,8 +168,7 @@ def build_zone(domain, zonefile, env, with_ns=True):
m = re.match(r"(\S+)\s+IN\s+TXT\s+(\(.*\))\s*;", orf.read(), re.S) m = re.match(r"(\S+)\s+IN\s+TXT\s+(\(.*\))\s*;", orf.read(), re.S)
records.append((m.group(1), "TXT", m.group(2))) records.append((m.group(1), "TXT", m.group(2)))
# Append ADSP (RFC 5617) and DMARC records. # Append a DMARC record.
records.append(("_adsp._domainkey", "TXT", '"dkim=all"'))
records.append(("_dmarc", "TXT", '"v=DMARC1; p=quarantine"')) records.append(("_dmarc", "TXT", '"v=DMARC1; p=quarantine"'))
# Sort the records. The None records *must* go first. Otherwise it doesn't matter. # Sort the records. The None records *must* go first. Otherwise it doesn't matter.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment