views:

695

answers:

4

Hi guys

Ive decided that I really dont like microsoft and their ways. Please could you give me directions on how to handle winmail.dat in emails, is there a jython library or a java library that will allow me to handle this.

Ive just completed a email processing program, written in jython 2.2.1 on java 5. During the final load test, I realised that attachments that should have been in a standard MIME email format is now tied up in some blasted winmail.dat, which means many different outlook clients pollute the internet with this winmail.dat, so that means i need to support winmail.dat. Thus my program failed to process the data correctly.

Please could you give a short description on what winmail.dat is and why it is here to annoy us.

What other surprises can be expected!? what else do I have to watch out for, so far standard MIME emails are catered for. Are there any other jack in the boxes?

Thanks so much for your time.

+5  A: 

read here:
http://en.wikipedia.org/wiki/TNEF

a package for parsing here:
http://sourceforge.net/projects/tnef

shoosh
just as i posted you guys posted
Setori
+1  A: 

Please could you give a short description on what winmail.dat is and why it is here to annoy us.

kb138053

When an end user sends mail to the Internet from an Exchange Windows or Outlook client, a file attachment called Winmail.dat may be automatically added to the end of the message if the recipient's client cannot receive messages in Rich Text Format (RTF). The Winmail.dat file contains Exchange Server RTF information for the message, and may appear to the recipient as a binary file. It is not useful to non-Exchange Server recipients.

If you read the kb I referenced further it gives instructions on how Exchange administrators can and should disable RTF to the internet.

Zoredache
A: 

so when i see this in email Content-Type: "application/ms-tnef"

I use this: http://www.freeutils.net/source/jtnef/

Setori
A: 

I have had good luck with wmdecode on Windows. Granted, it's an EXE, not a java project. But it could be useful if you run into WINMAIL.DAT files that other solutions can't decode.

Chase Seibert