We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug InternetAddress checkAddress validation is not conforming to RFC822 due to this line:
checkAddress
mail-api/api/src/main/java/jakarta/mail/internet/InternetAddress.java
Line 1351 in 892fae4
It should be if (c <= 040 || c >= 0177) to prevent characters above Octal 177 / Decimal 127 being accepted as valid.
if (c <= 040 || c >= 0177)
Reference links:
To Reproduce Steps to reproduce the behavior:
new InternetAddress("testä[email protected]", true); or InternetAddress address = new InternetAddress("testä[email protected]"); address.validate();
The above code doesn't throw AddressException
AddressException
Expected behavior
The expection is for this error to be thrown
Lines 1352 to 1353 in 892fae4
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Mail server:
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Duplicate of: #374
Related: #589
Sorry, something went wrong.
No branches or pull requests
Describe the bug
InternetAddress
checkAddress
validation is not conforming to RFC822 due to this line:mail-api/api/src/main/java/jakarta/mail/internet/InternetAddress.java
Line 1351 in 892fae4
It should be
if (c <= 040 || c >= 0177)
to prevent characters above Octal 177 / Decimal 127 being accepted as valid.Reference links:
To Reproduce
Steps to reproduce the behavior:
The above code doesn't throw
AddressException
Expected behavior
The expection is for this error to be thrown
mail-api/api/src/main/java/jakarta/mail/internet/InternetAddress.java
Lines 1352 to 1353 in 892fae4
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Mail server:
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: