MIME Parser

Hi,

Follow to 'PR_CE_MIME_TEXT' returned value, Is there any kind of a built-in MIME Parser under Win32 API

Have a nice day,

Asher



Answer this question

MIME Parser

  • vpitts

    I see...

    Thanks Alex.


  • Sweeps78

    Does anyone know of such a psrder/decoder Isn't there anything out there... ;)

  • Peter Nimmo

    This forum is about Smart device development. Are you looking for MIME parsers for smart devices

    Manav



  • eswar.p

    There are no programmatically accessible MIME parsing components on Pocket PC. If you are interested in message body, a simplified rule is:

    Read all headers - lines of text followed by CRLF. Stop when you get an empty line. The rest is the message body. This is only true for purely text messages. To make sure the message is text, while reading the headers watch for one called "Content-Type". If this header value is multipart/alternative, then you have multipart body and need a decoder. Also, if you encounter a header Content-Transfer-Encoding: quoted-printable, it means that you will need to decode the message.



  • Kiwi Ranger

    You could try mimepp/mime++ lib. Though it isn't entirely free. We are using that and it works pretty good on PPC2003/WM5 platforms.

    - Stefan

  • tornin2

    Moving this thread to native forums as this has better chance of getting answered.

    Manav



  • winstonSmith

    Yes, Sorry I wasn't clear.

    I am running under WM 5.0 using Win(CE)32 API.


  • MIME Parser