Mail::Sender

2005-04-07 Thread Ravinder Arepally
All, I am having problem when I use multiple users in to or cc list while sending a email. I am using Mail::Sender module. I have a list of email addresses in $toList and I am just using that for to list. I am not getting any email or error message. If I just use on email address like [EMA

RE: Expect prog. doesn't work in background !

2004-07-15 Thread Ravinder Arepally
It works from command line. Problem is when we run it as a cron job. -Original Message- From: Andrew Gaffney [mailto:[EMAIL PROTECTED] Sent: Thursday, July 15, 2004 12:57 PM To: beginners Subject: Re: Expect prog. doesn't work in background ! Ravinder Arepally wrote: > All.

Expect prog. doesn't work in background !

2004-07-15 Thread Ravinder Arepally
All. I wrote this perl program using Expect.pm and this program also works fine in foreground but does NOT work in background (cron job). Any help is greatly appreciated. Thanks #!/usr/local/bin/perl -w use File::Basename; our $debug; use Expect; @ARGV == 1 or die "usage: $0 rem_host rem_u

Calling Expect Script From a Perl Program

2004-07-14 Thread Ravinder Arepally
Calling Expect Script From a Perl Program, the perl program works fine when executed in foreground (i.e on command line) but its does not working in back ground (i.e schedule in a cron)..but if I call the same expect script from a shell program it works both in back ground and foreground. Your he

RE: FW: :DOM::Parser question !

2004-06-08 Thread Ravinder Arepally
Thanks for your reply, Deane. It should work from the code, but I don't understand why it isn't. Annoying to me. Any pointers ? -Ravi _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 08, 2004 10:28 AM To: Ravinder Arepally Cc: '[EMAIL PROT

FW: :DOM::Parser question !

2004-06-08 Thread Ravinder Arepally
All, Any help regarding below problem is greatly appreciated. My intention is to change value to true. to Thanks, Ravi -Original Message- From: Ravinder Arepally Sent: Monday, June 07, 2004 5:56 PM To: [EMAIL

RE: XML::DOM::Parser question !

2004-06-07 Thread Ravinder Arepally
Thanks, Ravi -Original Message- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED] Sent: Monday, June 07, 2004 8:09 PM To: Ravinder Arepally Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: XML::DOM::Parser question ! Ravinder Arepally wrote: > All, > >

XML::DOM::Parser question !

2004-06-07 Thread Ravinder Arepally
All, I am trying to parse a XML file and change an element value. Below is code of mine where I am doing this. However, setAttribute doesn't work and it doesn't give any error message too. I spent enough time and doesn't make sense to me. I get right value using getAttribute('value). XML file is

File permission problem using File::Find !

2004-04-27 Thread Ravinder Arepally
All, I am seeing weird problem while using File::Find to copy files and directory recursively in a specified directory. What I am trying to do is : 1) I need to copy everything from a specified directory to a known location. 2) It should copy even directories and files. I copied code and pa