up vote 9 down vote favorite
share [g+] share [fb]

I have an email subject of the form:

=?utf-8?B?T3.....?=

The body of the email is utf-8 base64 encoded - and has decoded fine. I am current using Perl's Email::MIME module to decode the email.

What is the meaning of the =?utf-8 delimiter and how do I extract information from this string?

link|improve this question

feedback

4 Answers

up vote 16 down vote accepted

The header is parsed as follows:

=?<charset>?<encoding>?<data>?<possibly repeated>?=

charset is in this case utf-8 the encoding is B which means base64 (the other option is Q which means Quoted Printable).

To read it, first decode the base64, then treat it as utf-8 characters.

Also read the various email related internet RFCs for more detail.

Since you are using Perl, it looks like Encode::MIME::Header will be of use:

ABSTRACT

This module implements RFC 2047 Mime Header Encoding. There are 3 variant encoding names; MIME-Header, MIME-B and MIME-Q. The difference is described below

              decode()          encode()  
MIME-Header   Both B and Q      =?UTF-8?B?....?=  
MIME-B        B only; Q croaks  =?UTF-8?B?....?=  
MIME-Q        Q only; B croaks  =?UTF-8?Q?....?=
link|improve this answer
Where are you getting this part: ?<possibly repeated>?= The grammar for rfc 2047 just says: encoded-word = "=?" charset "?" encoding "?" encoded-text "?=" – catphive Mar 3 '11 at 19:02
feedback

I think that the Encode module handles that with the MIME-Header encoding, so try this:

use Encode qw(decode);
my $decoded = decode("MIME-Header", $encoded);
link|improve this answer
That was helpful, thanks. Btw, I also used print encode('utf-8', $headers_decoded) to display decoded headers properly, if someone else is reading this while writing some mail script. – kagali-san Oct 25 '10 at 18:30
This solution is great! Works perfect! – George Bailey Dec 21 '10 at 21:05
feedback

Check out RFC2047. The 'B' means that the part between the last two '?'s is base64-encoded. The 'utf-8' naturally means that the decoded data should be interpreted as UTF-8.

link|improve this answer
feedback

This is a standard extension for charset labeling of headers, specified in RFC2047.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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