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

19 lines
373 B
Go
Raw Normal View History

package rejectif
import (
"fmt"
"github.com/StackExchange/dnscontrol/v3/models"
)
// Keep these in alphabetical order.
// MxNull detects MX records that are a "null MX".
// This is needed by providers that don't support RFC 7505.
func MxNull(rc *models.RecordConfig) error {
if rc.GetTargetField() == "." {
return fmt.Errorf("mx has null target")
}
return nil
}