1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import imaplib, email
def get_imap(server, username, password):
'''Connect and login via IMAP'''
mail = imaplib.IMAP4_SSL(server)
mail.login(username, password)
return mail
def get_mail_uids(mail):
'''Return a list of message UIDs in the inbox'''
mail.select("inbox") # connect to inbox.
result, data = mail.uid('search', None, "ALL") # search and return uids instead
return data[0].split()
def get_message(mail, uid):
'''Get a single email message object by UID'''
result, data = mail.uid('fetch', uid, '(RFC822)')
raw_email = data[0][1]
return email.message_from_string(raw_email)
def delete_message(mail, uid):
result = mail.uid('store', uid, '+FLAGS', '(\Deleted)')
def close(mail):
mail.expunge()
mail.close()
mail.logout()
|