Finally working with fsl again. fsl-l2tool helped some, but a logger type tool that actually read the fsl config would be great. Still struggled with the fsl.postfix configuration. Syntax or other errors in the fsl.postfix file caused postfix to dump core. Ug. Finally found that this works:

   ident (postfix/.+)/.+ q{
       prefix(
           prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
       )
       -> {
           debug: syslog(
               target="remote",
               remotehost="localhost",
               facility="mail",
               ident="postfix"
           )
       }
   };


Skipping the target="remote" would cause a core dump. Shouldn't that be the default (only allowed) value? More importantly, moving the target="remote" attribute also causes bus errors - any idea why:


   ident (postfix/.+)/.+ q{
       prefix(
           prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
       )
       -> {
           debug: syslog(
               target="remote",
               remotehost="localhost",
               facility="mail",
               ident="postfix"
           )
       }
   };

Thanks for your help!

Martin

--
Martin Andrews
[EMAIL PROTECTED]


______________________________________________________________________ The OpenPKG Project www.openpkg.org User Communication List [EMAIL PROTECTED]

Reply via email to