Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. Invalid email addresses
  2. Abc.example.com (no @ character) PASS
  3. A@b@c@example.com (only one @ is allowed outside quotation marks) PASS
  4. a"b(c)d,e:f;g<h>i[j\k]l@example.com (none of the special characters in this local-part are allowed outside quotation marks) PASS
  5. just"not"right@example.com (quoted strings must be dot separated or the only element making up the local-part) PASS
  6. this is"not\allowed@example.com (spaces, quotes, and backslashes may only exist when within quoted strings and preceded by a backslash) PASS
  7. this\ still\"not\\allowed@example.com (even if escaped (preceded by a backslash), spaces, quotes, and backslashes must still be contained by quotes) PASS
  8. 1234567890123456789012345678901234567890123456789012345678901234+x@example.com (too long) FAIL
  9. john..doe@example.com (double dot before @) FAIL
  10. with caveat: Gmail lets this through, Email address#Local-part the dots altogether
  11. john.doe@example..com (double dot after @) PASS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement