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
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
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
&
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
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
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
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
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
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
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];
--
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?
>
>
>
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
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
13 matches
Mail list logo