Benjamin Chalupka created FLEX-33192:
----------------------------------------
Summary: EMailValidator doesn't exclude hyphens at the beginning
and end of domain names
Key: FLEX-33192
URL: https://issues.apache.org/jira/browse/FLEX-33192
Project: Apache Flex
Issue Type: Bug
Components: Validators
Reporter: Benjamin Chalupka
Priority: Minor
E-Mail addresses like [email protected] or [email protected] aren't allowed and
often misspelled by users (for example with an e-mail of the german provider
t-online.de).
To fix it change the line 246 of the EMailValidator from:
if (domain.charAt(0) == ".")
to
if (domain.charAt(0) == "." || domain.charAt(0) == "-" ||
domain.charAt(domain.length - 1) == "-")
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira