summaryrefslogtreecommitdiff
path: root/emailcanary/email-digest-sender.py
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2015-10-25 19:42:14 -0700
committerJesse Morgan <jesse@jesterpm.net>2015-10-25 19:42:14 -0700
commit51129fda2179286143921db55a69b3f4dba03c0e (patch)
treef09690727e5000af8e9e7bd9359fe37c81210fcd /emailcanary/email-digest-sender.py
parent5319d2f0f013a340cb0fdc396bbe4f0ae8df5142 (diff)
Adding Canary Check and Accounts
Adding the canary check method and tests for the Canary class. Adding accounts to CanaryDB.
Diffstat (limited to 'emailcanary/email-digest-sender.py')
-rw-r--r--emailcanary/email-digest-sender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/emailcanary/email-digest-sender.py b/emailcanary/email-digest-sender.py
index f1583c0..a7ff79f 100644
--- a/emailcanary/email-digest-sender.py
+++ b/emailcanary/email-digest-sender.py
@@ -10,7 +10,7 @@ youve_got_mail = False
all_subjects = {}
for account in ACCOUNTS:
- mail = emailutils.get_imap(account)
+ mail = emailutils.get_imap(account[0], account[1], account[2])
these_subjects = []
for uid in emailutils.get_mail_uids(mail):
message = emailutils.get_message(mail, uid)