funkymonky has asked for the wisdom of the Perl Monks concerning the following question:
If I use the select command from Mail::IMAPClient $imap->select($folder) the response from the server looks like
* FLAGS (\Answered \Flagged \Draft \Deleted \Seen) * OK [PERMANENTFLAGS (\Answered \Flagged \Draft \Deleted \Seen \*)] * 3 EXISTS * 0 RECENT * OK [UIDVALIDITY 1030359672] * OK [UIDNEXT 191] 000E OK [READ-WRITE] Completed
The command returns a hash-reference, but when I look at the content of the hash, it does not contain the information the server returned.The hash keys have values like 'Password','CAPABILITY','Socket',etc
QUESTION: how do I get access to response from the server? I'm interested in the UIDNEXT value.(I know the status method returns this info, but there has to be a way to get it from the select method)
Edit kudra, 2002-09-05 s,\\,/,g (all HTML tags were ending with \tag instead of /tag)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: select command from Mail::IMAPClient
by blahblahblah (Priest) on Sep 05, 2002 at 14:49 UTC | |
|
Re: select command from Mail::IMAPClient
by jlongino (Parson) on Sep 05, 2002 at 15:41 UTC |