#7747: Long email subject headers have tab character inserted
--------------------------------------------------+-------------------------
Reporter: [EMAIL PROTECTED] | Owner: ramikassab
Status: new | Milestone: 1.0
Component: django.core.mail | Version: SVN
Resolution: | Keywords: aug22sprint
Stage: Ready for checkin | Has_patch: 1
Needs_docs: 0 | Needs_tests: 0
Needs_better_patch: 0 |
--------------------------------------------------+-------------------------
Changes (by ramikassab):
* keywords: => aug22sprint
* needs_better_patch: 1 => 0
* stage: Accepted => Ready for checkin
Comment:
Wrote a quick test app to confirm this issue. Raw email headers were as
follows:[[BR]][[BR]]
'''Before Patch:'''
{{{
...
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Subject: This is a really long subject and I just wanted to test to see
how
this turned out in my email application. For some reason,
tabs are inserted to fold the subject but we want spaces
instead....
don't we now?!
...
}}}
'''After Patch:'''
{{{
...
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Subject: This is a really long subject and I just wanted to test to see
how this
turned out in my email application. For some reason,
tabs are inserted to fold the subject but we want spaces instead....
don't
we now?!
...
}}}
Also ran the regression test in the patch, which function as expected. I
think this is ready for checkin
--
Ticket URL: <http://code.djangoproject.com/ticket/7747#comment:7>
Django Code <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
-~----------~----~----~----~------~----~------~--~---