i need to backup the emails contained in a PST file (outlook storage). i'm using libpst which is the only free library i found on the web ( http://code.google.com/p/java-libpst/ )
so i can access all the information in each single email (subject, body, sender ecc..), but i need to put them on a file
here someone said you can create an EML file from a "javax.mail.Message" object: Create an EML (E-Mail) File in Java
the problem is: how do i create this Message object? i don't have a server or an email session, just the information contained in the email
p.s. creating a .msg file would be fine too