Re: [Fwd: Re: Problem with function getquotaroot in IMAP::Client]

2009-11-01 Thread Peter Scott
On Sun, 01 Nov 2009 00:07:48 +0530, Shameem Ahamed wrote: > Quota is supported on the system, as i am able to retrieve the quota > information using same commands through telnet. > > Also, i am able to get the information through the imap->send and > imap->receive functions. Then you may have fo

Re: Problem with function getquotaroot in IMAP::Client

2009-10-31 Thread Owen
On Thu, 29 Oct 2009 11:07:06 -0700 (PDT) Shammi wrote: > Hi, > > I am using the IMAP::Client for automating the quota check > for some of the users. My script was fairly straight, and I ran in to > the below error, while running the script. The error returned by the > $imap->error function is

Re: [Fwd: Re: Problem with function getquotaroot in IMAP::Client]

2009-10-31 Thread Shameem Ahamed
essage > From: Rick Sanders > To: shameem.aha...@yahoo.com > Sent: Fri, October 30, 2009 8:30:21 PM > Subject: [Fwd: Re: Problem with function getquotaroot in IMAP::Client] > > Shameem, > > I posted a reply to your question in perl.beginners but it does not seem to &

Re: Problem with function getquotaroot in IMAP::Client

2009-10-30 Thread Peter Scott
On Thu, 29 Oct 2009 23:17:04 +0530, Shameem Ahamed wrote: > I am using the IMAP::Client for automating the quota check for some of > the users. My script was fairly straight, and I ran in to the below > error, while running the script. The error returned by the > $imap->error function is > > Q

Problem with function getquotaroot in IMAP::Client

2009-10-29 Thread Shammi
Hi, I am using the IMAP::Client for automating the quota check for some of the users. My script was fairly straight, and I ran in to the below error, while running the script. The error returned by the $imap->error function is QUOTA not supported for GETQUOTAROOT command at imap.pl As per the

Problem with function getquotaroot in IMAP::Client

2009-10-29 Thread Shameem Ahamed
Hi, I am using the IMAP::Client for automating the quota check for some of the users. My script was fairly straight, and I ran in to the below error, while running the script. The error returned by the $imap->error function is QUOTA not supported for GETQUOTAROOT command at imap.pl As pe

Re: Problem with function overloading

2007-08-04 Thread I don't like SPAM
Hello Tom, thank you very much for your attention! > > eval "require $moduleName"; > > Hm. You say this isn't working for you, but you're not checking the > value of $@ after the evil eval? Ok, you got me :) I did not know $@ - I'll go for it. Promised! Anyway - I'm not sure, whether t

Re: Problem with function overloading

2007-08-02 Thread Tom Phoenix
On 7/29/07, I don't like SPAM <[EMAIL PROTECTED]> wrote: > eval "require $moduleName"; Hm. You say this isn't working for you, but you're not checking the value of $@ after the evil eval? (By the way, unless I missed something, that "require" could load your module, if it loads it at all

Problem with function overloading

2007-07-29 Thread I don't like SPAM
Hello, I have an quite outdated perl-app, that does not work any more. It consists of various objects and a simple plugin-interface. All "static" objects work well, even with function overloading. The plugin-objects do not work as expected any more. I hope, someone can shine me a light ... The p

Re: problem with function

2004-11-29 Thread Ing. Branislav Gerzo
Jenda Krynicky [JK], on Monday, November 29, 2004 at 15:56 (+0100) typed the following: >>my [EMAIL PROTECTED]; JK> my $datenbank = shift(); JK> or JK> my ($datenbank) = @_; heh, this is common mistake, I did it today too, but I found it. I add my suggestion: my $datenbank = $_[0]; --

Re: problem with function

2004-11-29 Thread Jenda Krynicky
From: "E.Horn" <[EMAIL PROTECTED]> > Hello! > Can someone help me with my programm that does not work. > i do not get the mistake. > The output is always the same, if i use &daten_einlesen("nucleotide") > or > > &daten_einlesen("proteine") there is no difference! > What have I done wrong? > > >

Re: problem with function

2004-11-29 Thread Jonathan Paton
In daten_einlesen() you have: my [EMAIL PROTECTED]; which sets $datenbank to the number of elements in @_ (the arguments to the subroutine). You probably want: my ($datenbank) = @_; Or: my $datenbank = shift; Jonathan Paton -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

problem with function

2004-11-29 Thread E.Horn
Hello! Can someone help me with my programm that does not work. i do not get the mistake. The output is always the same, if i use &daten_einlesen("nucleotide") or &daten_einlesen("proteine") there is no difference! What have I done wrong? Regards #!/bin/perl -w use strict; use LWP::Simpl