I want to parse some emails from a user \'s inbox but when I do:
typ, msg_data = imap_conn.fetch(uid, \'(RFC822)\')
It marks the email as S
You might also set read_only to true when selecting the folder:
read_only
imap_conn.select('Inbox', readonly=True)