Starting in v1.2.0, email-validator is rejecting example.com addresses. While this is consistent with its documented behavior,
Other Special Use Domain Names are always considered invalid and raise EmailUndeliverableError.
it would seem to violate IETF RFC 6761 section 6.5 which says :
Application software SHOULD NOT recognize example names as special and SHOULD use example names as they would other domain names.
Sadly, when our CI pulled in the new release, our testing broke, because we use example.com in our test code.
Starting in v1.2.0,
email-validatoris rejectingexample.comaddresses. While this is consistent with its documented behavior,it would seem to violate IETF RFC 6761 section 6.5 which says :
Sadly, when our CI pulled in the new release, our testing broke, because we use
example.comin our test code.