Subject: | An exec fails silenty |
If the exec of the command given with argument exec_command fails to
start (e.g. Permission denied), it will do it totally silently.
Because of this it might be very difficult to find the problem.
Especially if the command is given in the configuration file by
someone who doesn't know this behaviour.
I tried modifying line 259 to:
exec ($exec_command) or print STDERR "couldn't exec $exec_command: $!";
And it worked for me.