diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go index 89e223b8a..635d101da 100644 --- a/integrationTest/integration_test.go +++ b/integrationTest/integration_test.go @@ -652,7 +652,7 @@ func makeTests(t *testing.T) []*TestGroup { ), testgroup("Null MX", - not("AZURE_DNS", "GANDI_V5", "INWX", "NAMEDOTCOM", "DIGITALOCEAN", "NETCUP", "DNSIMPLE", "HEDNS", "VULTR"), // These providers don't support RFC 7505 + not("AZURE_DNS", "GANDI_V5", "INWX", "NAMEDOTCOM", "DIGITALOCEAN", "NETCUP", "DNSIMPLE", "HEDNS", "VULTR", "OVH"), // These providers don't support RFC 7505 tc("Null MX", mx("@", 0, ".")), ), diff --git a/providers/ovh/ovhProvider.go b/providers/ovh/ovhProvider.go index 3604fb5b1..1d7f6239c 100644 --- a/providers/ovh/ovhProvider.go +++ b/providers/ovh/ovhProvider.go @@ -28,6 +28,7 @@ var features = providers.DocumentationNotes{ providers.DocDualHost: providers.Can(), providers.DocOfficiallySupported: providers.Cannot(), providers.CanGetZones: providers.Can(), + providers.CanUseTXTMulti: providers.Can(), } func newOVH(m map[string]string, metadata json.RawMessage) (*ovhProvider, error) {