You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Alex Harui (JIRA)" <ji...@apache.org> on 2012/11/05 20:04:12 UTC

[jira] [Updated] (FLEX-33192) EMailValidator doesn't exclude hyphens at the beginning and end of domain names

     [ https://issues.apache.org/jira/browse/FLEX-33192?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alex Harui updated FLEX-33192:
------------------------------

    Labels: EMailValidator EasyFix patch  (was: EMailValidator patch)
    
> 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, EasyFix, patch
>   Original Estimate: 10m
>  Remaining Estimate: 10m
>
> E-Mail addresses like test@-online.de or test@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