<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.6.4 (Ruby 3.0.2) -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-sahib-domain-verification-techniques-03" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.8.0 -->
  <front>
    <title abbrev="Domain Verification Techniques">Survey of Domain Verification Techniques using DNS</title>
    <seriesInfo name="Internet-Draft" value="draft-sahib-domain-verification-techniques-03"/>
    <author initials="S." surname="Sahib" fullname="Shivan Sahib">
      <organization>Brave Software</organization>
      <address>
        <email>shivankaulsahib@gmail.com</email>
      </address>
    </author>
    <author initials="S." surname="Huque" fullname="Shumon Huque">
      <organization>Salesforce</organization>
      <address>
        <email>shuque@gmail.com</email>
      </address>
    </author>
    <author initials="P." surname="Wouters" fullname="Paul Wouters">
      <organization>Aiven</organization>
      <address>
        <email>paul.wouters@aiven.io</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <area>General</area>
    <workgroup>Network Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>Many services on the Internet need to verify ownership or control of a domain in the Domain Name System (DNS) <xref target="RFC1034"/> <xref target="RFC1035"/>. This verification is often done by requesting a specific DNS record to be visible in the domain. This document surveys various techniques in wide use today, the pros and cons of each, and proposes some practises to avoid known problems.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/ShivanKaul/draft-sahib-domain-verification-techniques"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Many providers of internet services need domain owners to prove that they control a particular domain before they can operate a services or grant some privilege to the associated domain. For instance, certificate authorities like Let's Encrypt <xref target="LETSENCRYPT"/> ask requesters of TLS certificates to prove that they operate the domain they are requesting the certificate for. Providers generally allow for several different ways of proving domain control. This document describes and recommends common practises with using DNS based techniques for domain verification. Other techniques such as email or HTTP(S) based verification are out-of-scope.</t>
      <t>In practice, DNS-based verification takes the form of the provider generating a random value visible only to the requester, and then asking the requester to create a DNS record containing this random value and placing it at a location within the domain that the provider can query for. Generally only one temporary DNS record is sufficient for proving domain ownership, although sometimes the DNS record must be kept in the zone to prove continued ownership of the domain.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
      <t>Provider: an internet-based provider of a service, for e.g., Let's Encrypt provides a certificate authority service or GitHub provides code-hosting services. These services often require a user to verify that they control a domain.</t>
    </section>
    <section anchor="verification-techniques">
      <name>Verification Techniques</name>
      <section anchor="txt-based">
        <name>TXT based</name>
        <t>TXT record-based DNS domain verification is usually the default option for DNS verification. The service provider asks the user to add a DNS TXT record (perhaps through their domain host or DNS provider) at the domain with a certain value. Then, the service provider does a DNS TXT query for the domain being verified and checks that the value exists. For example, this is what a DNS TXT verification record could look like:</t>
        <artwork><![CDATA[
   example.com.   IN   TXT   "foo-verification=bar-237943648324687364"
]]></artwork>
        <t>Here, the value "bar-237943648324687364" for the attribute "foo-verification" serves as the randomly-generated TXT value being added to prove ownership of the domain to Foo provider. Although the original DNS protocol specifications did not associate any semantics with the DNS TXT record, <xref target="RFC1464"/> describes how to use them to store attributes in the form of ASCII text key-value pairs for a particular domain. In practice, there is wide variation in the content of DNS TXT records used for domain verification, and they often do not follow the key-value pair model. Even so, the rdata portion of the DNS TXT record has to contain the value being used to verify the domain. The value is usually a randomly-generated token in order to guarantee that the entity who requested that the domain be verified (i.e. the person managing the account at Foo provider) is the one who has (direct or delegated) access to DNS records for the domain. The generated token typically expires in a few days. The TXT record is placed at the domain being verified ("example.com" in the example above). After a TXT record has been added, the service provider will usually take some time to verify that the DNS TXT record with the expected token exists for the domain.</t>
        <t>The same domain name can have multiple distinct TXT records (a TXT Record Set), where each TXT record may be associated with a distinct service. Having many of these may cause operational issues, and it is RECOMMENDED that providers use a prefix (eg "_foo.example.com") instead of using the top of the domain ("APEX") directly, such as:</t>
        <artwork><![CDATA[
   _foo.example.com.  IN   TXT    "bar-237943648324687364"
]]></artwork>
        <section anchor="examples">
          <name>Examples</name>
          <section anchor="lets-encrypt">
            <name>Let's Encrypt</name>
            <t>Let's Encrypt <xref target="LETSENCRYPT"/> has a challenge type  <tt>DNS-01</tt> that lets a user prove domain ownership in accordance with the ACME protocol <xref target="RFC8555"/>. In this challenge, Let's Encrypt asks you to create a TXT record with a randomly-generated token at <tt>_acme-challenge.&lt;YOUR_DOMAIN&gt;</tt>. For example, if you wanted to prove domain ownership of <tt>example.com</tt>, Let's Encrypt could ask you to create the DNS record:</t>
            <artwork><![CDATA[
    _acme-challenge.example.com.  IN  TXT "cE3A8qQpEzAIYq-T9DWNdLJ1_YRXamdxcjGTbzrOH5L"
]]></artwork>
            <t><xref target="RFC8555"/> (section 8.4) places requirements on the random value.</t>
          </section>
          <section anchor="google-workspace">
            <name>Google Workspace</name>
            <t><xref target="GOOGLE-WORKSPACE-TXT"/> asks the user to sign in with their administrative account and obtain their verification token as part of the setup process for Google Workspace. The verification token is a 68-character string that begins with "google-site-verification=", followed by 43 characters. Google recommends a TTL of 3600 seconds. The owner name of the TXT record is the domain or subdomain neme being verified.</t>
          </section>
          <section anchor="github">
            <name>GitHub</name>
            <t>GitHub asks you to create a DNS TXT record under <tt>_github-challenge-ORGANIZATION-&lt;YOUR_DOMAIN&gt;</tt>, where ORGANIZATION stands for the GitHub organization name <xref target="GITHUB-TXT"/>. The code is a numeric code that expires in 7 days.</t>
          </section>
        </section>
      </section>
      <section anchor="cname-based">
        <name>CNAME based</name>
        <t>Less commonly than TXT record verification, service providers also provide the ability to verify domain ownership via CNAME records. One reason for using CNAME is for the case where the user cannot create TXT records. One common reason is that the domain name may already have CNAME record that aliases it to a 3rd-party target domain. CNAMEs have a technical restriction that no other record types can be placed along side them at the same domain name (<xref target="RFC1034"/>, Section 3.6.2).. The CNAME based domain verification method typically uses a randomized label prepended to the domain name being verified.</t>
        <section anchor="examples-1">
          <name>Examples</name>
          <section anchor="google">
            <name>Google</name>
            <t><xref target="GOOGLE-WORKSPACE-CNAME"/> lets you specify a CNAME record for verifying domain ownership. The user gets a unique 12-character string that is added as "Host", with TTL 3600 (or default) and Destination an 86-character string beginning with "gv-" and ending with ".domainverify.googlehosted.com.".</t>
            <t>To verify a subdomain, the unique 12-character string is appended with the subdomain name for "Host" field for e.g. JLKDER712AFP.subdomain where subdomain is the subdomain being verified.</t>
          </section>
          <section anchor="aws-certificate-manager-acm">
            <name>AWS Certificate Manager (ACM)</name>
            <t>To get issued a certificate by AWS Certificate Manager (ACM), you can create a CNAME record to verify domain ownership <xref target="ACM-CNAME"/>. The record name for the CNAME looks like:</t>
            <artwork><![CDATA[
 `\_<random-token1>.example.com.   IN   CNAME \_RANDOM-TOKEN.acm-validations.aws.`
]]></artwork>
            <t>Note that if there are more than 5 CNAMEs being chained, then this method does not work.</t>
          </section>
        </section>
      </section>
      <section anchor="common-patterns">
        <name>Common Patterns</name>
        <section anchor="name">
          <name>Name</name>
          <t>ACME and GitHub have a suffix of <tt>_PROVIDER_NAME-challenge</tt> in the Name field of the TXT record challenge. For ACME, the full Host is <tt>_acme-challenge.&lt;YOUR_DOMAIN&gt;</tt>, while for GitHub it is <tt>_github-challenge-ORGANIZATION-&lt;YOUR_DOMAIN&gt;</tt>. Both these patterns are useful for doing targeted domain verification, as discussed in section (#targeted-domain-verification) because if the provider knows what it is looking for (domain in the case of ACME, organization name + domain in case of GitHub) it can specifically do a DNS query for that TXT record, as opposed to having to do a TXT query for the apex.</t>
          <t>ACME does the same name construction for CNAME records.</t>
        </section>
        <section anchor="rdata">
          <name>RDATA</name>
          <t>One pattern that quite a few providers follow (Dropbox, Atlassian) is constructing the rdata of the TXT DNS record in the form of <tt>PROVIDER-SERVICE-domain-verification=</tt> followed by the random value being checked for. This is in accordance with <xref target="RFC1464"/> which mandates that attributes must be stored as key-value pairs.</t>
        </section>
      </section>
    </section>
    <section anchor="recommendations">
      <name>Recommendations</name>
      <section anchor="targeted-domain-verification">
        <name>Targeted Domain Verification</name>
        <t>The TXT record being used for domain verification is most commonly placed at the domain name being verified. For example, if <tt>example.com</tt> is being verified, then the DNS TXT record will have <tt>example.com</tt> in the Name section. Unfortunately, this practise does not scale very well.</t>
        <t>Many services are now attempting to verify domain names, causing many of these TXT records to be placed at that same location at the top of the domain (the APEX).</t>
        <t>When a DNS administrator sees 15 DNS TXT records for their domain based on only random letters, they can no longer determine for which service or vendor the DNS TXT records were added. This causes administrators to leave all DNS TXT records in there, as they want to avoid breaking a service. Over time, the domain ends up with a lot of no longer needed, unknown and untracable DNS TXT records.</t>
        <t>An operational issue arises from the DNS protocol only being able to query for "all TXT records" at a single location. If multiple services all require TXT records, this can cause the DNS answer for TXT records to become very large. It has been observed that some well known domains had so many services deployed that their DNS TXT answer did not fit in a single UDP DNS packet. This results in fragmentation which is known to be vulnerable to various attacks draft-ietf-dnsop-avoid-fragmentation-06. It can also lead to UDP packet truncation, causing a retry over TCP. Not all networks properly transport DNS over TCP and some DNS software mistakenly believe TCP support is optional draft-ietf-dnsop-dns-tcp-requirements-15.</t>
      </section>
      <section anchor="targeted-service-verification">
        <name>Targeted Service Verification</name>
        <t>One malicious service that promises to deliver something after domain verification could surreptitiously ask another service provider to start processing or sending mail for the target domain and then present the victim domain administrator with this DNS TXT record pretending to be for their service. Once the administrator has added the DNS TXT record, instead of getting their service, their domain is now certifying another service of which they are not aware they are now a consumer.</t>
        <t>If services use a clear description and name attribution in the required DNS TXT record, this can be avoided. For example by requiring a DNS TXT record at _vendorname.example.com instead of at example.com, a malicious service could no longer replay this without the DNS administrator noticing this. The LetsEncrypt ACME challenge uses this method.</t>
      </section>
      <section anchor="txt-vs-cname">
        <name>TXT vs CNAME</name>
        <t>The inherent problem of a CNAME is that it cannot co-exist with any other data. What happens when both a CNAME and other data such as a TXT record or NS record exist depends on the DNS implementation. But most likely, either the CNAME or the other records will be silently ignored. The user interface for adding a record might not check for this. It might also break in unexpected ways. If a CNAME is added for continuous authorization, and for another service a TXT record is added, the TXT record might work but the CNAME record might break. Operational experience has also shown a vendor that provides two difference services, one requiring a CNAME and one requiring a TXT record for authorization that needed to be deployed at the same location. If both services would have used a TXT record, this would not have caused any problems.</t>
        <t>Another issues with CNAME records is that they MUST NOT point to another CNAME. But where this might be true in an initial deployment, if the target that the CNAME points to is changed from a non-CNAME record to a CNAME record, some DNS software might no longer resolve this as expected.</t>
        <t>Early web based DNS administration tools did not always have the TXT record available in a pulldown menu for DNS record types, while CNAME would be available. However as many anti-spam meassures now require TXT records, this support is now generally available. It is recommended that the CNAME method is only used for delegating authorization to an actual subdomain, for example:</t>
        <artwork><![CDATA[
 recruitement.example.com.   IN   CNAME   example.recruitement-vendor.com.
]]></artwork>
      </section>
      <section anchor="time-bound-checking">
        <name>Time-bound checking</name>
        <t>After domain verification is done, there is no need for the TXT or CNAME record to continue to exist as the presence of the domain-verifying DNS record for a service only implies that a user with access to the service also has DNS control of the domain at the time the code was generated. It should be safe to remove the verifying DNS record once the verification is done and the service provider doing the verification should specify how long the verification will take (i.e. after how much time can the verifying DNS record be deleted).
However, despite this, some services ask the record to exist in perpetuity <xref target="ATLASSIAN-VERIFY"/>.</t>
        <t>If a provider will use the DNS TXT record only for a one-time verification, it is RECOMMENDED that they clearly indicate this in the RDATA of the TXT record, so a DNS administrator at the target domain can easilly spot an obsolete record in the future. For example:</t>
        <t>_provider-token.example.com.   IN   TXT "type=activation_only expiry=2023-10-12 token=TOKENDATA"</t>
        <t>If a provider requires the continued precense of the TXT record as proof that the domain owner is still authorizing the service, this should also be clear from the TXT record RDATA. For example:</t>
        <t>_provider-service.example.com.   IN   TXT "type=continued_service expiry=never token=TOKENDATA"</t>
      </section>
    </section>
    <section anchor="email-sending-authorization">
      <name>Email sending authorization</name>
      <t>Some vendors use a hosted service that wants to generate emails that appear to be from the customer. When a customer has deployed anti-spam meassures such as DKIM <xref target="RFC6376"/>, DMARC <xref target="RFC7489"/> or SPF <xref target="RFC7208"/>, the vendor's mail service needs to be added to the list of allowed mail servers. However, some customers might not want to give permission for a vendor to send emails from their entire domain. It is recommended that a vendor uses a subdomain. If the vendor's domain is example-vendor.com, and the customer domain is example-customer.com, the vendor could use the subdomain example-customer.example-vendor.com to send emails. Alternatively, the customer could delegate a subdomain example-vendor.example-customer.com to the vendoer for email sending, as those email addresses would have a stronger origin appearance of being emails send by the customer to their clients.</t>
      <t>Besides requiring proof of ownership of the domain, the customer needs to authorize the hosted service to send email on their behalf.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Both the provider and the service being authenticated and authorized should be obvious from the TXT content to prevent malicious services from misleading the domain owner into certifying a different provider or service.</t>
      <t>It is RECOMMENDED that DNSSEC <xref target="RFC4033"/> is employed by the domain owner. A service provider MUST enable DNSSEC validation when verifying doman name challanges to protect against domain name spoofing.</t>
    </section>
    <section anchor="operational-considerations">
      <name>Operational Considerations</name>
      <t>It is often consumers of the provider services that are not DNS experts that need to relay information from a provider's website to their local DNS administrators. The exact DNS record type, content and location is often not clear when the DNS administrator receives the information. It is RECOMMENDED that providers offer extremely detailed help pages, that are accessible without needing a login on the provider website, as the DNS adminstrator often has no login account on the provider service website. It is recommended that any instructions given by the provider contains the entire DNS record using a Fully Qualified Domain Name (FQDN).</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System.  It obsoletes RFC-882.  This memo describes the domain style names and their used for host address look up and electronic mail forwarding.  It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC1035">
          <front>
            <title>Domain names - implementation and specification</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised specification of the protocol and format used in the implementation of the Domain Name System.  It obsoletes RFC-883. This memo documents the details of the domain name client - server communication.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1035"/>
          <seriesInfo name="DOI" value="10.17487/RFC1035"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC1464">
          <front>
            <title>Using the Domain Name System To Store Arbitrary String Attributes</title>
            <author fullname="R. Rosenbaum" initials="R." surname="Rosenbaum">
              <organization/>
            </author>
            <date month="May" year="1993"/>
            <abstract>
              <t>This paper describes a simple means to associate arbitrary string information (ASCII text) with attributes that have not been defined by the DNS.  This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1464"/>
          <seriesInfo name="DOI" value="10.17487/RFC1464"/>
        </reference>
        <reference anchor="RFC4033">
          <front>
            <title>DNS Security Introduction and Requirements</title>
            <author fullname="R. Arends" initials="R." surname="Arends">
              <organization/>
            </author>
            <author fullname="R. Austein" initials="R." surname="Austein">
              <organization/>
            </author>
            <author fullname="M. Larson" initials="M." surname="Larson">
              <organization/>
            </author>
            <author fullname="D. Massey" initials="D." surname="Massey">
              <organization/>
            </author>
            <author fullname="S. Rose" initials="S." surname="Rose">
              <organization/>
            </author>
            <date month="March" year="2005"/>
            <abstract>
              <t>The Domain Name System Security Extensions (DNSSEC) add data origin authentication and data integrity to the Domain Name System.  This document introduces these extensions and describes their capabilities and limitations.  This document also discusses the services that the DNS security extensions do and do not provide.  Last, this document describes the interrelationships between the documents that collectively describe DNSSEC.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4033"/>
          <seriesInfo name="DOI" value="10.17487/RFC4033"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC8555">
          <front>
            <title>Automatic Certificate Management Environment (ACME)</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes">
              <organization/>
            </author>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews">
              <organization/>
            </author>
            <author fullname="D. McCarney" initials="D." surname="McCarney">
              <organization/>
            </author>
            <author fullname="J. Kasten" initials="J." surname="Kasten">
              <organization/>
            </author>
            <date month="March" year="2019"/>
            <abstract>
              <t>Public Key Infrastructure using X.509 (PKIX) certificates are used for a number of purposes, the most significant of which is the authentication of domain names.  Thus, certification authorities (CAs) in the Web PKI are trusted to verify that an applicant for a certificate legitimately represents the domain name(s) in the certificate.  As of this writing, this verification is done through a collection of ad hoc mechanisms.  This document describes a protocol that a CA and an applicant can use to automate the process of verification and certificate issuance.  The protocol also provides facilities for other certificate management functions, such as certificate revocation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8555"/>
          <seriesInfo name="DOI" value="10.17487/RFC8555"/>
        </reference>
        <reference anchor="RFC6376">
          <front>
            <title>DomainKeys Identified Mail (DKIM) Signatures</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." role="editor" surname="Hansen">
              <organization/>
            </author>
            <author fullname="M. Kucherawy" initials="M." role="editor" surname="Kucherawy">
              <organization/>
            </author>
            <date month="September" year="2011"/>
            <abstract>
              <t>DomainKeys Identified Mail (DKIM) permits a person, role, or organization that owns the signing domain to claim some responsibility for a message by associating the domain with the message.  This can be an author's organization, an operational relay, or one of their agents.  DKIM separates the question of the identity of the Signer of the message from the purported author of the message.  Assertion of responsibility is validated through a cryptographic signature and by querying the Signer's domain directly to retrieve the appropriate public key.  Message transit from author to recipient is through relays that typically make no substantive change to the message content and thus preserve the DKIM signature.</t>
              <t>This memo obsoletes RFC 4871 and RFC 5672.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="76"/>
          <seriesInfo name="RFC" value="6376"/>
          <seriesInfo name="DOI" value="10.17487/RFC6376"/>
        </reference>
        <reference anchor="RFC7208">
          <front>
            <title>Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1</title>
            <author fullname="S. Kitterman" initials="S." surname="Kitterman">
              <organization/>
            </author>
            <date month="April" year="2014"/>
            <abstract>
              <t>Email on the Internet can be forged in a number of ways.  In particular, existing protocols place no restriction on what a sending host can use as the "MAIL FROM" of a message or the domain given on the SMTP HELO/EHLO commands.  This document describes version 1 of the Sender Policy Framework (SPF) protocol, whereby ADministrative Management Domains (ADMDs) can explicitly authorize the hosts that are allowed to use their domain names, and a receiving host can check such authorization.</t>
              <t>This document obsoletes RFC 4408.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7208"/>
          <seriesInfo name="DOI" value="10.17487/RFC7208"/>
        </reference>
        <reference anchor="RFC7489">
          <front>
            <title>Domain-based Message Authentication, Reporting, and Conformance (DMARC)</title>
            <author fullname="M. Kucherawy" initials="M." role="editor" surname="Kucherawy">
              <organization/>
            </author>
            <author fullname="E. Zwicky" initials="E." role="editor" surname="Zwicky">
              <organization/>
            </author>
            <date month="March" year="2015"/>
            <abstract>
              <t>Domain-based Message Authentication, Reporting, and Conformance (DMARC) is a scalable mechanism by which a mail-originating organization can express domain-level policies and preferences for message validation, disposition, and reporting, that a mail-receiving organization can use to improve mail handling.</t>
              <t>Originators of Internet Mail need to be able to associate reliable and authenticated domain identifiers with messages, communicate policies about messages that use those identifiers, and report about mail using those identifiers.  These abilities have several benefits: Receivers can provide feedback to Domain Owners about the use of their domains; this feedback can provide valuable insight about the management of internal operations and the presence of external domain name abuse.</t>
              <t>DMARC does not produce or encourage elevated delivery privilege of authenticated email.  DMARC is a mechanism for policy distribution that enables increasingly strict handling of messages that fail authentication checks, ranging from no action, through altered delivery, up to message rejection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7489"/>
          <seriesInfo name="DOI" value="10.17487/RFC7489"/>
        </reference>
        <reference anchor="LETSENCRYPT" target="https://letsencrypt.org/docs/challenge-types/#dns-01-challenge">
          <front>
            <title>Challenge Types: DNS-01 challenge</title>
            <author initials="" surname="Let's Encrypt">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="GOOGLE-WORKSPACE-TXT" target="https://support.google.com/a/answer/2716802">
          <front>
            <title>TXT record values</title>
            <author initials="" surname="Google">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="GOOGLE-WORKSPACE-CNAME" target="https://support.google.com/a/answer/112038">
          <front>
            <title>CNAME record values</title>
            <author initials="" surname="Google">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ACM-CNAME" target="https://docs.aws.amazon.com/acm/latest/userguide/dns-validation.html">
          <front>
            <title>Option 1: DNS Validation</title>
            <author initials="" surname="AWS">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="GITHUB-TXT" target="https://docs.github.com/en/github/setting-up-and-managing-organizations-and-teams/verifying-your-organizations-domain">
          <front>
            <title>Verifying your organization's domain</title>
            <author initials="" surname="GitHub">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ATLASSIAN-VERIFY" target="https://support.atlassian.com/user-management/docs/verify-a-domain-to-manage-accounts/#Verifyadomainforyourorganization-VerifyoverDNS">
          <front>
            <title>Verify over DNS</title>
            <author initials="" surname="Atlassian">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
vTm76f0v2QftP9JFAAA=

-->

</rfc>
