OpenBD isValid email fails .education domain

60 Views Asked by At

I'm running OpenBD CFML isValid('email','[email protected]') and my result is 'NO'.

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

1

There are 1 best solutions below

0
On BEST ANSWER

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", "[email protected]") just fine. Viva la open source.