github.com/pmoroney/dnscontrol@v0.2.4-0.20171024134423-fad98f73f44a/pkg/js/parse_tests/014-caa.js (about)

     1  D("foo.com","none",
     2      // Allow letsencrypt to issue certificate for this domain
     3      CAA("@","issue","letsencrypt.org"),
     4      // Allow no CA to issue wildcard certificate for this domain
     5      CAA("@","issuewild",";"),
     6      // Report all violation to test@example.com. If CA does not support
     7      // this record then refuse to issue any certificate
     8      CAA("@", "iodef", "mailto:test@example.com", CAA_CRITICAL),
     9      // Optionally report violation to http://example.com
    10      CAA("@", "iodef", "http://example.com"),
    11      // Report violation to https://example.com
    12      CAA("@", "iodef", "https://example.com", CAA_CRITICAL)
    13  );