EmailValidator does not support mailboxes at TLDs
-------------------------------------------------
Key: VALIDATOR-273
URL: https://issues.apache.org/jira/browse/VALIDATOR-273
Project: Commons Validator
Issue Type: Bug
Components: Framework
Affects Versions: 1.3.1 Release
Reporter: Marcos Sanz
According to RFC 5321 and 5322, mailboxes at top level domain names are
permitted. Thus, the syntax localp...@tld is valid. Explicit text to this topic
can be found in RFC 5321:
2.3.5. Domain Names
A domain name (or often just a "domain") consists of one or more
components, separated by dots if more than one appears. In the case
of a top-level domain used by itself in an email address, a single
string is used without any dots.
Accordingly, the code
EmailValidator ev = EmailValidator.getInstance();
System.out.println(ev.isValid("m...@de"));
should output "true".
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.