I am unable to set my email address. There error message is "The form is not filled correctly."
Could it be because you are not allowing addresses with a "+" character in the user name?
I use this regexp:
^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$
for email address sanity checking.
Yeah, that won't allow valid addresses like george+jetson@gmail.com.
There's a good Stackoverflow question about validating e-mail with regex:
http://stackoverflow.com/questions/201323/using-a-regular-expression-to-validate-an-email-addressAnyway, no problem. I can work around it. Thanks.