Re: Strip email attachments using IMAP.

2009-04-18 Thread Chas. Owens
On Sat, Apr 18, 2009 at 06:26, Meghanand Acharekar wrote: > Hi, > > Is it possible to strip email attachments from a remote IMAP folders & save > or download  them on local system (system on which script is running) > > I written a simple script using perl IMAPClient which connects IMAP server > a

RE: Strip email attachments using IMAP.

2009-04-18 Thread Jeff Pang
Could use Net::POP3 to fetch the whole message, then use MIME::Lite(::*) to parse it and get the attachment (given the case you know something about rfc822). regards. > Original Message > Subject: Strip email attachments using IMAP. > From: Meghanand Acharekar &g

Strip email attachments using IMAP.

2009-04-18 Thread Meghanand Acharekar
Hi, Is it possible to strip email attachments from a remote IMAP folders & save or download them on local system (system on which script is running) I written a simple script using perl IMAPClient which connects IMAP server and read emails from there, but found no method to strip attachments ?