[31287] in Perl-Users-Digest
Perl-Users Digest, Issue: 2532 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Fri Jul 31 16:18:50 2009
Date: Fri, 31 Jul 2009 13:18:33 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Fri, 31 Jul 2009 Volume: 11 Number: 2532
Today's topics:
Very Frustrating <schnibitz@gmail.com>
Re: Very Frustrating <tadmc@seesig.invalid>
Re: Very Frustrating <tony_curtis32@yahoo.com>
Re: Very Frustrating <schnibitz@gmail.com>
Re: Very Frustrating <tony_curtis32@yahoo.com>
Re: Very Frustrating <tadmc@seesig.invalid>
Re: Very Frustrating <schnibitz@gmail.com>
Re: Very Frustrating <schnibitz@gmail.com>
Re: Very Frustrating <tadmc@seesig.invalid>
Re: Very Frustrating <schnibitz@gmail.com>
Re: Very Frustrating <schnibitz@gmail.com>
Re: Very Frustrating <schnibitz@gmail.com>
Re: Very Frustrating <glennj@ncf.ca>
Re: Very Frustrating <tadmc@seesig.invalid>
Why failing correcting new line at end of text file <O_TEXT@nospam.fr>
Re: Why failing correcting new line at end of text file <O_TEXT@nospam.fr>
WORLD FAMOUS DIAMOND (RELATE TO TITANIC) <asadads2@gmail.com>
Wrestling champ 'The Rock' prefers comedies to action! <asim.ssat@gmail.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Wed, 29 Jul 2009 17:23:44 -0700 (PDT)
From: schnibitz <schnibitz@gmail.com>
Subject: Very Frustrating
Message-Id: <c3fdb67f-3b28-4d34-ad63-eb50dc18a87b@v23g2000pro.googlegroups.com>
Hi everyone, the following code works from my linux shell as root or
the 'nobody' accounts:
-----------------------------
#!/usr/bin/perl
#use strict;
#use LWP::Simple;
use LWP::UserAgent;
#use URI::URL;
print "Content-type: text/html\n\n";
print <<HTML;
<html>
<head>
<title>TEST</title>
</head>
<body>
HTML
my $url_variable = $input{'URL'};
my $ua = new LWP::UserAgent;
$ua->timeout(120);
my $request = new HTTP::Request('GET', 'http://www.yahoo.com');
my $response = $ua->request($request);
my $content = $response->content();
print "$content";
print <<HTML;
</body>
</html>
</head>
HTML
---------------------------------
BUT when I hit that same .pl file with my browser I get the following
error:
500 Can't connect to www.yahoo.com:80 (Bad hostname 'www.yahoo.com')
Can someone help me please? I'm doing something idiotic, I know, and
anything you could do to help would be appreciated.
-G
------------------------------
Date: Wed, 29 Jul 2009 20:48:52 -0500
From: Tad J McClellan <tadmc@seesig.invalid>
Subject: Re: Very Frustrating
Message-Id: <slrnh71ujl.ddk.tadmc@tadmc30.sbcglobal.net>
schnibitz <schnibitz@gmail.com> wrote:
> #use strict;
You lose all of the benfits of that pragma when you comment
it out like that.
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Wed, 29 Jul 2009 21:53:38 -0500
From: Tony Curtis <tony_curtis32@yahoo.com>
Subject: Re: Very Frustrating
Message-Id: <87k51qev9p.fsf@yahoo.com>
>> On Wed, 29 Jul 2009 20:48:52 -0500,
>> Tad J McClellan <tadmc@seesig.invalid> said:
> schnibitz <schnibitz@gmail.com> wrote:
>> #use strict;
> You lose all of the benfits of that pragma when you
> comment it out like that.
I've been writing perl since 1986 or so, and while
developing, I *always* enable
use strict;
use warnings;
use diagnostics;
I'm good at writing perl, but I'm good enough to know I
make stupid mistakes.
hth
t
------------------------------
Date: Wed, 29 Jul 2009 19:53:50 -0700 (PDT)
From: schnibitz <schnibitz@gmail.com>
Subject: Re: Very Frustrating
Message-Id: <ebb43c03-37c2-4359-a73b-e63cca414083@y10g2000prg.googlegroups.com>
On 29 July, 18:48, Tad J McClellan <ta...@seesig.invalid> wrote:
> schnibitz <schnib...@gmail.com> wrote:
> > #use strict;
>
> You lose all of the benfits of that pragma when you comment
> it out like that.
>
> --
> Tad McClellan
> email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
Thank you, I've tried both ways BTW, and it doesn't give me any more
helpful messages. I checked DNS on my server. I can ping the
address, and it resolves to an IP just fine. I've checked the perl
resolver by issuing a special perl command, and it too resolves just
fine. I can wget the site without issue, my /etc/hosts file has two
measly entries, so I don't think that a corrupt hosts file has
anything to do with it. Why would it work command-line, but not when
invoked through the browser?
------------------------------
Date: Wed, 29 Jul 2009 21:59:52 -0500
From: Tony Curtis <tony_curtis32@yahoo.com>
Subject: Re: Very Frustrating
Message-Id: <87fxceeuzb.fsf@yahoo.com>
> Thank you, I've tried both ways BTW, and it doesn't give me any more
> helpful messages. I checked DNS on my server. I can ping the
> address, and it resolves to an IP just fine. I've checked the perl
> resolver by issuing a special perl command, and it too resolves just
> fine. I can wget the site without issue, my /etc/hosts file has two
> measly entries, so I don't think that a corrupt hosts file has
> anything to do with it. Why would it work command-line, but not when
> invoked through the browser?
maybe there's something restricted about the web server?
if it works from the command-line then there's nothing
obviously wrong with the perl logic: maybe there's
something to do with the web server config that breaks
things?
hth
t
------------------------------
Date: Wed, 29 Jul 2009 22:50:24 -0500
From: Tad J McClellan <tadmc@seesig.invalid>
Subject: Re: Very Frustrating
Message-Id: <slrnh725nh.2s5.tadmc@tadmc30.sbcglobal.net>
schnibitz <schnibitz@gmail.com> wrote:
> I've checked the perl
> resolver
What is a perl resolver?
> by issuing a special perl command,
What special perl command is that?
> and it too resolves just
> fine.
> Why would it work command-line, but not when
> invoked through the browser?
Something in the environment is different.
perldoc -q "runs from the command line but not the browser"
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Wed, 29 Jul 2009 20:56:08 -0700 (PDT)
From: schnibitz <schnibitz@gmail.com>
Subject: Re: Very Frustrating
Message-Id: <7ae77fdb-85b7-4250-b02c-bbd7224e0174@d9g2000prh.googlegroups.com>
On 29 July, 19:59, Tony Curtis <tony_curti...@yahoo.com> wrote:
> > Thank you, I've tried both ways BTW, and it doesn't give me any more
> > helpful messages. =A0I checked DNS on my server. =A0I can ping the
> > address, and it resolves to an IP just fine. =A0I've checked the perl
> > resolver by issuing a special perl command, and it too resolves just
> > fine. =A0I can wget the site without issue, my /etc/hosts file has two
> > measly entries, so I don't think that a corrupt hosts file has
> > anything to do with it. =A0Why would it work command-line, but not when
> > invoked through the browser?
>
> maybe there's something restricted about the web server?
>
> if it works from the command-line then there's nothing
> obviously wrong with the perl logic: maybe there's
> something to do with the web server config that breaks
> things?
>
> hth
> t
Hi there, great suggestion, and I'll be doing that from now on. I
added all of that in, and I'm still not getting any helpful errors. I
don't understand why it works in the shell, but not when invoked from
a browser. I know that the browser hits that file from a different
user (nobody I think) and I've tried invoking it from the "nobody"
acct BTW.
Here is the updated code with your suggested additions, and minor
clarifications:
_______________________________________
#!/usr/bin/perl
use strict;
use warnings;
use diagnostics;
#use LWP::Simple;
use LWP::UserAgent;
#use URI::URL;
my $content =3D 0;
my $error =3D 0;
print "Content-type: text/html\n\n";
print <<HTML;
<html>
<head>
<title>TEST</title>
</head>
<body>
HTML
&getpage;
print "$content";
print "$error";
print <<HTML;
</body>
</html>
</head>
HTML
sub getpage {
my $ua =3D new LWP::UserAgent;
$ua->timeout(120);
my $request =3D new HTTP::Request('GET', 'http://www.yahoo.com');
my $response =3D $ua->request($request);
if ($response->is_success) {
$content =3D $response->content;
}
else {
$error =3D $response->status_line, "\n";
}
}
_____________________________________
Any other things I can try?
------------------------------
Date: Wed, 29 Jul 2009 20:57:37 -0700 (PDT)
From: schnibitz <schnibitz@gmail.com>
Subject: Re: Very Frustrating
Message-Id: <8c0ee709-e860-4241-9d4d-9627a68b4e59@d4g2000prc.googlegroups.com>
On 29 July, 19:59, Tony Curtis <tony_curti...@yahoo.com> wrote:
> > Thank you, I've tried both ways BTW, and it doesn't give me any more
> > helpful messages. =A0I checked DNS on my server. =A0I can ping the
> > address, and it resolves to an IP just fine. =A0I've checked the perl
> > resolver by issuing a special perl command, and it too resolves just
> > fine. =A0I can wget the site without issue, my /etc/hosts file has two
> > measly entries, so I don't think that a corrupt hosts file has
> > anything to do with it. =A0Why would it work command-line, but not when
> > invoked through the browser?
>
> maybe there's something restricted about the web server?
>
> if it works from the command-line then there's nothing
> obviously wrong with the perl logic: maybe there's
> something to do with the web server config that breaks
> things?
>
> hth
> t
Hadn't thought of that, I'll check into that possibility. Thank you!
------------------------------
Date: Wed, 29 Jul 2009 23:13:31 -0500
From: Tad J McClellan <tadmc@seesig.invalid>
Subject: Re: Very Frustrating
Message-Id: <slrnh7272s.33t.tadmc@tadmc30.sbcglobal.net>
schnibitz <schnibitz@gmail.com> wrote:
> I
> don't understand why it works in the shell, but not when invoked from
> a browser. I know that the browser hits that file from a different
> user (nobody I think) and I've tried invoking it from the "nobody"
> acct BTW.
If you "think" wrong, then the fact that it runs as nobody is irrelevant.
What is relevant is if it runs from the command line as the same use
that your CGI program runs as.
So the first step is to determine what user your CGI programs run as.
#!/usr/bin/perl
print "Content-Type: text/plain\n\n";
system 'whoami';
> print "$content";
perldoc -q vars
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Wed, 29 Jul 2009 22:01:53 -0700 (PDT)
From: schnibitz <schnibitz@gmail.com>
Subject: Re: Very Frustrating
Message-Id: <c956a4bc-4a8b-4388-856e-9841ad0d1edf@k13g2000prh.googlegroups.com>
On 29 July, 21:13, Tad J McClellan <ta...@seesig.invalid> wrote:
> schnibitz <schnib...@gmail.com> wrote:
> > I
> > don't understand why it works in the shell, but not when invoked from
> > a browser. =A0I know that the browser hits that file from a different
> > user (nobody I think) and I've tried invoking it from the "nobody"
> > acct BTW.
>
> If you "think" wrong, then the fact that it runs as nobody is irrelevant.
>
> What is relevant is if it runs from the command line as the same use
> that your CGI program runs as.
>
> So the first step is to determine what user your CGI programs run as.
>
> =A0 =A0 #!/usr/bin/perl
> =A0 =A0 print "Content-Type: text/plain\n\n";
> =A0 =A0 system 'whoami';
>
> > print "$content";
>
> =A0 =A0 perldoc -q vars
>
> --
> Tad McClellan
> email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
Hi Tad, fair enough, I removed the quotes. I normally don't use them,
but I started just trying anything (yeah I'm that desperate). Anyway,
I added the "system 'whoami';" command, and it shows "apache" instead
of "nobody". So I su to "apache" and ran the script again.
Flawless. Not a single error or anything thrown that I can see.
Still getting "bad hostname" error when accessed from the browser.
------------------------------
Date: Wed, 29 Jul 2009 22:26:05 -0700 (PDT)
From: schnibitz <schnibitz@gmail.com>
Subject: Re: Very Frustrating
Message-Id: <d36d3afb-ab38-46bb-877e-e131947a8ab3@a37g2000prf.googlegroups.com>
On 29 July, 22:01, schnibitz <schnib...@gmail.com> wrote:
> On 29 July, 21:13, Tad J McClellan <ta...@seesig.invalid> wrote:
>
>
>
> > schnibitz <schnib...@gmail.com> wrote:
> > > I
> > > don't understand why it works in the shell, but not when invoked from
> > > a browser. =A0I know that the browser hits that file from a different
> > > user (nobody I think) and I've tried invoking it from the "nobody"
> > > acct BTW.
>
> > If you "think" wrong, then the fact that it runs as nobody is irrelevan=
t.
>
> > What is relevant is if it runs from the command line as the same use
> > that your CGI program runs as.
>
> > So the first step is to determine what user your CGI programs run as.
>
> > =A0 =A0 #!/usr/bin/perl
> > =A0 =A0 print "Content-Type: text/plain\n\n";
> > =A0 =A0 system 'whoami';
>
> > > print "$content";
>
> > =A0 =A0 perldoc -q vars
>
> > --
> > Tad McClellan
> > email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
>
> Hi Tad, fair enough, I removed the quotes. =A0I normally don't use them,
> but I started just trying anything (yeah I'm that desperate). =A0Anyway,
> I added the "system 'whoami';" command, and it shows "apache" instead
> of "nobody". =A0So I su to "apache" and ran the script again.
> Flawless. =A0Not a single error or anything thrown that I can see.
> Still getting "bad hostname" error when accessed from the browser.
Okay, one other quick thing . . . So when I add the IP for www.yahoo.com
into the /etc/hosts file, here's what I get when I run it from my
browser now:
0500 Can't connect to www.yahoo.com:80 (Permission denied)
Different message. Anyone make anything of that?
------------------------------
Date: Wed, 29 Jul 2009 22:40:22 -0700 (PDT)
From: schnibitz <schnibitz@gmail.com>
Subject: Re: Very Frustrating
Message-Id: <5fc5db4e-2256-46f0-aa7f-738362920ace@x25g2000prf.googlegroups.com>
On 29 July, 22:01, schnibitz <schnib...@gmail.com> wrote:
> On 29 July, 21:13, Tad J McClellan <ta...@seesig.invalid> wrote:
>
>
>
> > schnibitz <schnib...@gmail.com> wrote:
> > > I
> > > don't understand why it works in the shell, but not when invoked from
> > > a browser. =A0I know that the browser hits that file from a different
> > > user (nobody I think) and I've tried invoking it from the "nobody"
> > > acct BTW.
>
> > If you "think" wrong, then the fact that it runs as nobody is irrelevan=
t.
>
> > What is relevant is if it runs from the command line as the same use
> > that your CGI program runs as.
>
> > So the first step is to determine what user your CGI programs run as.
>
> > =A0 =A0 #!/usr/bin/perl
> > =A0 =A0 print "Content-Type: text/plain\n\n";
> > =A0 =A0 system 'whoami';
>
> > > print "$content";
>
> > =A0 =A0 perldoc -q vars
>
> > --
> > Tad McClellan
> > email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
>
> Hi Tad, fair enough, I removed the quotes. =A0I normally don't use them,
> but I started just trying anything (yeah I'm that desperate). =A0Anyway,
> I added the "system 'whoami';" command, and it shows "apache" instead
> of "nobody". =A0So I su to "apache" and ran the script again.
> Flawless. =A0Not a single error or anything thrown that I can see.
> Still getting "bad hostname" error when accessed from the browser.
Okay, last post I swear. That last error got me to realize that
selinux was hurting me. It would not allow my script to open up a
port. Thank you to everyone for bearing with me, and hopefully this
will help some poor soul out there.
------------------------------
Date: 30 Jul 2009 10:14:29 GMT
From: Glenn Jackman <glennj@ncf.ca>
Subject: Re: Very Frustrating
Message-Id: <slrnh72sk8.c4.glennj@smeagol.ncf.ca>
At 2009-07-29 10:53PM, "Tony Curtis" wrote:
> I've been writing perl since 1986 or so, and while
> developing, I *always* enable
>
> use strict;
> use warnings;
> use diagnostics;
And for CGI scripts,
use CGI::Carp qw{fatalsToBrowser};
to show 'die' messages in your browser in addition to the web server
error log.
--
Glenn Jackman
Write a wise saying and your name will live forever. -- Anonymous
------------------------------
Date: Thu, 30 Jul 2009 09:45:48 -0500
From: Tad J McClellan <tadmc@seesig.invalid>
Subject: Re: Very Frustrating
Message-Id: <slrnh73c4b.68e.tadmc@tadmc30.sbcglobal.net>
schnibitz <schnibitz@gmail.com> wrote:
>> Still getting "bad hostname" error when accessed from the browser.
>
> That last error got me to realize that
> selinux was hurting me. It would not allow my script to open up a
> port.
It is traditional to modify the Subject by adding
[Solved]
So that others who are following (or searching) the thread because
they have the same problem can easily figure out which of the
many posts in the thread is the one containing the cause and solution.
But that is moot in this case, since the Subject you chose
is so useless anyway.
> Thank you to everyone for bearing with me, and hopefully this
> will help some poor soul out there.
That is not very likely, as they are not likely to think that
a thread named "Very Frustrating" will have anything to do
with a "bad hostname" message.
Please put the subject of your article in the Subject of your article.
When your mail program asks for "Subject" it is not asking
"how are you feeling right now", it is asking for what you
plan to write about.
You did not write about being frustrated, you wrote about:
Subject: getting "bad hostname" error when accessed from the browser
Have you seen the Posting Guidelines that are posted here frequently?
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Wed, 29 Jul 2009 14:53:04 +0200
From: O_TEXT <O_TEXT@nospam.fr>
Subject: Why failing correcting new line at end of text file
Message-Id: <h4pgnh$2gdl$1@saria.nerim.net>
I did two functions to correct new line at end of text file. One works
the other does not.
A text file generally ends by one new line, but sometimes does not, for
whatever reason. This leaded perl to have both \z and \Z.
The aim of my function is to transform a buffer, appending a new line at
the end of buffer, if missing.
Function/routine test1 does it successfully.
Function/routine test2 appends an excessive new line when new line is
yet present as illustrated by example here after.
Even if I will try to do the job an other way, I wonder why test2 fails?
sub printString ($)
{
my ($v)=@_;
my @val = unpack("U0C*", $v);
for my $i ( @val)
{
printf "%x " , $i ;
}
print "\n" ;
}
sub test1($)
{
my ($v)=@_;
$v =~ s/([^\x{000A}])\z/$1\n/smg ;
return $v;
}
sub test2($)
{
my ($v)=@_;
my $x000a = pack("U0C*", 0x0a); # U+000A <control>
$v =~ s/((?:$x000a)?)\z/\n/smg ;
return $v;
}
sub test($)
{
my ($v)=@_;
printString ($v);
my $r1 = test1($v);
my $r2 = test2($v);
printString ($r1);
printString ($r2);
print "1>" . $r1 . "<1 2>" . $r2 ."<2\n";
}
test (" y\ny\n" );
test (" x\nx" );
------------------------------
Date: Wed, 29 Jul 2009 18:12:16 +0200
From: O_TEXT <O_TEXT@nospam.fr>
Subject: Re: Why failing correcting new line at end of text file
Message-Id: <h4psd0$2k0p$1@saria.nerim.net>
O_TEXT a =E9crit :
> I did two functions to correct new line at end of text file. One works
> the other does not.
>=20
> A text file generally ends by one new line, but sometimes does not, for=
> whatever reason. This leaded perl to have both \z and \Z.
>=20
> The aim of my function is to transform a buffer, appending a new line a=
t
> the end of buffer, if missing.
>=20
> Function/routine test1 does it successfully.
> Function/routine test2 appends an excessive new line when new line is
> yet present as illustrated by example here after.
>=20
> Even if I will try to do the job an other way, I wonder why test2 fails=
?
> $v =3D~ s/((?:$x000a)?)\z/\n/smg ;
In fact, it is related to an extra g in the regular expression. test3
corrects this.
sub printString ($$)
{
my ($h, $v)=3D@_;
my @val =3D unpack("U0C*", $v);
printf "$h: " ;
for my $i ( @val)
{
printf "%x " , $i ;
}
print "\n" ;
}
sub test1($)
{
my ($v)=3D@_;
$v =3D~ s/([^\x{000A}])\z/$1\n/smg ;
return $v;
}
sub test2($)
{
my ($v)=3D@_;
my $x000a =3D pack("U0C*", 0x0a); # U+000A <control>
$v =3D~ s/((?:$x000a)?)\z/\n/smg ;
return $v;
}
sub test3($)
{
my ($v)=3D@_;
my $x000a =3D pack("U0C*", 0x0a); # U+000A <control>
$v =3D~ s/((?:$x000a)?)\z/\n/sm ;
return $v;
}
sub test($)
{
my ($v)=3D@_;
printString ('input', $v);
my $r1 =3D test1($v);
my $r2 =3D test2($v);
my $r3 =3D test3($v);
printString ('test1', $r1);
printString ('test2', $r2);
printString ('test3', $r3);
}
test (" y\ny\n" );
test (" x\nx" );
------------------------------
Date: Thu, 30 Jul 2009 13:22:07 -0700 (PDT)
From: asad <asadads2@gmail.com>
Subject: WORLD FAMOUS DIAMOND (RELATE TO TITANIC)
Message-Id: <01c9bf0a-47d5-4b96-acc9-6fe3899164f0@n11g2000yqb.googlegroups.com>
The famous =94Heart of the Ocean=94 sapphire and diamond necklace was the
only thing actress Kate Winslet wore when Leo famously drew her
portrait in that steamy scene in a little film called Titanic. And the
gorgeous A lister continues to heat up the lens with a provocative
photo shoot for this month=92s Vanity Fair.
The images were shot as a sultry tribute to French actress Catherine
DeNeuve in the classic film, Belle du Jour, and while Winslet doesn=92t
shy away from nudity in her films, she has never bared it all in the
pages of a magazine.
In the accompanying interview, the mother of two, Mia (8) and Joe (5),
says she realizes that the pictures will raise eyebrows among other
mothers on the school run.
"I know when I walk into that classroom in the morning, even if it's
for a split second, at some point I'm being checked out. Some of them
will even say to me, 'OK, what's the secret with the skin?' At which
point I'm like, 'Oh my God, there's no secret. I have make-up on. And
by the way, since I turned 30 I've had an acne problem on my chin.=94
Kate and Leo will team up again in the film Revolutionary Road, about
a couple trapped in marriage in the 1950s. While she won=92t be wearing
the 170-carat sapphire that wowed audiences in Titanic (which later
sold at a benefit auction for a whopping $2.2 million), there are
plenty of steamy scenes between the two stars to keep tongues wagging.
------------------------------
Date: Sun, 26 Jul 2009 03:41:58 -0700 (PDT)
From: asim malik <asim.ssat@gmail.com>
Subject: Wrestling champ 'The Rock' prefers comedies to action!
Message-Id: <68f07a6f-ae23-4b0b-a44c-55dcb5594c59@y10g2000prg.googlegroups.com>
New Delhi, July 25 (IANS) He is six-foot-four-inch tall and a nine-
time world wrestling champion, but contrary to his action image,
Dwayne Johnson alias 'The Rock' loves acting in family entertainers
like his latest film "Race to Witch Mountain".for complete story
visit : www.enf786.blogspot.com
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc. For subscription or unsubscription requests, send
#the single line:
#
# subscribe perl-users
#or:
# unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.
NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.
#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V11 Issue 2532
***************************************