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 can use (RFC822.PEEK) as the "message-parts" argument, according to RFC 1730 (I have not verified which servers actually implement that correctly, but it doesn't seem hard for them to).
(RFC822.PEEK)