I'm trying to decode email Subject headers.

I'm doing this (the regex is for adding a space between the two = 's:

header = '=?iso-8859-1?B?TU9UT1IubmwgbmlldXdzYnJpZWYgPiBOaWV1d2UgdmVya29vcHRvcHBl?==?iso-8859-1?B?ciBTdXp1a2kg?='
header = re.sub(r"(==)(?!$)", u"\0= =", header)
email.header.decode_header(header)

But that throws an HeaderParseError:

HeaderParseError                          Traceback (most recent call last)

/home/leon/<ipython console> in <module>()

/usr/lib/python2.7/email/header.pyc in decode_header(header)
    106                         # now we throw the lower level exception away but
    107                         # when/if we get exception chaining, we'll preserve it.
--> 108                         raise HeaderParseError
    109                 if dec is None:
    110                     dec = encoded

The funny thing is, if I copy the output of the re.sub() to my clipboard and do:

email.header.decode_header('=?iso-8859-1?B?TU9UT1IubmwgbmlldXdzYnJpZWYgPiBOaWV1d2UgdmVya29vcHRvcHBl?= =?iso-8859-1?B?ciBTdXp1a2kg?=')

it works!

So I guess something's wrong with the encoding of re.sub() but I don't know how to fix this.

link|improve this question

70% accept rate
The header is invalid to begin with. Does this happen for all e-mails you're trying to parse, or just some? How does the actual raw header portion look? Perhaps a newline (between the tokens) gets lost when you're reading the headers? – bzlm Sep 12 '11 at 6:31
feedback

1 Answer

up vote 1 down vote accepted

You lack a space between the RFC2047 tokens in the example which doesn't work. Your attempt to repair it is, however, also incorrect; you should be replacing with u"= =", not u"\0= =".

It would be much better if you could find the source of such errors and correct it, rather than attempt to fix it up afterwards based on, at best, good guesses about what your data ought to be.

link|improve this answer
This workaround is already present in the question. :) The question is, why does it happen? – bzlm Sep 12 '11 at 6:30
The \0 in the ostensible workaround is incorrect. Will update my reply. – tripleee Sep 12 '11 at 6:35
Thanks! That was it! I found the regex somewhere and I thought the \0 was for a group reference or something. – Leon Sep 12 '11 at 8:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.