Revisions
-
robulouski revised this gist
Nov 13, 2013 . 1 changed file with 2 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,10 +8,8 @@ import sys import imaplib import getpass IMAP_SERVER = 'imap.gmail.com' EMAIL_ACCOUNT = "notatallawhistleblowerIswear@gmail.com" EMAIL_FOLDER = "Top Secret/PRISM Documents" OUTPUT_DIRECTORY = 'C:/src/tmp' @@ -40,7 +38,7 @@ def process_mailbox(M): f.close() def main(): M = imaplib.IMAP4_SSL(IMAP_SERVER) M.login(EMAIL_ACCOUNT, PASSWORD) rv, data = M.select(EMAIL_FOLDER) if rv == 'OK': -
robulouski created this gist
Nov 13, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,55 @@ #!/usr/bin/env python # # Very simple Python script to dump all emails in an IMAP folder to files. # This code is released into the public domain. # # RKI Nov 2013 # import sys import imaplib import getpass import email import email.header import datetime EMAIL_ACCOUNT = "notatallawhistleblowerIswear@gmail.com" EMAIL_FOLDER = "Top Secret/PRISM Documents" OUTPUT_DIRECTORY = 'C:/src/tmp' PASSWORD = getpass.getpass() def process_mailbox(M): """ Dump all emails in the folder to files in output directory. """ rv, data = M.search(None, "ALL") if rv != 'OK': print "No messages found!" return for num in data[0].split(): rv, data = M.fetch(num, '(RFC822)') if rv != 'OK': print "ERROR getting message", num return print "Writing message ", num f = open('%s/%s.eml' %(OUTPUT_DIRECTORY, num), 'wb') f.write(data[0][1]) f.close() def main(): M = imaplib.IMAP4_SSL('imap.gmail.com') M.login(EMAIL_ACCOUNT, PASSWORD) rv, data = M.select(EMAIL_FOLDER) if rv == 'OK': print "Processing mailbox: ", EMAIL_FOLDER process_mailbox(M) M.close() else: print "ERROR: Unable to open mailbox ", rv M.logout() if __name__ == "__main__": main()