emailMessage parsing

Hi…

I am working on a more complete emailMessage parser and have run into a situation that just does not make sense to me.

I sent a simple email from a Windows 8.1 machine via my gmail account… when I receive it via a popsocket, in part, the raw text looks like:

Content-type: text/plain;
Content-transfer-encoding: 7bit

dGhpcyBpcyBudW1iZXIgMg0KDQoNCkppbQ0KDQoNCg0KDQoNCg0KU2VudCBmcm9tIFdpbmRvd3Mg
TWFpbA==

–oos8c66nyptq

… but the text is clearly base64 and not 7bit…

So it seems that the message is not being properly constructed by the Windows client… but when I receive the same email with Mac Mail, it properly decodes it.

I do not know a reliable way to determine is a string is base64… but it seems the Mac is figuring it out… or I am missing something?

Thanks for any insight,
Jim

base64 ends mostly with “==”

http://en.wikipedia.org/wiki/MIME
some more info just look for the string;

Content-transfer-encoding: 7bit

in google

Derk…

Thanks for the reply… but 2 things:

  1. My understanding is that 7bit is basically the same as ASCII… characters 1 - 127… That string is base64… I checked it.

  2. base64 string length must be in 4 byte increments… with “=” used as padding when the string length is not “mod 4”… So there is a 25% chance that there will be no “=” on the end… and a 25% chance it will have 2 or 3 “=”… so I cannot depend on that…

Jim

Well there is always this one:

Content-type: text/plain;

WIch indicates human readable text (non-binary) so it’s an ascii string.
But i’m not exactly sure what the best options are. What i do know is they are there.
As there are more then enough email services/apps that work flawless.

Some more info from microsoft:

7-bit encoding
http://msdn.microsoft.com/en-us/library/ms526290(v=exchg.10).aspx

base 64 encoding
http://msdn.microsoft.com/en-us/library/ms526568(v=exchg.10).aspx

Sometimes email messages lie about their encoding. Says utf8 in the header and latin-something in the html. This makes email parsing sometimes guesswork. But I haven’t seen this particular fun before. Can you send me the complete raw mail privately? I’l like to check how my own email parser handles the mail.