1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

DIGITALOCEAN: semicolon as CAA target is now supported (#1749)

This commit is contained in:
Brian Hartvigsen
2022-09-14 04:18:53 -07:00
committed by GitHub
parent e9f4200739
commit 49590df8bf
2 changed files with 1 additions and 3 deletions

View File

@@ -15,8 +15,6 @@ func AuditRecords(records []*models.RecordConfig) []error {
a.Add("CAA", rejectif.CaaTargetContainsWhitespace) // Last verified xxxx-xx-xx a.Add("CAA", rejectif.CaaTargetContainsWhitespace) // Last verified xxxx-xx-xx
a.Add("CAA", rejectif.CaaTargetHasSemicolon) // Last verified 2021-03-01
a.Add("MX", rejectif.MxNull) // Last verified 2020-12-28 a.Add("MX", rejectif.MxNull) // Last verified 2020-12-28
a.Add("TXT", MaxLengthDO) // Last verified 2021-03-01 a.Add("TXT", MaxLengthDO) // Last verified 2021-03-01

View File

@@ -72,7 +72,7 @@ retry:
var features = providers.DocumentationNotes{ var features = providers.DocumentationNotes{
providers.CanGetZones: providers.Can(), providers.CanGetZones: providers.Can(),
providers.CanUseCAA: providers.Can("Semicolons not supported in issue/issuewild fields.", "https://www.digitalocean.com/docs/networking/dns/how-to/create-caa-records"), providers.CanUseCAA: providers.Can(),
providers.CanUseSRV: providers.Can(), providers.CanUseSRV: providers.Can(),
providers.DocCreateDomains: providers.Can(), providers.DocCreateDomains: providers.Can(),
providers.DocOfficiallySupported: providers.Cannot(), providers.DocOfficiallySupported: providers.Cannot(),