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

TRANSIP: Added audit record for a maximum of 1024 TXT-record characters (#2725)

This commit is contained in:
Jeffrey Cafferata
2023-12-15 21:03:07 +01:00
committed by GitHub
parent e146fc5c07
commit c0dc049755

View File

@ -23,5 +23,7 @@ func AuditRecords(records []*models.RecordConfig) []error {
a.Add("TXT", rejectif.TxtIsEmpty) // Last verified 2023-12-10
a.Add("TXT", rejectif.TxtLongerThan(1024)) // Last verified 2023-12-15
return a.Audit(records)
}