Is there any python code to convert outlook pst mails to eml format. Please also suggest for any such code in some other language. Thank you.
Asked
Active
Viewed 7,897 times
1 Answers
1
import subprocess
def convert_pst_to_mbox(pstfilename, outputfolder):
subprocess.call(['readpst', '-o', outputfolder, '-r', pstfilename])
Of course, you must install libpst utilities for that to work.

nosklo
- 217,122
- 57
- 293
- 297
-
1@pap, no: http://en.wikipedia.org/wiki/E-mail#Filename_extensions, but you can convert: http://www.google.com/search?q=mbox+to+eml – John Paulett Nov 25 '09 at 23:53