I am having big problems sending email via php scripts.
I have set up a test script...
[PHP]
mail("user@example.com", "Test email", "Test email");
echo "this is an email test";
?> [/PHP]
and watched my maillog
When I run it from root, it works, and the mail is delivered. When I run it from the browser no mail is delivered
In the maillog for the failed attempts I get...
[PHP]Feb 15 21:33:51 servername qmail: 1045344831.225720 new msg 6193285
Feb 15 21:33:51 servername qmail: 1045344831.225790 info msg 6193285: bytes 262 from
Feb 15 21:33:51 servername qmail: 1045344831.228897 end msg 6193285
[/PHP]
Email works fine in cgi scripts from the server, but not via any php scripts on the server
Running 5.0.5 on RH 7.3
Any thoughts?