Email validation

I believe there is a bug in validation logic for validation type “ValidEmail”. I get an error for domain names that end with a digit while those are in fact valid domain names. For example, and email "test@pac12.com" does not pass validation, but it is a valid email address. Please advise,

Vlad.

Hi

for validation was used free google validation ruleset or something like
I recommend you to use your own validation, like
{type: “input”, name: “email”, … validate: function(value){ return true/false }, …}