mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
autodns: Godaddy doesn't supports CAA records
This commit is contained in:
parent
c12f9b64ea
commit
499f06f5f6
1 changed files with 1 additions and 1 deletions
|
@ -857,7 +857,7 @@ def domain_dns_push(operation_logger, domain, dry_run=False, force=False, purge=
|
|||
if registrar == "godaddy":
|
||||
if record["name"] == base_dns_zone:
|
||||
record["name"] = "@." + record["name"]
|
||||
if record["type"] in ["MX", "SRV"]:
|
||||
if record["type"] in ["MX", "SRV", "CAA"]:
|
||||
logger.warning(f"Pushing {record['type']} records is not properly supported by Lexicon/Godaddy.")
|
||||
results["warnings"].append(f"Pushing {record['type']} records is not properly supported by Lexicon/Godaddy.")
|
||||
continue
|
||||
|
|
Loading…
Add table
Reference in a new issue