#11144: UnicodeEncodeError when unicode characters present in To/From/Cc and also a comma is present --------------------------------+------------------------------------------- Reporter: anonymous | Owner: nobody Status: new | Milestone: 1.1 Component: django.core.mail | Version: 1.0 Keywords: UnicodeEncodeError | Stage: Unreviewed Has_patch: 0 | --------------------------------+------------------------------------------- This address will work fine: "Joe Blöggs" <[email protected]>
However, this address will fail: "Blöggs, Joe" <[email protected]> The reason is because Django is doing a simple val.split(",") instead of proper parsing of the addresses. Bug location: django/core/mail.py:forbid_multi_line_headers line 82 (In 1.0.2 at least) It's also present in the dev version! -- Ticket URL: <http://code.djangoproject.com/ticket/11144> Django <http://code.djangoproject.com/> The Web framework for perfectionists with deadlines. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
