validationemailcfmlopenbd

OpenBD isValid email fails .education domain


I'm running OpenBD CFML isValid('email','something@whatever.education') and my result is 'NO'.

.education is a valid domain - why does this fail?


Solution

  • It turns out to be an issue with the regex used behind the scenes to match valid domains.

    The regex in place didn't account for domains as long as "education".

    I fixed it and it's been merged, should be in the nightly by now, grab the latest update and you should be able to use isValid("email", "AwesomeEmail@School.education") just fine. Viva la open source.