Reputation: 10284
I have just started with the basics of how MS Outlook stores its mails in its own format (.pst format) and I have to deliver a script (search something or write my own) which -
Some basic Questions
Would be nice if anyone could clarify these basic questions -
I got these so far
Google email uploader (open source), they do the reading part...
Any suggestions regarding which of these solutions or some others to try? Or if you could tell about any of your experiences so that I get an idea before actually trying out any solution and later realizing it is not possible that way. Any pointers would be appreciated. I basically come from a LAMP background with little knowledge in other languages. Have done a little bit of bash programming recently.
Thanks,
Sandeepan
Update
JPST works fine. There are modules exactly for these things - read all messages (you can simple write code to save in files), save the attachments and many other things.
Also I came to know that mail contents as well as attachments, all are stored in the .pst files.
Upvotes: 2
Views: 2536
Reputation: 69
You may also consider Aspose.Network for parsing Outlook PST files. In Linux environment, there are 2 ways to parse PST with Aspose.Network.
Use Aspose.Network for Java. This requires Sun's JDK and will run natively on Linux, because Aspose.Network for Java library is written in Java. Here is a sample Java program for exporting MSG files from PST.
Use Aspose.Network for .NET with Mono on Linux. This solution depends on Mono for running .NET code in Linux environment, because the Aspose.Network for .NET library is written purely in .NET. Here is the sample .NET program for exporting messages (MSG) from PST.
Upvotes: 0
Reputation: 3780
You could look at either http://alioth.debian.org/projects/libpst/ or http://www.genusa.com/utils/pmseu.htm
Upvotes: 0