LOOPIA: Ban Null MX (#2215)

Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
Paul Dee 2023-03-23 22:56:35 +01:00 committed by GitHub
parent b30e9769ae
commit edf1b9fd50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,8 @@ func AuditRecords(records []*models.RecordConfig) []error {
//Loopias TXT length limit appears to be 450 octets
a.Add("TXT", TxtHasSegmentLen450orLonger)
a.Add("MX", rejectif.MxNull) // Last verified 2023-03-23
return a.Audit(records)
}