[15488] in Perl-Users-Digest
Perl-Users Digest, Issue: 2898 Volume: 9
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Fri Apr 28 18:15:41 2000
Date: Fri, 28 Apr 2000 15:15:23 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <956960122-v9-i2898@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Fri, 28 Apr 2000 Volume: 9 Number: 2898
Today's topics:
Re: Raw network traffic <csybrandy@nospam.com>
Re: Raw network traffic <sariq@texas.net>
Re: reading .ost files amarodeeps@my-deja.com
Replacing multiple occurences of newline chars with a s <glchyNOglSPAM@cc21.com.sg.invalid>
Something isn't working, and I can't figure it out <care227@attglobal.net>
Re: String to scalar (Steve)
Re: String to scalar (Craig Berry)
Re: String to scalar <lr@hpl.hp.com>
Where are BEGIN and END documented? (Greg Snow)
Re: Where are BEGIN and END documented? <dwhaskin@earthlink.net>
why is thi not working? <mrsparkle@gamerzuniverse.com>
Re: why is thi not working? <care227@attglobal.net>
Re: why is thi not working? <dwhaskin@earthlink.net>
Re: why is thi not working? <mrsparkle@gamerzuniverse.com>
Re: why is thi not working? <mrsparkle@gamerzuniverse.com>
Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Fri, 28 Apr 2000 15:42:59 -0400
From: csybrandy <csybrandy@nospam.com>
Subject: Re: Raw network traffic
Message-Id: <3909E9C3.44120053@nospam.com>
I assume that will handle TCP/IP. What about UDP? Any others?
Thanks!
csybrandy
Tom Briles wrote:
>
> csybrandy wrote:
> >
> > Is there a way to read in raw network traffic into Perl?
>
> Do you mean IP packets?
>
> There's a Net::RawIP module on CPAN.
>
> - Tom
------------------------------
Date: Fri, 28 Apr 2000 16:05:09 -0500
From: Tom Briles <sariq@texas.net>
Subject: Re: Raw network traffic
Message-Id: <3909FD05.F116958A@texas.net>
[Yet another Jeopardectomy performed]
csybrandy wrote:
>
> Tom Briles wrote:
> >
> > csybrandy wrote:
> > >
> > > Is there a way to read in raw network traffic into Perl?
> >
> > Do you mean IP packets?
> >
> > There's a Net::RawIP module on CPAN.
> >
>
> I assume that will handle TCP/IP. What about UDP? Any others?
Is there some reason that *you* can't perform the CPAN search this time?
- Tom
------------------------------
Date: Fri, 28 Apr 2000 20:26:09 GMT
From: amarodeeps@my-deja.com
Subject: Re: reading .ost files
Message-Id: <8ecs4e$maj$1@nnrp1.deja.com>
Tom,
You make assumptions without being too helpful.
Like this:
> Maybe this is the time to go Open Source. :-)
Maybe I HAVE gone Open Source. Maybe I work in a
position where I have to use non-open source products.
Maybe I am helping a friend or relative who uses Outlook
with a task because they are unwilling to switch to a
non-proprietary email program. Maybe I'm converting
a proprietary format to a non-proprietary format. Maybe
I'm attempting to write an open-source tool to use a
format that is currently unsupported on Linux or other
open source OS.
Also there was this, which had an implicit assumption:
> Well, you can search CPAN.
I have searched CPAN. I guess I should have said so
in the first place: '.ost' brings up nothing. 'outlook'
brings up nothing. 'proprietary format' brings up nothing.
'windows file format' brings up nothing. 'file format'
brings up nothing!! 'specification' brings up nothing!!!
Any suggestions? Look through every category step by step?
I don't have the time. I DON'T WANT TO. That is why I
posted to a newsgroup. I thought, maybe someone has had
experience with this would be gracious enough to share
their knowledge.
If you have no idea, then just say so. Or rather, don't
post. Let someone who does have an idea post.
Don't mean to be so pissy, but I hate it when someone
talks to me as if I were an idiot, especially when they
haven't helped me a lick.
-Dave
In article
<Pine.GSO.4.10.10004280936050.21722-100000@user2.teleport.com>,
Tom Phoenix <rootbeer@redcat.com> wrote:
> On Fri, 28 Apr 2000 amarodeeps@my-deja.com wrote:
>
> > "If there's a module which does what you want, it should be
> > listed in the module list on CPAN."
> >
> > I'm sure that's true, and in fact, I've heard of CPAN!
> > However, I am at a loss as to what category this type
> > of module would fall under.
>
> Well, you can search CPAN.
>
> http://search.cpan.org/
>
> > "If you don't find one to your liking, you're
> > welcome and encouraged to submit one!"
> >
> > I would love to, I just need some info to get me
> > on my way, like, where can I find a file specification
> > for an .ost file?
>
> That sounds like you want to search for the docs, FAQs, and newsgroups
> about programs which use .ost files.
>
> > (Microsoft's site yielded nothing but support information telling
you
> > to back the file up. They wouldn't actually tell you what the
> > specification is)
>
> Maybe this is the time to go Open Source. :-)
>
> --
> Tom Phoenix Perl Training and Hacking Esperanto
> Randal Schwartz Case: http://www.rahul.net/jeffrey/ovs/
>
>
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
Date: Fri, 28 Apr 2000 14:56:42 -0700
From: glchy <glchyNOglSPAM@cc21.com.sg.invalid>
Subject: Replacing multiple occurences of newline chars with a single newline char
Message-Id: <08a723cc.8fa44cfb@usw-ex0101-007.remarq.com>
Hi,
i would like to make use of the power of Regular Expression
matching/parsing in Perl.
I have a string which might contain multiple occurences of
newlines ("\n") at different places and i want to replace all
those newline occurences with only 1 single newline char. Hence
$text should become $text_final:
$text = "a b c d \n \n \n fgh \n i j kl \n \n";
$text_final => "a b c d \n fgh \n i j kl \n";
Ive implement a loop-counter mechanism whereby i count the no.
of "\n"s and if $count > 1, then just substitute with 1
single "\n" char. However, i would like to use the Reg Expr
feature.
Any advice? Thanks!
GC/SG.
* Sent from RemarQ http://www.remarq.com The Internet's Discussion Network *
The fastest and easiest way to search and participate in Usenet - Free!
------------------------------
Date: Fri, 28 Apr 2000 15:14:28 -0400
From: Drew Simonis <care227@attglobal.net>
Subject: Something isn't working, and I can't figure it out
Message-Id: <3909E314.79C23594@attglobal.net>
All,
I have the following code that works, but only kinda. Im still
learning Perl, and Im sure ive made some blunder, but I can't figure
out where.
I know the routine that calls the problematic one is working,
and that the array reference is being passed. On the first run
through print_forms, it discovers there is no file and reads
the array reference, and then does all the things it is supposed
to do, except (I think) create the file with the rest of the array
in it. When the form it generates is submitted, the file is
supposed to exist, be read in to a new array, and then that array
should be processed. If the file exists and is empty, it should
be removed and an All Done sort of message displayed.
On the second run through the routine, that array reference won't
be available and the file hasn't (for some reason) been created!
All file premisions are good, and the UID of the webserver CAN
cwd into that directory from the root and CAN create a new file.
(I tested via su - to the webserver user and had no problems)
The error log does not contain any info. The script behaves as
I would expect it to when neither an array reference nor a file
is available, it gives me the All Done page.
Im confused =(
--------8<-------------------------8<-------------------
sub print_forms{
my $acct = param('acct_id');
print header,
start_html('Branded Account Page Creator'),
h3({-align=>CENTER}, 'Branded Account Page Creator'),
p();
print start_form(-action=>'/cgi-bin/addpage.cgi', -method=>POST),
hidden(-name=>'acct_id', -value=>'$acct'),
p();
my $filename = '/home/httpd/branded_data/' . $acct . '.data';
if (-e $filename){
open (DATA, "< $filename") or
die "can't open $filename: $!";
@page_array = <DATA>;
close DATA;
$val_page = pop @page_array;
chomp $val_page;
if ($page_array[0]){
open (DATA, "> $filename") or
die "can't open $filename: $!";
foreach $page_array (@page_array) {
print DATA $page_array . "\n";
}
close DATA;
}else{
unlink $filename;
}
if (defined $val_page){
($value, $display) = split(':', $val_page);
if ($display eq "spec_num"){
&print_number($value);
}elsif ($display eq "spec_proc"){
&print_proc($value);
}elsif ($display eq "price_plan"){
&print_price($value);
}elsif ($display eq "css_queue"){
&print_queue($value);
}elsif ($display eq "dns"){
&print_dns($value);
}elsif ($display eq "promo"){
&print_promo($value);
}elsif ($display eq "links"){
&print_links($value);
}elsif ($display eq "warez"){
&print_warez($value);
}elsif ($display eq "contacts"){
&print_contacts($value);
}else { &done; }
}else{ &done; }
}else{ # else here takes over if no $filename was available.
# Since the file is set after this subroutine runs the first time,
# and not by &get_form_2, this is a necessary check.
my $page = shift;
my $now = $page->[0];
chomp $now;
my ($value, $firstpage) = split(':', $now);
open (DATA, "> $filename") or die "can't open $filename: $!";
foreach $item (@$page) {
print DATA $item . "\n";
}
close DATA;
if ($firstpage eq "spec_num"){
&print_number($value);
}elsif ($firstpage eq "spec_proc"){
&print_proc($value);
}elsif ($firstpage eq "price_plan"){
&print_price($value);
}elsif ($firstpage eq "css_queue"){
&print_queue($value);
}elsif ($firstpage eq "dns"){
&print_dns($value);
}elsif ($firstpage eq "promo"){
&print_promo($value);
}elsif ($firstpage eq "links"){
&print_links($value);
}elsif ($firstpage eq "warez"){
&print_warez($value);
}elsif ($firstpage eq "contacts"){
&print_contacts($value);
}else { &done; }
}
}
This subroutine is called by this one, which is working well.
--------8<-------------------------8<-------------------
sub get_form_2 {
my @params = param;
my @pages;
# Here we will gather the params from the subroutine &show_form_2. We
will test
# the input to see if the user wanted to use the particular form
function, and if
# so, we stick it in the array joined with an :.
if (param('spec_num') eq 'yes'){
push @pages, param('spec_num_q') . ':spec_num' ;
}
if (param('spec_proc') eq 'yes'){
push @pages, param('spec_proc_q') . ':spec_proc' ;
}
if (param('price_plan') eq 'yes'){
push @pages, param('price_plan_q') . ':price_plan' ;
}
if (param('css_queue') eq 'yes'){
push @pages, param('css_queue_q') . ':css_queue' ;
}
if (param('dns') eq 'yes'){
push @pages, param('dns_q') . ':dns' ;
}
if (param('promo') eq 'yes'){
push @pages, param('promo_q') . ':promo' ;
}
if (param('links') eq 'yes'){
push @pages, param('links_q') . ':links' ;
}
if (param('warez') eq 'yes'){
push @pages, param('warez_q') . ':warez' ;
}
if (param('contacts') eq 'yes'){
push @pages, param('contacts_q') . ':contacts' ;
}
if (@pages){ #making sure that this array is created
&print_forms(\@pages);
}else{
&done;
}
}
------------------------------
Date: 28 Apr 2000 19:43:15 GMT
From: sjlen@ndirect.co.uk (Steve)
Subject: Re: String to scalar
Message-Id: <slrn8gjk5s.efi.sjlen@zero-pps.localdomain>
On Fri, 28 Apr 2000 16:22:40 GMT, schnurmann@my-deja.com wrote:
>I know this is a really dumb question, but how does one get from a
>string that contains a number to a scalar?
>
You've got a string that says "Fri 28 Apr 15:33:45:01 2000" and you
want to play with the elements seperately, assuming that your string
is called $todayword.
@new = split/\s/, $todayword; # this splits it up.
$justfortoday = ("$new[0] $new[1] $new[2] $new[4]"); # puts a selection
# into $justfortoday.
print "$justfortoday \n"; # prints it out.
This prints the date in the form Fri 28 Apr 2000 leaving out the time of
day.
But if you're asking questions like this soundsl like you need to get a
book and spend a lot of time on the man pages aswell, Learning Perl
published by O'Reilly would be a good start.
--
Cheers
Steve email mailto:sjlen@ndirect.co.uk
%HAV-A-NICEDAY Error not enough coffee 0 pps.
web http://www.ndirect.co.uk/~sjlen/
or http://start.at/zero-pps
6:40pm up 1 day, 20:41, 4 users, load average: 1.00, 1.00, 1.00
------------------------------
Date: Fri, 28 Apr 2000 21:01:27 GMT
From: cberry@cinenet.net (Craig Berry)
Subject: Re: String to scalar
Message-Id: <sgjv17t97qo129@corp.supernews.com>
schnurmann@my-deja.com wrote:
: I know this is a really dumb question, but how does one get from a
: string that contains a number to a scalar?
You've already done so. This is like asking how to convert a chunk of
granite into a rock. A string is a scalar, a number is a scalar, and a
string containing a number will magically act like a 'raw' number if you
use it as one. Behold:
/usr2/people/cberry > perl -we 'print "5abc" + 12'
Argument "5abc" isn't numeric in add at -e line 1.
17
Note that -w complains if there's clutter behind a leading number, but
perl still gets the right answer. If the 'abc' weren't there, it would
run without a warning.
This is one of the cooler things about Perl, IMHO.
--
| Craig Berry - cberry@cinenet.net
--*-- http://www.cinenet.net/users/cberry/home.html
| "The road of Excess leads to the Palace
of Wisdom" - William Blake
------------------------------
Date: Fri, 28 Apr 2000 14:26:35 -0700
From: Larry Rosler <lr@hpl.hp.com>
Subject: Re: String to scalar
Message-Id: <MPG.1373a1e96a6c389098a9ad@nntp.hpl.hp.com>
In article <8ecdrs$5gh$1@nnrp1.deja.com> on Fri, 28 Apr 2000 16:22:40
GMT, schnurmann@my-deja.com <schnurmann@my-deja.com> says...
> I know this is a really dumb question, but how does one get from a
> string that contains a number to a scalar?
I think the other responses have interpreted 'contains a number' to mean
'represents a number as a string', which of course makes for trivial
conversion, as pointed out repeatedly.
Let's deal with the interpretation 'contains the representation of a
number within a string'. Then the following gets the number into a
scalar (as a string, but as we know that doesn't matter at all).
Depending on the type of number (signed or unsigned, integer or decimal
with fraction, or scientific notation), one uses an appropriate regular
expression to capture the number. Several such can be found in
perlfaq4, "How do I determine whether a scalar is a
number/whole/integer/float?".
Assuming for utmost simplicity an unsigned decimal integer,
my ($number) = $string =~ /(\d+)/;
It would be wise to check for success before using the result further.
--
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com
------------------------------
Date: 28 Apr 2000 19:54:57 GMT
From: snow@statsci.com (Greg Snow)
Subject: Where are BEGIN and END documented?
Message-Id: <8ecqah$eem$1@junior.statsci.com>
I wanted to look up some details on the syntax of BEGIN and END
blocks, so I went to the standard docs ( version 5.6 activestate )
and looked in the places that seemed obvious to me (perlsyn, perlrun),
they were not there, so I looked in a couple less obvious places
(perlfunc, perlsub), still did not find them (found references to using
them, but this assumed you already knew the details).
So next I did a grep on everything in the directory and found lot's of
mentions of using BEGIN and END blocks, but not an introduction or
details of using them. perldoc and searching at www.perl.com were even
less useful.
Am I missing something? did I manage to skip over that section multiple
times? Am I blind? Or is this a major hole in the docs that needs to
be reported?
Thanks for any pointers, confirmation that I'm not losing it, or
confirmation that I am.
--
-------------------------------------------------------------------------------
Gregory L. Snow | Inertia makes the world go round,
(Greg) | Love makes the trip worth taking.
gsnow@splus.mathsoft.com |
------------------------------
Date: Fri, 28 Apr 2000 20:33:26 GMT
From: Denis Haskin <dwhaskin@earthlink.net>
Subject: Re: Where are BEGIN and END documented?
Message-Id: <3909F542.96BEF799@earthlink.net>
Looks like the most complete descriptions of those are in perlmod.
dwh
Greg Snow wrote:
> I wanted to look up some details on the syntax of BEGIN and END
> blocks, so I went to the standard docs ( version 5.6 activestate )
> and looked in the places that seemed obvious to me (perlsyn, perlrun),
> they were not there, so I looked in a couple less obvious places
> (perlfunc, perlsub), still did not find them ...
------------------------------
Date: Fri, 28 Apr 2000 16:04:12 -0400
From: "Brian Smith" <mrsparkle@gamerzuniverse.com>
Subject: why is thi not working?
Message-Id: <sgjrmhd37qo180@corp.supernews.com>
#!/usr/bin/perl
print "hello" ;
that script should have the output of hello, but im getting internal server
errors.. i know for a fact the location of perl is right.. and everything is
chmoded correctly.. heres a link to what i mean
http://www.gamerzuniverse.com/cgi-bin/myperl/hello.pl
anyone ever experience this?
--
================================
Brian Smith
Perl Coder / Webmaster
eMail: mrsparkle@gamerzuniverse.com
ICQ: 36232576
www.gamerzuniverse.com
================================
------------------------------
Date: Fri, 28 Apr 2000 16:15:59 -0400
From: Drew Simonis <care227@attglobal.net>
Subject: Re: why is thi not working?
Message-Id: <3909F17F.3D3508FA@attglobal.net>
Wrong group, really.
This is a FAQ, and Id recomend you read them. They really are helpfull
and you'll learn alot. http://www.perl.com.
The problem is that you are outputting to a browser, which expects to
see a valid HTML header. You aren't giving it that.
print "content type: text/html"; BEFORE any other output.
Other CGI specific issues should be directed to the newsgroup
comp.infosystems.www.authoring.cgi
HTH
Brian Smith wrote:
>
> #!/usr/bin/perl
> print "hello" ;
>
> that script should have the output of hello, but im getting internal server
> errors.. i know for a fact the location of perl is right.. and everything is
> chmoded correctly.. heres a link to what i mean
> http://www.gamerzuniverse.com/cgi-bin/myperl/hello.pl
>
> anyone ever experience this?
>
> --
> ================================
> Brian Smith
> Perl Coder / Webmaster
> eMail: mrsparkle@gamerzuniverse.com
> ICQ: 36232576
> www.gamerzuniverse.com
> ================================
------------------------------
Date: Fri, 28 Apr 2000 20:28:34 GMT
From: Denis Haskin <dwhaskin@earthlink.net>
Subject: Re: why is thi not working?
Message-Id: <3909F41D.9A32B76A@earthlink.net>
I don't know redhat (I'm assuming that's what you're running, by your other
post), but it's probably that your script needs to send valid HTTP back to the
web server, which means at least headers. Try:
#!/usr/bin/perl
print "Content-type: text/plain\n\nhello" ;
Or perhaps something different, if you're not sending text/plain back.
The response page from your url included this text: "More information about this
error may be available in the server error log." If you had consulted the error
log, you probably would have seen something like this:
"trying to GET /met-ln/cgi-bin/hello.pl, cgieng_scan_headers reports: the CGI
program .../hello.pl did not produce a valid header (name without value: got
line "hello")"
(this is Netscape, but I assume you'd see something similar). Error logs are
very handy. <grin>
You might want to look at something like CGI.pm (and others) which handle
annoying details like this for you...
dwh
Brian Smith wrote:
> #!/usr/bin/perl
> print "hello" ;
>
> that script should have the output of hello, but im getting internal server
> errors.. i know for a fact the location of perl is right.. and everything is
> chmoded correctly.. heres a link to what i mean
> http://www.gamerzuniverse.com/cgi-bin/myperl/hello.pl
>
> anyone ever experience this?
>
> --
> ================================
> Brian Smith
> Perl Coder / Webmaster
> eMail: mrsparkle@gamerzuniverse.com
> ICQ: 36232576
> www.gamerzuniverse.com
> ================================
------------------------------
Date: Fri, 28 Apr 2000 16:52:05 -0400
From: "Brian Smith" <mrsparkle@gamerzuniverse.com>
Subject: Re: why is thi not working?
Message-Id: <sgjugfb87qo16@corp.supernews.com>
it's actually
print "Content-type: text/html\n\n";
print 'hello world';
i got help on it.. now it work with above text..
Denis Haskin <dwhaskin@earthlink.net> wrote in message
news:3909F41D.9A32B76A@earthlink.net...
> I don't know redhat (I'm assuming that's what you're running, by your
other
> post), but it's probably that your script needs to send valid HTTP back to
the
> web server, which means at least headers. Try:
>
> #!/usr/bin/perl
> print "Content-type: text/plain\n\nhello" ;
>
> Or perhaps something different, if you're not sending text/plain back.
>
> The response page from your url included this text: "More information
about this
> error may be available in the server error log." If you had consulted the
error
> log, you probably would have seen something like this:
>
> "trying to GET /met-ln/cgi-bin/hello.pl, cgieng_scan_headers reports: the
CGI
> program .../hello.pl did not produce a valid header (name without value:
got
> line "hello")"
>
> (this is Netscape, but I assume you'd see something similar). Error logs
are
> very handy. <grin>
>
> You might want to look at something like CGI.pm (and others) which handle
> annoying details like this for you...
>
> dwh
>
>
> Brian Smith wrote:
>
> > #!/usr/bin/perl
> > print "hello" ;
> >
> > that script should have the output of hello, but im getting internal
server
> > errors.. i know for a fact the location of perl is right.. and
everything is
> > chmoded correctly.. heres a link to what i mean
> > http://www.gamerzuniverse.com/cgi-bin/myperl/hello.pl
> >
> > anyone ever experience this?
> >
> > --
> > ================================
> > Brian Smith
> > Perl Coder / Webmaster
> > eMail: mrsparkle@gamerzuniverse.com
> > ICQ: 36232576
> > www.gamerzuniverse.com
> > ================================
>
>
------------------------------
Date: Fri, 28 Apr 2000 17:31:56 -0400
From: "Brian Smith" <mrsparkle@gamerzuniverse.com>
Subject: Re: why is thi not working?
Message-Id: <sgk0rbmf7qo46@corp.supernews.com>
ok, it worked on my real server that's being hosted by a host.. but when i
try to use that on MY linux box it still is not working.. i think i'm just
not setting up the server right or something..
Brian Smith <mrsparkle@gamerzuniverse.com> wrote in message
news:sgjugfb87qo16@corp.supernews.com...
> it's actually
>
> print "Content-type: text/html\n\n";
> print 'hello world';
>
> i got help on it.. now it work with above text..
>
> Denis Haskin <dwhaskin@earthlink.net> wrote in message
> news:3909F41D.9A32B76A@earthlink.net...
> > I don't know redhat (I'm assuming that's what you're running, by your
> other
> > post), but it's probably that your script needs to send valid HTTP back
to
> the
> > web server, which means at least headers. Try:
> >
> > #!/usr/bin/perl
> > print "Content-type: text/plain\n\nhello" ;
> >
> > Or perhaps something different, if you're not sending text/plain back.
> >
> > The response page from your url included this text: "More information
> about this
> > error may be available in the server error log." If you had consulted
the
> error
> > log, you probably would have seen something like this:
> >
> > "trying to GET /met-ln/cgi-bin/hello.pl, cgieng_scan_headers reports:
the
> CGI
> > program .../hello.pl did not produce a valid header (name without value:
> got
> > line "hello")"
> >
> > (this is Netscape, but I assume you'd see something similar). Error
logs
> are
> > very handy. <grin>
> >
> > You might want to look at something like CGI.pm (and others) which
handle
> > annoying details like this for you...
> >
> > dwh
> >
> >
> > Brian Smith wrote:
> >
> > > #!/usr/bin/perl
> > > print "hello" ;
> > >
> > > that script should have the output of hello, but im getting internal
> server
> > > errors.. i know for a fact the location of perl is right.. and
> everything is
> > > chmoded correctly.. heres a link to what i mean
> > > http://www.gamerzuniverse.com/cgi-bin/myperl/hello.pl
> > >
> > > anyone ever experience this?
> > >
> > > --
> > > ================================
> > > Brian Smith
> > > Perl Coder / Webmaster
> > > eMail: mrsparkle@gamerzuniverse.com
> > > ICQ: 36232576
> > > www.gamerzuniverse.com
> > > ================================
> >
> >
>
>
>
------------------------------
Date: 16 Sep 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 16 Sep 99)
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: The mail to news gateway, and thus the ability to submit articles
| through this service to the newsgroup, has been removed. I do not have
| time to individually vet each article to make sure that someone isn't
| abusing the service, and I no longer have any desire to waste my time
| dealing with the campus admins when some fool complains to them about an
| article that has come through the gateway instead of complaining
| to the source.
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 V9 Issue 2898
**************************************