Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
Michael HnatMichael HnatPriority
BlockerLabels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneAffects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Michael Hnat
Michael HnatPriority
Labels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Affects versions
Created 26 January 2018 at 03:49
Updated 6 January 2022 at 15:10
Resolved 16 February 2018 at 15:16
email addresses with german umlauts (and I'm sure also for all other non-ascii characters) like test@müller.de are not validated correctly.
The result of
isValid("email","test@müller.de")
is false but should be true.When using this address in cfmail like
<cfmail from="..." to="test@müller.de" ...>
results in an error saying
One of the following attribtues must be defined (to, cc, bcc)
a workaround is converting the email address to punycode manually:
createobject("java", "java.net.IDN").toAscii("test@müller.de")
But this should be done automatically by Lucee. The developer exception is, that email addresses like this are recognized as valid addresses, because they are.
This is really a blocker, because it means, that all applications validating these addresses fail with emails with non-ascii characters!