Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Have a problem that the piped mails where not processed.
Double and trible checked path, shebang and settings - all is ok.
But not tickets where created from the piped mails.
To ensure that all settings are allright I replaced the content of hesk_pipe.php with this little script
Code: Select all
<?php
$fd = fopen("php://stdin", "r");
$email = "";
while (!feof($fd))
{
$email .= fread($fd, 1024);
}
fclose($fd);
mail(my.email@adress','From my email pipe!','"' . $email . '"');
?>
So I asume there is something going wrong in processing the piped mail.
No idea how I can further investigate this, any hints are welcome.
Regards Bernd