[ https://issues.apache.org/jira/browse/FLEX-33192?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13449543#comment-13449543 ]
OmPrakash Muppirala commented on FLEX-33192: -------------------------------------------- Benjamin, Thanks for filing the bug and suggesting a fix. If you can provide the fix as a patch along with a few unit tests, that would be great. Thanks, Om > 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 > Labels: EMailValidator, patch > Original Estimate: 10m > Remaining Estimate: 10m > > E-Mail addresses like t...@-online.de or t...@online-.net 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(periodPos - 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