The sendmail logs will reveal a lot of details, for sure, but this may give you some hints in case you can't find the logs: open (MAIL, "|$mailprog -t >> XXX 2>&1"); Replace XXX with a filepath residing in a dir your www-user can write to, perhaps /tmp/xyz.log (which will not survive a reboot).
Add the empty line after headers as tobyink suggested. And also save the mail contents to local file for further debugging, with something like:
my $fh; if( ! open($fh, '>>', 'XXX') ){ # log error } else { print $fh $email_message."\n-------------\n"; close $fh } $mailprog = '/usr/sbin/sendmail'; open (MAIL, "|$mailprog -t >> XXX 2>&1"); print MAIL $email_message; if( ! close (MAIL) ){ # replace this with your error-logging facility print "Content-type: text/html\n\n"; print "error, command failed with ".($?>>8)."<br>\n" print "message was:<br>\n${email_message}<br>\nEND message<br>\n"; } else { # EDIT: wrapped this in else! print "Location: application-submitted \n\n"; }
In reply to Re: sendmail working for me but not another
by bliako
in thread sendmail working for me but not another
by kickingchicken
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |