2022-11-29 00:01:35 +08:00
|
|
|
package netlify
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/StackExchange/dnscontrol/v3/models"
|
|
|
|
"github.com/StackExchange/dnscontrol/v3/pkg/rejectif"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AuditRecords returns a list of errors corresponding to the records
|
|
|
|
// that aren't supported by this provider. If all records are
|
|
|
|
// supported, an empty list is returned.
|
|
|
|
func AuditRecords(records []*models.RecordConfig) []error {
|
|
|
|
a := rejectif.Auditor{}
|
|
|
|
|
2023-01-19 05:11:28 +08:00
|
|
|
a.Add("TXT", rejectif.TxtIsEmpty) // Last verified 2023-01-19
|
|
|
|
|
|
|
|
a.Add("MX", rejectif.MxNull) // Last verified 2023-01-19
|
2022-11-29 00:01:35 +08:00
|
|
|
|
|
|
|
return a.Audit(records)
|
|
|
|
}
|