From: Xianwen Chen on
Hi guys,

I use these codes to read emails from an IMAP server:

import imaplib

imap_srv_addr = "someserver"
imap_srv = imaplib.IMAP4_SSL(imap_srv_addr)
imap_srv.login("username","passwd")
imap_srv.select("Inbox")
msg = imap_srv.fetch(1, '(RFC822)')

How can I parse msg so it can be appended to the other IMAP server?

Best regards,

Xianwen