Skip to content

Instantly share code, notes, and snippets.

@gothma
Created July 30, 2015 13:08
Show Gist options
  • Save gothma/853beaeaef51b8c57e23 to your computer and use it in GitHub Desktop.
Save gothma/853beaeaef51b8c57e23 to your computer and use it in GitHub Desktop.
TF Mail Check
#!/usr/bin/env python3
from imaplib import IMAP4_SSL
import getpass
s = IMAP4_SSL('imap.informatik.uni-freiburg.de', '993')
print(s.login(getpass.getuser(), getpass.getpass()))
s.logout()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment