Re: sendmail not working

2003-04-05 Thread R. Joseph Newton
mel awaisi wrote: > Hello, > > i have the script below retest.pl, and whe i try to run it i get nothing. > > [EMAIL PROTECTED] cgi-bin]# perl retest.pl > [EMAIL PROTECTED] cgi-bin]# > > -retest.pl > # Open Sendmail > open(MAIL, "|/usr/lib/sendmail -t"); > #

Re: sendmail not working script

2003-04-05 Thread Wiggins d'Anconia
mel awaisi wrote: Hi, this is the whole script: #!/usr/bin/perl use strict; use warnings; # Open Sendmail open(MAIL, "|/usr/lib/sendmail -t"); # Write to the sendmail program print MAIL "To: [EMAIL PROTECTED]"; print MAIL "From: [EMAIL PROTECTED]"; print MAIL "Subject:Yoour Subject\n\n"; print MA

sendmail not working script

2003-04-05 Thread mel awaisi
Hi, this is the whole script: #!/usr/bin/perl use strict; use warnings; # Open Sendmail open(MAIL, "|/usr/lib/sendmail -t"); # Write to the sendmail program print MAIL "To: [EMAIL PROTECTED]"; print MAIL "From: [EMAIL PROTECTED]"; print MAIL "Subject:Yoour Subject\n\n"; print MAIL "Your messsage

sendmail not working

2003-04-05 Thread mel awaisi
Hello, i have the script below retest.pl, and whe i try to run it i get nothing. [EMAIL PROTECTED] cgi-bin]# perl retest.pl [EMAIL PROTECTED] cgi-bin]# -retest.pl # Open Sendmail open(MAIL, "|/usr/lib/sendmail -t"); # Write to the sendmail program print MAI

CGI.pm and sendmail not working together

2001-06-01 Thread David Unthank
Hello All, This script does 2 things - parses form data from a form, then emails it out. Well it parses the data, but doesn't email it; or With different, non-CGI.pm parsing code (from formmail.cgi) it does email out through sendmail. Anybody have any ideas why it doesn't work like this??? R