Skip to content

Instantly share code, notes, and snippets.

@sc68cal
Last active February 9, 2016 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sc68cal/9d42a8a364661bb41fb8 to your computer and use it in GitHub Desktop.
Save sc68cal/9d42a8a364661bb41fb8 to your computer and use it in GitHub Desktop.
# Example:
# $ python Desktop/mail_agents.py ~/mail/neutron | sort | uniq
import mailbox
import sys
mailbox = mailbox.Maildir(sys.argv[1])
for email in mailbox:
try:
agent = email['User-Agent']
print agent.replace('\n', '')
except KeyError:
continue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment