Re: cron perl script won't sendmail

2000-08-27 Thread Gerard MacNeil
On Sun, 27 Aug 2000, Security wrote: > crond likes full pathnames is my first thought. Thats likely why it works > from the command line and not crond. > > Tom > > >Any ideas why the following won't actually send email when run from cron: > > > >#!/usr/bin/perl > ># > > > >open(SENDMAIL,"|sendma

Re: cron perl script won't sendmail

2000-08-27 Thread Gerard MacNeil
On Sun, 27 Aug 2000, Security wrote: > crond likes full pathnames is my first thought. Thats likely why it works > from the command line and not crond. > > Tom > > >Any ideas why the following won't actually send email when run from cron: > > > >#!/usr/bin/perl > ># > > > >open(SENDMAIL,"|sendm

Re: cron perl script won't sendmail

2000-08-27 Thread Security
crond likes full pathnames is my first thought. Thats likely why it works from the command line and not crond. Tom >Any ideas why the following won't actually send email when run from cron: > >#!/usr/bin/perl ># > >open(SENDMAIL,"|sendmail $recipient"); >print SENDMAIL "From: WVFD EMS Dispatch <[

cron perl script won't sendmail

2000-08-27 Thread Pete Templin
Any ideas why the following won't actually send email when run from cron: #!/usr/bin/perl # open(SENDMAIL,"|sendmail $recipient"); print SENDMAIL "From: WVFD EMS Dispatch <[EMAIL PROTECTED]>\n"; print SENDMAIL "To: WVFD EMT <$recipient>\n"; print SENDMAIL "Subject: Possible EMS call\n"; print SE

Re: cron perl script won't sendmail

2000-08-27 Thread Security
crond likes full pathnames is my first thought. Thats likely why it works from the command line and not crond. Tom >Any ideas why the following won't actually send email when run from cron: > >#!/usr/bin/perl ># > >open(SENDMAIL,"|sendmail $recipient"); >print SENDMAIL "From: WVFD EMS Dispatch \

cron perl script won't sendmail

2000-08-27 Thread Pete Templin
Any ideas why the following won't actually send email when run from cron: #!/usr/bin/perl # open(SENDMAIL,"|sendmail $recipient"); print SENDMAIL "From: WVFD EMS Dispatch \n"; print SENDMAIL "To: WVFD EMT <$recipient>\n"; print SENDMAIL "Subject: Possible EMS call\n"; print SENDMAIL "\n"; print