RE: Script does not want to run, error

2003-03-05 Thread Eric Peers
Mel, Renamer does not have execute permissions. Do a chmod 755 renamer.pl. Also the script is owned by root, so you will not be able to run it as me. Eric -Original Message- From: mel awaisi [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 2:34 PM To: [EMAIL PROTECTED] Subject

RE: Content Warning from MailScan to Mail-Sender!

2002-06-04 Thread Eric Peers
Take a look at http://www.symantec.com/avcenter/venc/data/w95.hybris.gen.html for details about the worm. Sadly, its no laughing matter. Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Anyone? script was working now doesn't

2002-03-20 Thread Eric Peers
Teresa, Is there more code in your script? I can see that when submitting your form that the error condition below is running instead of some sort of cgi processing. Might be helpful to see what is happening before or after this section of the script. Eric > From: Teresa Raymond <[EMAIL PR

RE: Poll for my site

2002-03-19 Thread Eric Peers
-Original Message- From: Henk van Ess [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 2:11 PM To: [EMAIL PROTECTED] Subject: Re: Poll for my site I just uploaded this VERY simpele script, but whatever I try, it doesn't work. I chmod'ed to 644,655,755,555,666 but it didn't run. W

Re: parsing a domain name out of an email address

2002-03-15 Thread Eric Peers
Thank you. That helped get the script to compile. Neither file is being opened, but that me be a permissions issue. I've expanded the code out a bit (and made a correction to the if/then statement): my $EmailAddress = $to; if ($EmailAddress =~ (/^\w+\@aol\.com$/i)) { my $msg =

parsing a domain name out of an email address

2002-03-15 Thread Eric Peers
I'm attempting to parse a domain name out of a email address with the following code: my $EmailAddress = $to; if ($EmailAddress =~ (/^\w+\@aol\.com)$/i){ my $msg = "/www/docs/sips_mar02aol.txt"; } else my $msg = "/www/docs/sips_mar02.html"; } Being new to regular