mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2026-03-06 13:36:38 +08:00
FEATURE: Support RFC 9495 issuemail tag in CAA records (#3762)
This commit is contained in:
parent
8b73de0765
commit
f874b5fc1d
1 changed files with 1 additions and 1 deletions
|
|
@ -442,7 +442,7 @@ func ValidateAndNormalizeConfig(config *models.DNSConfig) (errs []error) {
|
|||
}
|
||||
rec.SetLabel(name, domain.Name)
|
||||
} else if rec.Type == "CAA" {
|
||||
if rec.CaaTag != "issue" && rec.CaaTag != "issuewild" && rec.CaaTag != "iodef" {
|
||||
if rec.CaaTag != "issue" && rec.CaaTag != "issuewild" && rec.CaaTag != "iodef" && rec.CaaTag != "issuemail" {
|
||||
errs = append(errs, fmt.Errorf("CAA tag %s is invalid", rec.CaaTag))
|
||||
}
|
||||
} else if rec.Type == "TLSA" {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue