<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.19 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-bonnell-caa-issuemail-01" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.3 -->
  <front>
    <title abbrev="CAA for Email Addresses">Certification Authority Authorization (CAA) Processing for Email Addresses</title>
    <seriesInfo name="Internet-Draft" value="draft-bonnell-caa-issuemail-01"/>
    <author fullname="Corey Bonnell">
      <organization>DigiCert, Inc.</organization>
      <address>
        <email>corey.bonnell@digicert.com</email>
      </address>
    </author>
    <date year="2023" month="January" day="25"/>
    <keyword>caa</keyword>
    <keyword>certification authority authorization</keyword>
    <keyword>email address</keyword>
    <abstract>
      <t>The Certification Authority Authorization (CAA) DNS resource record type
provides a mechanism for domains to express the allowed set of
Certification Authorities that may issue certificates for the domain.
The core CAA specification (<xref target="RFC8659"/>) solely defines Property Tags that
restrict the issuance of certificates that certify domain names; it does
not define a mechanism for domains to restrict the issuance of
certificates that include email addresses. This specification defines a
Property Tag that grants authorization to Certification Authorities to
issue certificates which certify email addresses.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://CBonnell.github.io/caa-issuemail/draft-bonnell-caa-issuemail.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-bonnell-caa-issuemail/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Limited Additional Mechanisms for PKIX and SMIME (lamps) Working Group mailing list (<eref target="mailto:spasm@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/spasm/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/spasm/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/CBonnell/caa-issuemail"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This document defines a CAA Property Tag which restricts the allowed set
of issuers for electronic email addresses. Its syntax and processing
are similar to the "issue" Property Tag as defined in section 4.2 of
<xref target="RFC8659"/>.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
    </section>
    <section anchor="syntax-of-the-issuemail-property-tag">
      <name>Syntax of the "issuemail" Property Tag</name>
      <t>This document defines the "issuemail" Property Tag. The presence of
one or more "issuemail" Properties in the Relevant Resource Record
Set (<xref target="RFC8659"/>) indicates that the domain is requesting that
Certification Authorities restrict the issuance of certificates that
certify email addresses.</t>
      <t>The CAA "issuemail" Property Value has the following sub-syntax
(specified in ABNF as per <xref target="RFC5234"/>):</t>
      <artwork><![CDATA[
  issuemail-value = *WSP [issuer-domain-name *WSP]
    [";" *WSP [parameters *WSP]]

  issuer-domain-name = label *("." label)
  label = (ALPHA / DIGIT) *( *("-") (ALPHA / DIGIT))

  parameters = (parameter *WSP ";" *WSP parameters) / parameter
  parameter = tag *WSP "=" *WSP value
  tag = (ALPHA / DIGIT) *( *("-") (ALPHA / DIGIT))
  value = *(%x21-3A / %x3C-7E)
]]></artwork>
      <t>Readers who are familiar with the sub-syntax of the "issue" and
"issuewild" Property Tags will recognize that this sub-syntax is
identical.</t>
    </section>
    <section anchor="processing-of-the-issuemail-property-tag">
      <name>Processing of the "issuemail" Property Tag</name>
      <t>Prior to issuing a certificate that certifies an email address, the
Certification Authority <bcp14>MUST</bcp14> check for publication of a Relevant
Resource Record Set (RRSet). The discovery of such a Relevant RRSet <bcp14>MUST</bcp14>
be performed using the algorithm specified in section 3 of <xref target="RFC8659"/>.
The input domain to the discovery algorithm <bcp14>SHALL</bcp14> be the domain "part"
(<xref target="RFC5322"/>) of the email address that is being certified. If the domain
"part" of the email address being certified is an Internationalized
Domain Name (<xref target="RFC5890"/>) that contains one or more U-Labels, then all
U-Labels <bcp14>MUST</bcp14> be converted to their A-Label representation (<xref target="RFC5891"/>)
for the purpose of discovering the Relevant RRSet for that email
address.</t>
      <t>If the Relevant RRSet is empty, or the Relevant RRSet does not contain
any "issuemail" Properties , then the domain has not requested any
restrictions on the issuance of certificates for email addresses. The
presence of other Property Tags, such as "issue" or "issuewild", does
not restrict the issuance of certificates which certify email addresses.</t>
      <t>For each "issuemail" Property in the Relevant RRSet, the
Certification Authority <bcp14>SHALL</bcp14> compare its issuer-domain-name with the
issuer-domain-name as expressed in the Property Value. If there is not
any "issuemail" record whose issuer-domain-name (as expressed in the
Property Value) matches the Certification Authority's
issuer-domain-name, then the Certification Authority <bcp14>MUST NOT</bcp14> issue
the certificate. If the Relevant RRSet contains any "issuemail"
Property whose issuemail-value does not conform to the ABNF syntax as
defined section 3 of this document, then those records <bcp14>SHALL</bcp14> be treated
as if the issuer-domain-name in the issuemail-value is the empty string.</t>
      <t>If the certificate certifies more than one email address, then the
Certification Authority <bcp14>MUST</bcp14> perform the above procedure for each
email address being certified.</t>
      <t>The assignment of issuer-domain-names to Certification Authorities is
beyond the scope of this document.</t>
      <t>The processing of parameters in the issuemail-value are beyond the scope
of this document.</t>
    </section>
    <section anchor="examples-of-the-issuemail-property-tag">
      <name>Examples of the "issuemail" Property Tag</name>
      <t>Several illustrative examples of Relevant RRSets and their expected
