[9684] in Perl-Users-Digest
Perl-Users Digest, Issue: 3278 Volume: 8
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Jul 28 17:07:33 1998
Date: Tue, 28 Jul 98 14:00:27 -0700
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Tue, 28 Jul 1998 Volume: 8 Number: 3278
Today's topics:
Re: altering formmail.pl <webmaster@ent-media.org>
Re: AutoLogin (-)
Re: best way of diffing two strings (John L. Allen)
Re: Copyright question (-)
Re: Detecting Countries (-)
Re: help with parsing text <rootbeer@teleport.com>
How can I get client's ip address? <fdd@f.com>
Re: How can I get client's ip address? (Josh Kortbein)
Perl and HL-7 <crockett@uic.edu>
Perl Conference 2.0 Hotel Update & Open Source Develope lisam@oreilly.com
Possible to parse textfile on another server? freejak@my-dejanews.com
Re: Possible to parse textfile on another server? (Abigail)
Problems Running An executable from within PERL alan_k'necht@canadalife.com
Re: Simple text file editing script <rootbeer@teleport.com>
site_perl changes from 5.004_04 to 5.005_xx <chrismcc@netus.com>
Re: Sorting for Uniques (Mark-Jason Dominus)
Re: Sorting for Uniques (-)
Re: Try perl on Ms Dos (-)
Re: Uploading Large Files with Perl <bowlin@sirius.com>
Re: Using Perl to Determine default browser (-)
Re: Why can't I "require" a file? <webmaster@ent-media.org>
Re: Y2K problem in PERL with localtime() (John Klassa)
Special: Digest Administrivia (Last modified: 12 Mar 98 (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Tue, 28 Jul 1998 15:41:30 -0400
From: "J.Adams" <webmaster@ent-media.org>
To: Howard Dierking <howard@vortexweb.com>
Subject: Re: altering formmail.pl
Message-Id: <35BE2969.101E373C@ent-media.org>
Howard Dierking wrote:
> here is a block of code from the formmail.pl script
> -------------------------
> # Check for a Return Link and print one if found.
> #
> if ($Config{'return_link_url'} && $Config{'return_link_title'}) {
> print "<center><ul>\n";
>
> print "<li><a
> href=\"$Config{'return_link_url'}\">$Config{'return_link_title'}</a>\n";
>
> ^^^^^^^
> print "</ul></center>\n";
> }
> -------------------------
> where the return link is, I need to put in a target="_top" statment into
> the <a href...> -- only thing is, I can't figure out what perl is doing with
> the quotes (which ones belong to the print() function etc...) Any ideas one
> where to put this, and how to format the quotes that would normally surround
> "_top" ??? Thanks in advance
>
> howard
>
--------------------
if ($Config{'return_link_url'} && $Config{'return_link_title'}) {
print "<center><ul>\n";
print "<li><a
href=\"$Config{'return_link_url'}\"
target=\"_top\">$Config{'return_link_title'}</a>\n";
Done see it ^
--
____________________
One Life, One Love
Peace
J.Adams
LowBudget Ent...
http://ent-media.org/
adamsj@ent-media.org
adamsj@yodelf.com
icq: 1995945
page: wwp.mirabilis.com/1995945
phone:(803)318-0209 -cell
____________________
pppppp eeeeeee aaa cccc eeeeeee
ppppppp eeeeeee aaaaaaa ccccccc eeeeeee
pp ppp eee aa aa cc cc eee
pp ppp eeeeee aa aa cc eeeeee
ppppppp eeeeee aaaaaaa cc eeeeee
pppp eee aaaaaaa cc cc eee
pppp eeeeee aa aa ccccccc eeeeeee
pppp eeeeee aa aa ccccc eeeeeee
-Low Budget designz/Entertainment-
------------------------------
Date: Tue, 28 Jul 1998 20:21:07 GMT
From: root.noharvest.\@not_even\here.com (-)
Subject: Re: AutoLogin
Message-Id: <35be3216.12841718@news2.cais.com>
robert <robert_rg@hotmail.com> Said this:
>Hi,
>
>Is there any way to automate login's to web sites ? When I access any of
>the sites,
>it pops up a login screen and I want to pump in the id/password, the
>equivalent
>of the 'expect' utility.
>
>The reqmt is that, i have a list of subscribed sites (which prompt for
>id/pwd) and
>have to make these sites available to the users, who, are not going to
>type
>in the id and pwd. Meaning, I provide a web page with links pointing to
>the sites,
>with the users clicking on the links and accessing the sites, without
>having
>to type in the id/pwd.
>
First of all, I suspect at least most of these sites that are
expecting subscriptions do not intend for you to "repackage,
rebroadcast, or otherwise redistribute" their content. You might want
to clarify exactly how they word their subscriptions. I can imagine
if you were, for example, subscribing to the WSJ, and then offering
everyone access to your subscription account, they might not be
particularly happy about that, and they may sue you.
Now, if you are legally entitled to do this, what you need is a script
that will retrieve the data and pass it on to the web browser, which
will take care of the login, and maybe even parse the code a bit to
insert your own banner, or whatever.
------------------------------
Date: 28 Jul 1998 14:53:04 -0400
From: allen@gateway.grumman.com (John L. Allen)
Subject: Re: best way of diffing two strings
Message-Id: <6pl6mg$q2b@gateway.grumman.com>
In article <6p9rn2$38ho$1@newssvr04-int.news.prodigy.com>,
news <RABM@prodigy.net> wrote:
>I have two strings $one and $two. I'd like to know the index of the first
>character that is different in the two strings (e.g., "abcdef" vs "abxyef"
>=>
>3rd). I could do it fortran style:
>
>$i=0;$i++ until substr($one,$i,1) ne substr($two,$i,1);
>
>but that seems likely there is a more efficient way I just haven't thought
>of????
Use xor, and the fact that two bytes xor'ed together will be null only
when the two bytes are the same:
$a = "aaaaadaaacaaf";
$b = "aaaaaraaataag";
$_= $a ^ $b;
print "strings differ in positions: ";
print pos, ", " while /\0+/g;
which, when run, will print
strings differ in positions: 5, 9, 12,
Unfortunately, it still does a pattern match.
John.
--
_/JohnL\_allen@gateway.grumman.com <Sun>: 9.5 billion pounds per sec to energy
~\Allen/~Fax: 516-575-7428 <Universe>: 1e22 stars = 22 solar masses per sec
------------------------------
Date: Tue, 28 Jul 1998 20:37:20 GMT
From: root.noharvest.\@not_even\here.com (-)
Subject: Re: Copyright question
Message-Id: <35be342e.13377906@news2.cais.com>
william@host.ott.igs.net (William Wueppelmann) Said this:
>Dustin Cobb (dcobb@cyberrealm.net) wrote:
>: I'm a cgi programmer and I've written many scripts for the ISP I work
>: for. Recently, I've been told by someone else in our company that the
>: scripts that we've written in Perl cannot be copyrighted due to the fact
>: that Perl isn't a compiled language. Therefore, we would have to
>: re-write most of these scripts in another language (like C/C++) to
>: obtain a copyright. Is this true? Can anyone give me an example of
>: some software that is written entirely in Perl and is legitimately
>: copyrighted?
>
>What, really, are you going to copyright? Are you going to patent
>
>$i += 1;
>
>and try to sue anyone who uses it in one of their programs? Or are you
>going to copyright the functionality of your script? (If someone else
>writes a mailto script, are you going to drag them into court because
>they stole your idea?)
>
>Of course, I can't think of a reason why you'd want to copyright your
>scripts either. Unless you are a phenomenally good programmer, I'm fairly
>certain that any script that you've written that is general enough that
>others might want to use it has also been implemented by someone else who
>is willing to make it freely avialable. After all, there is only so much
>you can do with generic CGI scripts, and there are lots of people who
>build them.
>
>
Well, first of all, you're wrong about "there is only so much you can
do" - with perl, like almost any language, it's really "there is
almost nothing you CAN'T do."
As for "concept" versus "code" - I would be more inclined to want to
protect my time and energy, not the idea. I mean, I am more than
willing to share my ideas about how to implement a feature, but what I
wouldn't like is to find out that somebody has been simply taking my
scripts and using them for themselves without my knowledge or
approval. Sure, you can use my scripts to get an idea on how to do it,
but I'd prefer it if you took the time yourself to write your own
program.
I mean, I suppose in this funky world where you can be sued for
helping someone, we could even stretch it a little (well, it's a long
stretch really) to say that not having a copyright statement in your
source code could (albeit unlikely) help you if someone tries to sue
you for some negative affect caused by your programming - I mean, if
they are in violation of your copyright and licensing by using the
code, how can you be liable for any resulting damages?
Even though many bubble-heads got all wrapped up by the announcement
in January by (some company) that they had patented "shopping carts",
the bottom line is, you really can't patent a general concept, and if
you can in terms of administratively getting the patent approved, no
reasonable judge would uphold it. Same goes with copyright. You
have a better chance suing someone for actually USING YOUR code than
you do suing someone for doing the same thing your code does. I mean,
if you can print both scripts out, and every variable name is the
same, the subroutines are the same, the basic flow is the same, you
can probably sue the schmuck's pants off, but if he's just written a
script that also connects with umich.edu to get the weather, I don't
think you stand a chance.
------------------------------
Date: Tue, 28 Jul 1998 20:23:16 GMT
From: root.noharvest.\@not_even\here.com (-)
Subject: Re: Detecting Countries
Message-Id: <35be332c.13120466@news2.cais.com>
Ian Boys <boys@aspentech.com> Said this:
>Scott wrote:
>>
>> You could sell a dongle with it that has a GPS receiver. :-)
>>
>> I'd look at the domain, and if it ends with one of the myriad of USA or the
>> Canadian postfix, you could not let it run.
>>
>
>Hmmm. My email address is boys@aspentech.com. I access the internet
>via an ISP in Boston, MA. Which country am I in?
>
>PS: It is not the USA.
>
England.
------------------------------
Date: Tue, 28 Jul 1998 20:49:53 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: help with parsing text
Message-Id: <Pine.GSO.4.02.9807281349010.16612-100000@user2.teleport.com>
On Tue, 21 Jul 1998, Roman Katsnelson wrote:
> I want to make a hash for each record %value_pairs or something. But
> there are spaces inbetween the words _as well_ as between the words
> and the = sign.
That's all right; spaces are permitted within hash keys. Hope this helps!
--
Tom Phoenix Perl Training and Hacking Esperanto
Randal Schwartz Case: http://www.rahul.net/jeffrey/ovs/
------------------------------
Date: Tue, 28 Jul 1998 22:18:20 +0200
From: "f" <fdd@f.com>
Subject: How can I get client's ip address?
Message-Id: <6plbes$f2u$1@diana.bcn.ibernet.es>
Hi, I've a Web Server and I need to know the ip address of the clients who
press a button in some page, How can I get it?
Thanks.
Answer at: frangar@jet.es
------------------------------
Date: 28 Jul 1998 20:43:29 GMT
From: kortbein@iastate.edu (Josh Kortbein)
Subject: Re: How can I get client's ip address?
Message-Id: <6pld5h$vv3$1@news.iastate.edu>
f (fdd@f.com) wrote:
: Hi, I've a Web Server and I need to know the ip address of the clients who
: press a button in some page, How can I get it?
Read your web server's manual.
Josh
--
__________________________________________
She had heard all about excluded middles;
they were bad shit, to be avoided.
- Thomas Pynchon
------------------------------
Date: Tue, 28 Jul 1998 13:16:36 -0500
From: "Mark D. Crockett, MD" <crockett@uic.edu>
Subject: Perl and HL-7
Message-Id: <6pl4lg$1g0u$1@piglet.cc.uic.edu>
Anyone have any experience with using HL-7 with PERL? Please reply
Mark D. Crockett, MD
crockett@uic.edu
------------------------------
Date: Tue, 28 Jul 1998 11:59:51 -0700
From: lisam@oreilly.com
Subject: Perl Conference 2.0 Hotel Update & Open Source Developers
Message-Id: <35BE1FA7.2C11@oreilly.com>
Rooms at the Fairmont Hotel for the Perl Conference are completely sold
out
so we've made arrangements with the Hilton Hotel for a block of rooms
They're offering the same rate of $169 (plus local taxes)
which is good until August 2, so make your reservations as soon as
possible.
The Hilton is located just two blocks from the Fairmont, a five minute
walk, so you will be able to easily get to the conference without a car
or taxi. Be sure to mention the O'Reilly Perl Conference to get the
special
rate.
San Jose Hilton and Towers
300 Almaden Blvd.
San Jose, CA 95110
408-287-2100
800-HILTONS
Reservations received after August 2 will be accepted based on room and
rate
availability.
If you haven't already signed up for the Perl Conference, don't wait.
Tutorials
are filling and some are likely to be closed very soon.
And don't forget, Perl Conference attendees get a special break if they
want to
attend Open Source Developers Day on Friday, August 21. Open Source
Developers Day is a one day program on how to set up an open source
business
in the real world, with practical information on issues unique to open
source
businesses. Visit the web site for more information:
http://opensource.oreilly.com/osdd
It will be followed by an Open Source Town Meeting, free to Open Source
Developers Day attendees.
------------------------------
Date: Tue, 28 Jul 1998 19:00:17 GMT
From: freejak@my-dejanews.com
Subject: Possible to parse textfile on another server?
Message-Id: <6pl742$gkq$1@nnrp1.dejanews.com>
Hi. Got a quick question for everyone. I want to generate a page with some
data from a text file that resides on another server which is updated every 5
minutes. The external file is on a web server so it is readily available and
public.
My question is, is this possible to import this file with perl or would I have
to run a cron job to ftp the file every 5 minutes or so to my server and parse
it from there?
Thanks
jack
-----== Posted via Deja News, The Leader in Internet Discussion ==-----
http://www.dejanews.com/rg_mkgrp.xp Create Your Own Free Member Forum
------------------------------
Date: 28 Jul 1998 20:58:05 GMT
From: abigail@fnx.com (Abigail)
Subject: Re: Possible to parse textfile on another server?
Message-Id: <6ple0t$kq5$2@client3.news.psi.net>
freejak@my-dejanews.com (freejak@my-dejanews.com) wrote on MDCCXCII
September MCMXCIII in <URL: news:6pl742$gkq$1@nnrp1.dejanews.com>:
++ Hi. Got a quick question for everyone. I want to generate a page with some
++ data from a text file that resides on another server which is updated every 5
++ minutes. The external file is on a web server so it is readily available and
++ public.
++ My question is, is this possible to import this file with perl or would I hav
++ to run a cron job to ftp the file every 5 minutes or so to my server and pars
++ it from there?
NFS mounting? Samba? rsh? UUCP? sendmail + procmail? IRC + triggers?
LPW::UserAgent?
Abigail
--
perl -wle 'print "Prime" if (1 x shift) !~ /^1?$|^(11+?)\1+$/'
------------------------------
Date: Tue, 28 Jul 1998 20:05:22 GMT
From: alan_k'necht@canadalife.com
Subject: Problems Running An executable from within PERL
Message-Id: <35be29d4.26097145@news.worldlinx.com>
Hi, I'm trying to run an executable from within PERL. The program
simply creates a file and writes the date to that file. The executable
runs fine if I run the script from the command prompt. However, when I
run the script from within a browser, it seems that the executable
does not run. I am doing the following:
$return_value = system("test.exe");
When run from the command prompt, the return value is 0.
When run from within a browser, the return value is 256.
I know that the script is running on a NTsystem and I believe the web
server is WebSite.
Any ideas?
------------------------------
Date: Tue, 28 Jul 1998 20:35:35 GMT
From: Tom Phoenix <rootbeer@teleport.com>
Subject: Re: Simple text file editing script
Message-Id: <Pine.GSO.4.02.9807281335080.16612-100000@user2.teleport.com>
On Sun, 26 Jul 1998, Perry Lowe wrote:
> I am looking for a simple script that will edit
> a message.txt file, by means of a webpage form,
> to change the text of a scrolling text applet.
If you're wishing merely to _find_ (as opposed to write) programs,
this newsgroup may not be the best resource for you. There are many
freeware and shareware archives which you can find by searching Yahoo
or a similar service. Hope this helps!
--
Tom Phoenix Perl Training and Hacking Esperanto
Randal Schwartz Case: http://www.rahul.net/jeffrey/ovs/
------------------------------
Date: Tue, 28 Jul 1998 13:30:06 -0700
From: Christopher McCrory <chrismcc@netus.com>
Subject: site_perl changes from 5.004_04 to 5.005_xx
Message-Id: <35BE34CE.B47783EA@netus.com>
Hello...
While compiling perl 5.005_xx I noticed these diferences:
< sitearch='/usr/lib/perl5/site_perl/i686-linux'
< sitearchexp='/usr/lib/perl5/site_perl/i686-linux'
< sitelib='/usr/lib/perl5/site_perl'
< sitelibexp='/usr/lib/perl5/site_perl'
---
> sitearch='/usr/lib/perl5/site_perl/5.00550/i686-linux'
> sitearchexp='/usr/lib/perl5/site_perl/5.00550/i686-linux'
> sitelib='/usr/lib/perl5/site_perl/5.00550'
> sitelibexp='/usr/lib/perl5/site_perl/5.00550'
for 5.005_01 : s/550/501/ .
Is this how it is supposed to be? I haven't tested it but it seems that
this will break any modules previously installed since the search paths
are
different. yes/no?
Thanks
--
Christopher McCrory
Lead Bithead, Netus Inc.
chrismcc@netus.com
admin@netus.com
"Linux: Because rebooting is for adding new hardware"
------------------------------
Date: 28 Jul 1998 15:09:36 -0400
From: mjd@op.net (Mark-Jason Dominus)
Subject: Re: Sorting for Uniques
Message-Id: <6pl7lg$a2j$1@monet.op.net>
In article <01bdba46$79484b60$9596cdcf@hp-customer>,
George H <george@tapestry.net> wrote:
>I am reading an array of clients from a huge file
>and I want to sort it for unique client names.
perlfaq4: "How can I extract just the unique elements of an array?"
------------------------------
Date: Tue, 28 Jul 1998 20:40:45 GMT
From: root.noharvest.\@not_even\here.com (-)
Subject: Re: Sorting for Uniques
Message-Id: <35be36e9.14077313@news2.cais.com>
"George H" <george@tapestry.net> Said this:
>Is there an easy way to sort an array for uniques? ... like the 'sort -u'
>command line in UNIX. I am reading an array of clients from a huge file
>and I want to sort it for unique client names. I was hoping to sort
>without runing a UNIX command.
>
Use a hash.......
$clients{$client_name} = $other_data;
Now, every time another instance of the client name is encountered,
the old value ($other_data) is overwritten with the new value for
$client_data.
You can only have one instance of a particular key in a hash, so this
eliminates duplicates.
------------------------------
Date: Tue, 28 Jul 1998 20:14:00 GMT
From: root.noharvest.\@not_even\here.com (-)
Subject: Re: Try perl on Ms Dos
Message-Id: <35be30c0.12499844@news2.cais.com>
lr@hpl.hp.com (Larry Rosler) Said this:
>[Posted to comp.lang.perl.misc and copy mailed.]
>
>In article <6pkoo4$qu4$2@msunews.cl.msu.edu> on 28 Jul 1998 14:55:00 GMT,
>Dan Nguyen <nguyend7@egr.msu.edu> says...
>> Suruchi <sursood@mail.emirates.net.ae> wrote:
>> : i'm using notepad to make the program.
>>
>> There's your problem, your using notepad. Notepad will not let you
>> save in any extensions it doesn't know about. You'll have to edit the
>> registry and add the pl extension. Hopefully then it should work.
>
>Not so. You can save a file with any extension you want, simply by
>enclosing the entire name within double quotes.
>
Or pulling down the "Save as Type" drop down and selecting "All Files
(*.*)" and then typing in whatever you please.
------------------------------
Date: Tue, 28 Jul 1998 12:17:15 -0700
From: Jim Bowlin <bowlin@sirius.com>
To: kfosburg@power.net
Subject: Re: Uploading Large Files with Perl
Message-Id: <35BE23BB.5F572070@sirius.com>
kfosburg@power.net wrote:
>
> Hello,
>
> I'm using a perl upload script to have users upload their files to a server,
> and have problems with large files (30+ MB). I'm using a script that uses
> CGI_LIB.pl on a SGI O2 running perl 5.002.
>
> The problem is that the perl program uses about 3 times the memory than the
> file size, which pretty much exhausts the available memory leading to
> potential problems. Also, users have no way of knowing how far along their
> transfer is.
The CGI.pm module does not have this problem. Maybe you can get a more recent
Perl running on the SGI since CGI.pm requires 5.004 or better.
HTH -- Jim Bowlin
------------------------------
Date: Tue, 28 Jul 1998 20:25:29 GMT
From: root.noharvest.\@not_even\here.com (-)
Subject: Re: Using Perl to Determine default browser
Message-Id: <35be3370.13188131@news2.cais.com>
scott@softbase.com Said this:
>P.J. Henningson (phenning@phoenix-int.com) wrote:
>> Is it possible to use perl (on WINNT) to determine
>> the users default web browser (IE/Netscape)??
>
>Yes. Kind of. You'd have to use the Registry functions to open
>the file association for HTML documents and read the executable
>associated with it.
>
I think he just misunderstood himself. I suspect he wants to know
what browser is being used to access his site, which would be easy to
detect:
%ENV{USER_AGENT}
you just need to know what values a browser will send in the
user_agent string.
------------------------------
Date: Tue, 28 Jul 1998 15:36:36 -0400
From: "J.Adams" <webmaster@ent-media.org>
To: David Travis <david@system-concepts.com>
Subject: Re: Why can't I "require" a file?
Message-Id: <35BE2843.F122A018@ent-media.org>
this is a very simple question i suggest that you purchase a book on perl..
but check the required file..
on the last line does it have
1;
if that is not there it will not return a true value
David Travis wrote:
> I'm running a Perl script on my ISP's Apache server and it won't let me
> "require" another file. It's not a permissions problem, since the program
> gets past a check to see if the file exists and is readable. Any
> suggestions?
>
> Here's the code fragment:
>
> if (-e "$file" && -r "$file")
> {
> require "$file";
> }
>
> The compiler fails at the require line and complains that $file
> "did not return a true value".
>
> david@system-concepts.com
>
--
____________________
One Life, One Love
Peace
J.Adams
LowBudget Ent...
http://ent-media.org/
adamsj@ent-media.org
adamsj@yodelf.com
icq: 1995945
page: wwp.mirabilis.com/1995945
phone:(803)318-0209 -cell
____________________
pppppp eeeeeee aaa cccc eeeeeee
ppppppp eeeeeee aaaaaaa ccccccc eeeeeee
pp ppp eee aa aa cc cc eee
pp ppp eeeeee aa aa cc eeeeee
ppppppp eeeeee aaaaaaa cc eeeeee
pppp eee aaaaaaa cc cc eee
pppp eeeeee aa aa ccccccc eeeeeee
pppp eeeeee aa aa ccccc eeeeeee
-Low Budget designz/Entertainment-
------------------------------
Date: 28 Jul 1998 20:19:47 GMT
From: klassa@aursgh.aur.alcatel.com (John Klassa)
Subject: Re: Y2K problem in PERL with localtime()
Message-Id: <6plbp3$nnm$1@aurwww.aur.alcatel.com>
On Fri, 24 Jul 1998 18:22:38, Erdem Ozsaruhan <EOZSARUH@nsf.gov> wrote:
> Any ideas?
Yes. Read the documentation. This (a) isn't a bug, (b) is clearly
documented in the perlfunc man page, and (c) has been discussed to death in
this particular newsgroup.
--
John Klassa / Alcatel Telecom / Raleigh, NC, USA <><
------------------------------
Date: 12 Jul 98 21:33:47 GMT (Last modified)
From: Perl-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Special: Digest Administrivia (Last modified: 12 Mar 98)
Message-Id: <null>
Administrivia:
Special notice: in a few days, the new group comp.lang.perl.moderated
should be formed. I would rather not support two different groups, and I
know of no other plans to create a digested moderated group. This leaves
me with two options: 1) keep on with this group 2) change to the
moderated one.
If you have opinions on this, send them to
perl-users-request@ruby.oce.orst.edu.
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.
To submit articles to comp.lang.perl.misc (and this Digest), send your
article to perl-users@ruby.oce.orst.edu.
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.
The Meta-FAQ, an article containing information about the FAQ, is
available by requesting "send perl-users meta-faq". The real FAQ, as it
appeared last in the newsgroup, can be retrieved with the request "send
perl-users FAQ". Due to their sizes, neither the Meta-FAQ nor the FAQ
are included in the digest.
The "mini-FAQ", which is an updated version of the Meta-FAQ, is
available by requesting "send perl-users mini-faq". It appears twice
weekly in the group, but is not distributed in the digest.
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 V8 Issue 3278
**************************************