-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimap-deleter.py
53 lines (42 loc) · 1.38 KB
/
imap-deleter.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import imaplib
import datetime
import logging
import logging.handlers
import smtplib
from email.mime.text import MIMEText
import config
current_date = datetime.date.today()
d = 30
datedays = (current_date - datetime.timedelta(days=d)).strftime("%d-%b-%Y")
# Configure the root logger
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
# Create a SMTP handler
smtp_handler = logging.handlers.SMTPHandler(
mailhost=(config.smtp_host, config.smtp_port),
fromaddr=config.from_address,
toaddrs=[config.to_address],
credentials=config.send_creds,
subject='[delete after 30 days] logging Output',
secure=()
)
smtp_handler.setLevel(logging.DEBUG)
# Add the SMTP handler to the root logger
logger.addHandler(smtp_handler)
def process_account(account):
box = imaplib.IMAP4_SSL(account[0], account[1])
box.login(account[2], account[3])
box.select("INBOX.delete-after-30-days")
typ, data = box.search(None, '(BEFORE {0})'.format(datedays))
count = len(data[0].split())
# Log your messages
logger.info('connected to %s:%d, %d messages deleted', account[0], account[1], count)
for num in data[0].split():
box.store(num, '+FLAGS', '\\Deleted')
box.expunge()
box.close()
box.logout()
if __name__ == "__main__":
# Connect to each account and process the email data
for account in config.creds:
process_account(account)