processing semantics follow. All examples assume that the
issuer-domain-name for the Certification Authority is "ca.example.com".</t>
      <t>The following RRSet does not contain any "issuemail" Properties,
so there are no restrictions on the issuance of certificates which
certify email addresses for that domain:</t>
      <artwork><![CDATA[
mail.example.com         CAA 0 issue "ca1.example.net"
mail.example.com         CAA 0 issue "ca2.example.org"
]]></artwork>
      <t>The following RRSet contains a single "issuemail" Property where the
issuer-domain-name is the empty string, so the issuance of certificates
certifying email addresses for the domain is prohibited:</t>
      <artwork><![CDATA[
mail.example.com         CAA 0 issuemail ";"
]]></artwork>
      <t>The following RRSet contains multiple "issuemail" Properties,
one of which matches the issuer-domain-name of the example Certification
Authority ("ca.example.com") and one Property which does not match.
Given that there is at least one record whose issuer-domain-name
matches the Certification Authority's issuer-domain-name, issuance is
permitted.</t>
      <artwork><![CDATA[
mail.example.com         CAA 0 issuemail ";"
mail.example.com         CAA 0 issuemail "ca.example.com"
]]></artwork>
      <t>The following RRSet contains a single "issuemail" Property whose
sub-syntax does not conform to the ABNF as specified in section 3. Given
that "issuemail" Properties with malformed syntax are treated the
same as "issuemail" Properties whose issuer-domain-name is the empty
string, issuance is prohibited.</t>
      <artwork><![CDATA[
malformed.example.com     CAA 0 issuemail "%%%%%"
]]></artwork>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations that are expressed in <xref target="RFC8659"/> are relevant
to this specification.</t>
      <t>CAA Properties may have the "critical" flag asserted, which specifies
that the Property is critical and must be processed by conforming
Certification Authorities. If a Certification Authority does not
understand the Property, then it must not issue the certificate in
question.</t>
      <t>If a single CAA RRSet is processed by multiple Certification Authorities
for the issuance of multiple certificate types, then a Certification
Authority's lack of support for a critical CAA Property in the RRSet
will prevent the Certification Authority from issuing any certificates
for that domain.</t>
      <t>For example, assume that an RRSet contains the following Properties:</t>
      <artwork><![CDATA[
example.com         CAA 128 issue "ca2.example.com"
example.com         CAA 0 issuemail "ca.example.com"
]]></artwork>
      <t>In this case, if the Certification Authority whose issuer-domain-name
matches "ca.example.com" does not recognize the "issue" Property Tag,
then that Certification Authority will not be able to issue S/MIME
certificates that certify email addresses for "example.com".</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>The author(s) request the registration of the following "Certification
Authority Restriction Properties":</t>
      <table>
        <thead>
          <tr>
            <th align="left">Tag</th>
            <th align="left">Meaning</th>
            <th align="left">Reference</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">issuemail</td>
            <td align="left">Authorization Entry by Email Address</td>
            <td align="left">[This document]</td>
          </tr>
        </tbody>
      </table>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC5322">
          <front>
            <title>Internet Message Format</title>
            <author fullname="P. Resnick" initials="P." role="editor" surname="Resnick">
              <organization/>
            </author>
            <date month="October" year="2008"/>
            <abstract>
              <t>This document specifies the Internet Message Format (IMF), a syntax for text messages that are sent between computer users, within the framework of "electronic mail" messages.  This specification is a revision of Request For Comments (RFC) 2822, which itself superseded Request For Comments (RFC) 822, "Standard for the Format of ARPA Internet Text Messages", updating it to reflect current practice and incorporating incremental changes that were specified in other RFCs.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5322"/>
          <seriesInfo name="DOI" value="10.17487/RFC5322"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC5891">
          <front>
            <title>Internationalized Domain Names in Applications (IDNA): Protocol</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is the revised protocol definition for Internationalized Domain Names (IDNs).  The rationale for changes, the relationship to the older specification, and important terminology are provided in other documents.  This document specifies the protocol mechanism, called Internationalized Domain Names in Applications (IDNA), for registering and looking up IDNs in a way that does not require changes to the DNS itself.  IDNA is only meant for processing domain names, not free text.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5891"/>
          <seriesInfo name="DOI" value="10.17487/RFC5891"/>
        </reference>
        <reference anchor="RFC8659">
          <front>
            <title>DNS Certification Authority Authorization (CAA) Resource Record</title>
            <author fullname="P. Hallam-Baker" initials="P." surname="Hallam-Baker">
              <organization/>
            </author>
            <author fullname="R. Stradling" initials="R." surname="Stradling">
              <organization/>
            </author>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews">
              <organization/>
            </author>
            <date month="November" year="2019"/>
            <abstract>
              <t>The Certification Authority Authorization (CAA) DNS Resource Record allows a DNS domain name holder to specify one or more Certification Authorities (CAs) authorized to issue certificates for that domain name. CAA Resource Records allow a public CA to implement additional controls to reduce the risk of unintended certificate mis-issue.  This document defines the syntax of the CAA record and rules for processing CAA records by CAs.</t>
              <t>This document obsoletes RFC 6844.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8659"/>
          <seriesInfo name="DOI" value="10.17487/RFC8659"/>
        </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="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="RFC5890">
          <front>
            <title>Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is one of a collection that, together, describe the protocol and usage context for a revision of Internationalized Domain Names for Applications (IDNA), superseding the earlier version.  It describes the document collection and provides definitions and other material that are common to the set.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5890"/>
          <seriesInfo name="DOI" value="10.17487/RFC5890"/>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
