Re: [Perl-unix-users] RFC: Unix Sysadmin perl snippets

2003-09-29 Thread Opeyemi . Bakare
Michael, I am a sys admin myself, albeit of a source control system. Neverthess, I wouldn't mind taking a peek at the code of which you spoke. Cheers. Opeyemi Bakare "Michael A Nachbaur" <[EMAIL PROTECTED]>@listserv.ActiveState.com on 09/29/2003 12:54:31 PM Sent by

Re: [Perl-unix-users] How to keep Perl in sync over a largenumber of servers?

2003-03-24 Thread Opeyemi . Bakare
resistance. Cheers! -Ope Bakare ClearCase Administrator "Wagner, David --- Senior Programmer Analyst --- WGO" <[EMAIL PROTECTED]>@listserv.ActiveState.com on 03/21/2003 12:24:47 PM Sent by:[EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: (bcc: Opeyemi Bakare/WTC1/

Re: [Perl-unix-users] Sending e-mail with attachment

2002-12-10 Thread Opeyemi . Bakare
Try the following modules - Mail::Sendmail Mail::Sender Both are available on CPAN for use. -Opeyemi Bakare ClearCase Administrator "Subrahmanyam Vadlamani" <[EMAIL PROTECTED]> @listserv.ActiveState.com on 12/10/2002 04:43:00 PM Sent by:[EMAIL PROTECTED] To:p

Re: [Perl-unix-users] Is there a regex trick for this?

2002-03-11 Thread Opeyemi . Bakare
PM To: [EMAIL PROTECTED] cc: (bcc: Opeyemi Bakare/WTC1/Empire) Subject: [Perl-unix-users] Is there a regex trick for this? I have an array @exclude_dirs that I want my list of directories matched against, and if it matches, then I want to go on to the next one. I thought I saw someone do som

Re: [Perl-unix-users] strict help needed !!!!

2002-03-05 Thread Opeyemi . Bakare
2002 11:32:02 AM To: [EMAIL PROTECTED] cc: (bcc: Opeyemi Bakare/WTC1/Empire) Subject: [Perl-unix-users] strict help needed I am having a problem with the following script: #!/usr/bin/perl -w use strict; use Spreadsheet::WriteExcel; my $workbook = Spreadsheet::WriteExcel->new(

Re: [Perl-unix-users] Mail Attactments

2002-03-01 Thread Opeyemi . Bakare
Mail::Sendmail -Opie "Gordon Stewart" <[EMAIL PROTECTED]> on 03/01/2002 12:01:33 PM To: "Unix (E-mail)" <[EMAIL PROTECTED]> cc:(bcc: Opeyemi Bakare/WTC1/Empire) Subject: [Perl-unix-users] Mail Attactments Dear List I have written a webmail cgi s

Re: [Perl-unix-users] email question

2002-03-01 Thread Opeyemi . Bakare
l)" <[EMAIL PROTECTED]> cc:(bcc: Opeyemi Bakare/WTC1/Empire) Subject: [Perl-unix-users] email question I'm using the MIME::Entity module to send emails, I have a small question, if I'm using a form on an apache server (site www.metalogicplc.com ), and the user enters his

Re: [Perl-unix-users] Please Help with email app

2002-02-26 Thread Opeyemi . Bakare
I am not sure exactly how to implement this without any code. but forking would be your best bet. fork() is the function name and it is pretty self explanatory... you are creating a child process while the mail script keeps running to completion. You can then have code in the child email th