From b0656d1e555a83d359bc3b9315ddc12fe047c767 Mon Sep 17 00:00:00 2001 From: Utkarsh Sethi Date: Mon, 29 Apr 2024 02:18:42 +1000 Subject: [PATCH] #2128 adding `issuewild` --- src/dns.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dns.py b/src/dns.py index 458deae7e0..8dfc4f8fa0 100644 --- a/src/dns.py +++ b/src/dns.py @@ -139,6 +139,7 @@ def _build_dns_conf(base_domain, include_empty_AAAA_if_no_ipv6=False): # if ipv6 available {"type": "AAAA", "name": "*", "value": "valid-ipv6", "ttl": 3600}, {"type": "CAA", "name": "@", "value": "0 issue \"letsencrypt.org\"", "ttl": 3600}, + {"type": "CAA", "name": "@", "value": "0 issuewild \"letsencrypt.org\"", "ttl": 3600}, ], "example_of_a_custom_rule": [ {"type": "SRV", "name": "_matrix", "value": "domain.tld.", "ttl": 3600} @@ -249,6 +250,7 @@ def _build_dns_conf(base_domain, include_empty_AAAA_if_no_ipv6=False): extra.append([f"*{suffix}", ttl, "AAAA", None]) extra.append([basename, ttl, "CAA", '0 issue "letsencrypt.org"']) + extra.append([basename, ttl, "CAA", '0 issuewild "letsencrypt.org"']) #################### # Standard records #