Rohan Nagar
Rohan Nagar
For what it's worth I just replaced jbcrypt with this library in my Java 11 application and it's working great!
@chconnor Thanks for taking a look! I'll try to answer each of these: > I don't know why "Joe Smith" is validated by our library. That surprised me. That surprised...
Sorry, I actually just took a further look on "John Smith" and it looks like a problem with how my website displays results. The actual address being tested is `Joe...
Thank you both for the kind words! In terms of performance, JMail is on average almost 3x faster than `email-rfc2822`. You can scroll down to the bottom of https://www.rohannagar.com/jmail/ to...
Quick update that I published [version 1.2.0](https://github.com/RohanNagar/jmail/releases/tag/v1.2.0) of JMail which fixes issues that came up during this discussion - emails with quoted identifiers are now correctly handled, as well as...
I am definitely interested in a Docker image for this. Anyone here still working on it?
Would love to use this framework on OS X. Please let me know if you make any progress on that front.
Thanks for the suggestion! I will spend some time in the next week looking into this. It may be a useful feature to add.
Thanks! The `dnsjava` library looks nice. I will use it as a reference when implementing this as I don't want to bring in any dependencies to `jmail`.
If you need this functionality in the meantime, you can add your own validation rule to your `EmailValidator` like this: ```java EmailValidator validator = JMail.validator() .withRule(email -> { try {...