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

CHORE: Clarify TXT string limits (#2691)

This commit is contained in:
Tom Limoncelli
2023-12-06 16:23:18 -05:00
committed by GitHub
parent 0c70048253
commit 377193926c
5 changed files with 15 additions and 21 deletions

View File

@@ -21,10 +21,6 @@ func AuditRecords(records []*models.RecordConfig) []error {
a.Add("TXT", rejectif.TxtHasBackslash) // Last verified 2023-11-11
a.Add("TXT", rejectif.TxtHasDoubleQuotes) // Last verified 2021-03-01
// Double-quotes not permitted in TXT strings. I have a hunch that
// this is due to a broken parser on the DO side.
a.Add("TXT", rejectif.TxtIsEmpty) // Last verified 2023-11-11
return a.Audit(records)