You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Ray Nicholus (JIRA)" <ji...@apache.org> on 2012/05/21 16:20:41 UTC

[jira] [Created] (TAP5-1933) Tapestry 5 email validator rules are not correct

Ray Nicholus created TAP5-1933:
----------------------------------

             Summary: Tapestry 5 email validator rules are not correct
                 Key: TAP5-1933
                 URL: https://issues.apache.org/jira/browse/TAP5-1933
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.3.3
            Reporter: Ray Nicholus
            Priority: Minor




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (TAP5-1933) Email validation should use a different regular expression

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-1933:
---------------------------------------

    Labels: fixed-in-5.4-js-rewrite validation  (was: validation)
    
> Email validation should use a different regular expression
> ----------------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: fixed-in-5.4-js-rewrite, validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
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

[jira] [Comment Edited] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13281196#comment-13281196 ] 

Ray Nicholus edited comment on TAP5-1933 at 5/23/12 4:12 PM:
-------------------------------------------------------------

We addressed this in our own project by using the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

So, the Email validator class can be fixed by removing all of the regex patterns other than the PATTERN object, and then replacing the regex text in the PATTERN object with the one referenced above.
                
      was (Author: rnicholus):
    We addressed this in our own project by using the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

So, the Email validator class can be fixed by removing all of the regex patterns other than the PATTERN object, and then replacing the regex text in the PATTERN object with the one references above.
                  
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (TAP5-1933) Email validation should use a different regular expression

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-1933:
---------------------------------------

    Summary: Email validation should use a different regular expression  (was: Tapestry 5 email validator rules are not correct)
    
> Email validation should use a different regular expression
> ----------------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
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

[jira] [Commented] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13281196#comment-13281196 ] 

Ray Nicholus commented on TAP5-1933:
------------------------------------

We addressed this in our own project by using javax.mail's InternetAddress class to validate the email addresses.  We did have to manually check for addresses that end in quotes though since InternetAddress seems to think these are valid.  I'm guessing this is not an option for Tapestry as this would require Tap5 to depend on javax.mail.  

Another option for Tapestry would be to use the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
                
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (TAP5-1933) Email validation should use a different regular expression

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-1933:
---------------------------------------

    Summary: Email validation should use a different regular expression  (was: Tapestry 5 email validator rules are not correct)
    
> Email validation should use a different regular expression
> ----------------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
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

[jira] [Comment Edited] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13281196#comment-13281196 ] 

Ray Nicholus edited comment on TAP5-1933 at 5/23/12 4:12 PM:
-------------------------------------------------------------

We addressed this in our own project by using the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

So, the Email validator class can be fixed by removing all of the regex patterns other than the PATTERN object, and then replacing the regex text in the PATTERN object with the one references above.
                
      was (Author: rnicholus):
    We addressed this in our own project by using javax.mail's InternetAddress class to validate the email addresses.  We did have to manually check for addresses that end in quotes though since InternetAddress seems to think these are valid.  I'm guessing this is not an option for Tapestry as this would require Tap5 to depend on javax.mail.  

Another option for Tapestry would be to use the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
                  
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13281196#comment-13281196 ] 

Ray Nicholus commented on TAP5-1933:
------------------------------------

We addressed this in our own project by using javax.mail's InternetAddress class to validate the email addresses.  We did have to manually check for addresses that end in quotes though since InternetAddress seems to think these are valid.  I'm guessing this is not an option for Tapestry as this would require Tap5 to depend on javax.mail.  

Another option for Tapestry would be to use the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
                
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Comment Edited] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13281196#comment-13281196 ] 

Ray Nicholus edited comment on TAP5-1933 at 5/23/12 4:12 PM:
-------------------------------------------------------------

We addressed this in our own project by using the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

So, the Email validator class can be fixed by removing all of the regex patterns other than the PATTERN object, and then replacing the regex text in the PATTERN object with the one referenced above.
                
      was (Author: rnicholus):
    We addressed this in our own project by using the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

