Re: Apache Logs

2003-10-03 Thread Randal L. Schwartz
> "Mike" == Mike Blezien <[EMAIL PROTECTED]> writes: Mike> I was wondering if someone knows of any Perl Modules that designed to Mike> read and process the various types of apache access_log files like Mike> "common", "combined"..etc ?? You mean, besides Apache::ParseLog, which I immediately

Re: Apache Logs

2003-10-03 Thread Mike Blezien
Randal, yes, I was finally able to find it after I was able to connect to the cpan search web site. seems sometimes the site is not accessiable. appreciate the info. Micaklo >> Randal L. Schwartz wrote: "Mike" == Mike Blezien <[EMAIL PROTECTED]> writes: Mike> I was wondering if someone knows

use GD::Graph::bars

2003-10-03 Thread A L
Thanks for helping me on my previous question; I was able to get it afterwards. I have another question. I am trying to draw a graph. First, I have created @1, @2, @3 within html. This prints out 3 columns with values of each array on the array like below on a browser after calculation: @X

cgi mail script anyone?

2003-10-03 Thread perl
I need to send a mail from the cgi. It must be able to have a reply or sender as someone different from the local web owner (apache). My configuration: redhat 9/qmail/vpopmail The example below will be typically what I want: To: [EMAIL PROTECTED] From: [EMAIL PROTECTED] Subject: "hello support

Re: cgi mail script anyone?

2003-10-03 Thread zsdc
[EMAIL PROTECTED] wrote: I need to send a mail from the cgi. It must be able to have a reply or sender as someone different from the local web owner (apache). See http://search.cpan.org/modlist/Mail_and_Usenet_News/Mail -- ZSDC -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: cgi mail script anyone?

2003-10-03 Thread perl
I'm just trying to send mail from a programming script NOT a real client. For example, a monitor script calculating the disk storage and sending a report/alert via the perl program. I really don't want to add more library or module than necessary. So if you guys can detect something wrong with thi

Re: cgi mail script anyone?

2003-10-03 Thread perl
Thanks, you did good with this code for me. I did not want to load more library as most suggested. This works just fine with only one exception. I needed to use the -t option. Here is the revised version which worked for me: #/usr/bin/perl use strict; use warnings; my $mailprog = '/usr/sbin/sendm