-
Notifications
You must be signed in to change notification settings - Fork 188
Mail examples
enkore edited this page Apr 17, 2014
·
1 revision
This page outlines the use of the mail module
from i3pystatus.mail import imap
status.register("mail",
backends=[
imap.IMAP(
# port and ssl are the defaults
host="imap.googlemail.com", port=993, ssl=True,
username="<mygoogleaccount>", password="<my password>"
)
])