So, the Email validator class can be fixed by removing all of the regex patterns other than the PATTERN object, and then replacing the regex text in the PATTERN object with the one references above.
                  
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ray Nicholus updated TAP5-1933:
-------------------------------

    Description: 
Examples of currently allowed (and invalid) addresses: 

  accent char - époch@example.com 
  '+' in domain - test@foo+example.com 
  '/' in domain - test@example/com 
  wrapped in single quotes - '[hidden email]' 


  was:
Examples of currently allowed (and invalid) addresses: 

  accent char - époch@example.com 
  '+' in domain - test@foo+example.com 
  '/' in domain - test@example/com 
  wrapped in single quotes - '[hidden email]' 
  wrapped in double quotes - "[hidden email]" 


    
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Comment Edited] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13281196#comment-13281196 ] 

Ray Nicholus edited comment on TAP5-1933 at 5/23/12 4:12 PM:
-------------------------------------------------------------

We addressed this in our own project by using the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?

So, the Email validator class can be fixed by removing all of the regex patterns other than the PATTERN object, and then replacing the regex text in the PATTERN object with the one references above.
                
      was (Author: rnicholus):
    We addressed this in our own project by using javax.mail's InternetAddress class to validate the email addresses.  We did have to manually check for addresses that end in quotes though since InternetAddress seems to think these are valid.  I'm guessing this is not an option for Tapestry as this would require Tap5 to depend on javax.mail.  

Another option for Tapestry would be to use the following regex pattern (lifted from regular-expressions.info):

[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
                  
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ray Nicholus updated TAP5-1933:
-------------------------------

    Description: 
Examples of currently allowed (and invalid) addresses: 

  accent char - époch@example.com 
  '+' in domain - test@foo+example.com 
  '/' in domain - test@example/com 
  wrapped in single quotes - '[hidden email]' 


  was:
Examples of currently allowed (and invalid) addresses: 

  accent char - époch@example.com 
  '+' in domain - test@foo+example.com 
  '/' in domain - test@example/com 
  wrapped in single quotes - '[hidden email]' 
  wrapped in double quotes - "[hidden email]" 


    
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (TAP5-1933) Email validation should use a different regular expression

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship updated TAP5-1933:
---------------------------------------

    Labels: fixed-in-5.4-js-rewrite validation  (was: validation)
    
> Email validation should use a different regular expression
> ----------------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: fixed-in-5.4-js-rewrite, validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 

--
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

[jira] [Updated] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ray Nicholus updated TAP5-1933:
-------------------------------

    Description: 
Examples of currently allowed (and invalid) addresses: 

  accent char - époch@example.com 
  '+' in domain - test@foo+example.com 
  '/' in domain - test@example/com 
  wrapped in single quotes - '[hidden email]' 
  wrapped in double quotes - "[hidden email]" 

    
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 
>   wrapped in double quotes - "[hidden email]" 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (TAP5-1933) Tapestry 5 email validator rules are not correct

Posted by "Ray Nicholus (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ray Nicholus updated TAP5-1933:
-------------------------------

    Description: 
Examples of currently allowed (and invalid) addresses: 

  accent char - époch@example.com 
  '+' in domain - test@foo+example.com 
  '/' in domain - test@example/com 
  wrapped in single quotes - '[hidden email]' 
  wrapped in double quotes - "[hidden email]" 

    
> Tapestry 5 email validator rules are not correct
> ------------------------------------------------
>
>                 Key: TAP5-1933
>                 URL: https://issues.apache.org/jira/browse/TAP5-1933
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.3
>            Reporter: Ray Nicholus
>            Priority: Minor
>              Labels: validation
>
> Examples of currently allowed (and invalid) addresses: 
>   accent char - époch@example.com 
>   '+' in domain - test@foo+example.com 
>   '/' in domain - test@example/com 
>   wrapped in single quotes - '[hidden email]' 
>   wrapped in double quotes - "[hidden email]" 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira