14 lines
371 B
Python
14 lines
371 B
Python
#!/usr/bin/env python3
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", ".."))
|
|
from projektmatch import mailer # noqa: E402
|
|
|
|
box = mailer.MailBox("chancen@destengs.com", os.environ["PM_IMAP_PASSWORD"])
|
|
uids = box.unchecked_uids()
|
|
for uid in uids:
|
|
box.flag_checked(uid)
|
|
print(f"flagged {len(uids)} mails as checked")
|
|
box.close()
|