RE: scan subdirectory of mailbox with PHP

2007-03-20 Thread Jochem Meyers
You can either make the connection to the lower mailbox directly by using the correct IMAP path, or you can use imap_reopen, which takes your imap resource identifier, and the full connection string to the server with the new foldername: imap_reopen($mbox, {imap.example.org:143}INBOX.Sent); I

Re: scan subdirectory of mailbox with PHP

2007-03-19 Thread Andrew Morgan
On Mon, 19 Mar 2007, brian wrote: I'm fiddling with the woefully under-documented PHP IMAP functions and cannot figure out how to do this. I can connect just fine to INBOX, list the headers, etc. but my target mails are a couple of directories further down. I'd like to somehow do the