Collect Email Addresses from MBOX and PST
-
Export your outllok folder to PST file (outlook.pst)
-
Install libpst utils (http://www.five-ten-sg.com/libpst/)
user@mac$ brew install libpst --pst2dii --with-python
user@linux$ sudo apt-get install libpst4
- Convert PST file to MBOX with libpst utils
$ cd path/to/outlook.pst
$ mkdir outlook
$ readpst -D -b -d ./outlook.log -o ./outlook outlook.pst
[optional] $ tail -f outlook.log
- Collect all emails with collect_emails_from_mbox.py
$ python collect_emails.py -s -d ./outlook
Georgy Bunin