From 1db0ae2dc8dac99cc7de4fdb7abf636ce57471fc Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Thu, 11 Jan 2024 23:24:09 +0100 Subject: [PATCH] TRANSIP: Audit records verified (#2794) --- providers/transip/auditrecords.go | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/providers/transip/auditrecords.go b/providers/transip/auditrecords.go index d90663b35..281058d85 100644 --- a/providers/transip/auditrecords.go +++ b/providers/transip/auditrecords.go @@ -11,19 +11,21 @@ import ( func AuditRecords(records []*models.RecordConfig) []error { a := rejectif.Auditor{} + a.Add("ALIAS", rejectif.LabelNotApex) // Last verified 2024-01-11 + a.Add("MX", rejectif.MxNull) // Last verified 2023-12-04 - a.Add("TXT", rejectif.TxtHasBackticks) // Last verified 2023-12-04 + a.Add("TXT", rejectif.TxtHasBackticks) // Last verified 2024-01-11 - a.Add("TXT", rejectif.TxtHasDoubleQuotes) // Last verified 2023-12-04 + a.Add("TXT", rejectif.TxtHasBackslash) // Last verified 2024-01-11 - a.Add("TXT", rejectif.TxtHasBackslash) // Last verified 2023-12-04 + a.Add("TXT", rejectif.TxtStartsOrEndsWithSpaces) // Last verified 2024-01-11 - a.Add("TXT", rejectif.TxtStartsOrEndsWithSpaces) // Last verified 2023-12-10 + a.Add("TXT", rejectif.TxtIsEmpty) // Last verified 2024-01-11 - a.Add("TXT", rejectif.TxtIsEmpty) // Last verified 2023-12-10 + a.Add("TXT", rejectif.TxtLongerThan(1024)) // Last verified 2024-01-11 - a.Add("TXT", rejectif.TxtLongerThan(1024)) // Last verified 2023-12-15 + a.Add("TXT", rejectif.TxtHasTrailingSpace) // Last verified 2024-01-11 return a.Audit(records) }