1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

do not validate records that are requested to be removed

This commit is contained in:
KiekerJan 2023-04-12 21:08:47 +02:00
parent 547a75c25d
commit 1c5eeac1d5

View File

@ -995,12 +995,12 @@ def set_custom_dns_record(qname, rtype, value, action, env):
break break
else: else:
# No match. # No match.
if qname != "_secondary_nameserver": if qname != "_secondary_nameserver" and action != "remove":
raise ValueError("%s is not a domain name or a subdomain of a domain name managed by this box." % qname) raise ValueError("%s is not a domain name or a subdomain of a domain name managed by this box." % qname)
# validate rtype # validate rtype
rtype = rtype.upper() rtype = rtype.upper()
if value is not None and qname != "_secondary_nameserver": if value is not None and qname != "_secondary_nameserver" and action != "remove":
if not re.search(DOMAIN_RE, qname): if not re.search(DOMAIN_RE, qname):
raise ValueError("Invalid name.") raise ValueError("Invalid name.")