postfix-users October 2011 archive
Main Archive Page > Month Archives  > postfix-users archives
postfix-users: Re: .forward ignored

Re: .forward ignored

From: Wietse Venema <wietse_at_nospam>
Date: Thu Oct 13 2011 - 18:36:08 GMT
To: Postfix users <postfix-users@postfix.org>

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