Changes between Initial Version and Version 1 of Ticket #27029, comment 26
- Timestamp:
- Sep 1, 2022, 9:54:26 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27029, comment 26
initial v1 3 3 Unicode in local-part is allowed by the latest standards, therefore `EmailValidator` is preventing valid email addresses to be used in Django. Making the current regex allow Unicode characters instead of `[0-9A-Z]` would do the trick. 4 4 5 #26423 won't solve this as HTML5 validator does not allow Unicode in local-part either.