From: Xianwen Chen on 23 Jun 2010 11:14 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
|
Pages: 1 Prev: Another MySQL Problem Next: Does a '_sre.SRE_Pattern' have state,or is it thread-safe? |