good chemistry is complicated, and a little bit messy -LW |
|
PerlMonks |
select function from Mail::IMAPClientby funkymonky (Initiate) |
on Sep 05, 2002 at 08:49 UTC ( [id://195317]=perlquestion: print w/replies, xml ) | Need Help?? |
funkymonky has asked for the wisdom of the Perl Monks concerning the following question: ⭐ (mail and news)
the following method selects a folder
$imap->select($folder)
When I trace the response from the server, it looks like this: Now I want to use this in my program. The function returns a hash reference so I do the following: %map_status=%{$imap->select("INBOX")}; This command works perfectly, but the PROBLEM is it does not contain the server response. QUESTION: How do I extract the server response? Originally posted as a Categorized Question.
Back to
Seekers of Perl Wisdom
|
|