Re: Problem with returned Array.

2002-09-29 Thread Ramprasad A Padmanabhan
Frederic Trudeau wrote: > Greetings all. > Hi > Im using Cyrus::IMAP::Admin module to list mailboxes on my system. After I have >authenticated sucessfully, I run this command, that is suppose to give me a list of >all mailboxes : > > @mailboxes = $client->list('*'); > > Just for debugging p

Re: Problem with returned Array.

2002-09-29 Thread Jeff 'japhy' Pinyan
[corrected top-posting] On Sep 29, Frederic Trudeau said: >From: "nkuipers" <[EMAIL PROTECTED]> > >> @mailboxes is an array of array references. You have to dereference >> every element before printing it. >> >You are speaking another language =) >Could you please be more specific, or better, i

Re: Problem with returned Array.

2002-09-29 Thread Frederic Trudeau
TECTED]> Sent: Sunday, September 29, 2002 1:10 PM Subject: RE: Problem with returned Array. > @mailboxes is an array of array references. You have to dereference every > element before printing it. > > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional comm

RE: Problem with returned Array.

2002-09-29 Thread nkuipers
@mailboxes is an array of array references. You have to dereference every element before printing it. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Problem with returned Array.

2002-09-29 Thread Frederic Trudeau
Greetings all. Im using Cyrus::IMAP::Admin module to list mailboxes on my system. After I have authenticated sucessfully, I run this command, that is suppose to give me a list of all mailboxes : @mailboxes = $client->list('*'); Just for debugging purpose, I printed the size of the array... Th