Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: [Original edit by JustinMason]

From: Matt Kettler Date: Thu, 10 Jun 2004 12:24:14 -0400

No Format

At 03:51 AM 6/10/2004, Bo-Lina teknisk support wrote:

...


>Is there anny way of getting SA logging into a separate file instead of

...


>putting it into syslog?

Actually, I suspect you really have the problem backwards.. Rather than avoiding using syslog with SA, you're probably better off configuring syslog to put log messages where you want them.

Pick an unused local facility ie local5.

Configure SA log to that facility by using the -s parameter.

No Format

         spamd -s local5

Configure your syslogd to dump local5.* into a separate fiefile, and exclude it from your other logs. hereHere's a quick syslog.conf example:

No Format

         *.info;mail.none;authpriv.none;cron.none;local5.none;

...

    /var/log/messages

...


         local5.*;

...

         /var/log/spamassassin

Once you understand how to use syslog properly, you won't have problems like this. After all... syslog IS a pervasive element of unix.You can't avoid it forever. It's better to learn how to use it, rather than trying to figure out how to go around it all the time on a per-program basis.