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

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

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)
}