Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 684 Bytes

File metadata and controls

34 lines (25 loc) · 684 Bytes

CollectEmailAddresses

Collect Email Addresses from MBOX and PST

Usage:

  1. Export your outllok folder to PST file (outlook.pst)

  2. 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
  1. 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
  1. Collect all emails with collect_emails_from_mbox.py
    $ python collect_emails.py -s -d ./outlook

Author:

Georgy Bunin