Defect #28878
closedEmail does not support Russian-language domains.
0%
Description
Example: info@сайт.бел
Checked in the registration form.
Related issues
Updated by Go MAEDA over 6 years ago
- Related to Defect #15985: Email address with non-ASCII character causes delivery error added
Updated by Go MAEDA over 6 years ago
Current versions of Redmine accepts only alphabets, numbers, and hyphens for the domain part of email addresses (source:tags/3.4.5/app/models/email_address.rb#L29).
Please use Punycode to avoid this issue. For example, use "info@xn--80aswg.xn--90ais" instead of "info@сайт.бел".
Updated by Go MAEDA over 6 years ago
- Related to Feature #29208: Support email addresses with IDN (internationalized domain names) in user accounts added
Updated by Go MAEDA over 6 years ago
I posted a patch to support IDN (internationalized domain names) as #29208. You will be able to Russian domain names if the patch is merged.
Updated by Go MAEDA over 6 years ago
- File support-idn-email-addresses-v4.diff added
Updated by Go MAEDA over 6 years ago
- File deleted (
support-idn-email-addresses-v4.diff)
Updated by Go MAEDA 9 months ago
- Status changed from New to Closed
- Resolution set to Fixed
The feature to support IDNs (Internationalized Domain Names) was implemented in r22667. If you enter an email address with an IDN into your account, Redmine will convert the domain to its ASCII equivalent before saving the email address (e.g. marie@société.example
=> marie@xn--socit-esab.example
).