EmailValidator4J
EmailValidator4J copied to clipboard
Java RFC strict EmailValidator
Bumps [junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
Hello, IntelliJ does not support JCenter (https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000686704-How-to-install-packages-from-JCenter-). It would be much easier if this package is available on more standard maven repos.
Fix #13 Thanks @ea234 for reporting.
This one is more or less there. Before I programmed the sample Code, I got the same Result with only a lenght of 1300 characters ... still a little bit...
private static EmailValidator m_email4j_v = new EmailValidator(); public static void main( String[] args ) { try { String my_not_there_email_adress = null; System.out.println( "Test 1 " + m_email4j_v.isValid( my_not_there_email_adress ) );...
Currently, EmailValidator4J's Parsers maintain internal state related to Warnings. The Parsers are instantiated at Validator construction time and then reused. As such, as soon as a Warning is in a...
When you check the local part max length, your code include "@" which should not, so the following email failed (64 characters for the local part) because of RFC5321_LOCALPART_TOO_LONG warning....
The length of any label that is part of the domain can not exceed 63 characters
Hi Eduardo, Over at [email-rfc2822-validator](https://github.com/bbottema/email-rfc2822-validator) we are looking at EmailValidator4J with great interest. Our approach is a time-tested comprehensive regex based parser, but we always knew regular expressions are sub...
This is calling `.get(0)` for an empty array: ``` jdk.internal.util.Preconditions in outOfBounds at line 64 jdk.internal.util.Preconditions in outOfBoundsCheckIndex at line 70 jdk.internal.util.Preconditions in checkIndex at line 266 java.util.Objects in checkIndex...