Nikolaos Milas: > I added in /etc/postfix/main.cf: > debugger_command = > PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin > (strace -p $process_id 2>&1 | logger -p mail.info) & sleep 5
The DEBUG_README example has a ';' between PATH=stuff and '('.
debugger_command =
PATH=/bin:/usr/bin:/usr/local/bin;
(truss -p $process_id 2>&1 | logger -p mail.info) & sleep 5
Without this ';' you have a syntax error.
Wietse
