iamranger
iamranger
Sorry, some of the markup got lost. I updated my comment. AFAIK RFC 822 address allows non-US ASCII in the display name - it just needs to be encoded when...
This is the test I wrote. The two constructors still work differently in 1.6.3 release. Note that there is no exception in either case. The first constructor simply dumps the...
The workaround for the issue: ``` InternetAddress recipient = new InternetAddress(address); if (recipient.getPersonal() != null) { recipient = new InternetAddress(recipient.getAddress(), recipient.getPersonal())); }
Yes, the real application, and the address is this case is entered by a user as a single line. They input is in a correct format (RFC 822) but with...