From owner-freebsd-questions Sat Apr 19 13:22:35 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA07441 for questions-outgoing; Sat, 19 Apr 1997 13:22:35 -0700 (PDT) Received: from ramillia.cguy.com (buxton-18.ime.net [207.242.20.20]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA07435 for ; Sat, 19 Apr 1997 13:22:30 -0700 (PDT) Received: from kimiko.cguy.com (kimiko.cguy.com [10.1.29.1]) by ramillia.cguy.com (8.7.5/8.7.3) with ESMTP id QAA02359; Sat, 19 Apr 1997 16:22:44 GMT Message-Id: <199704191622.QAA02359@ramillia.cguy.com> From: "Gary Chrysler" To: "Andrew" Cc: Subject: Re: -ERR Unknown command: "auth". (Solution) Date: Sat, 19 Apr 1997 16:21:26 -0400 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1155 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I've cc'd -questions to get this into the archives.. On with it.. Actually popper already logs to local0.. :) Once I found that, A little `man syslog.conf` digging and I figured out how to re-direct it to another log and stop it from going to /var/log/messages. As well as gathering a fairly good grip on syslog.conf.. :) Heres the revelent stuff from my /etc/syslog.conf: (Watch the wrap) # /etc/syslog.conf *.notice;kern.debug;lpr,auth.info;mail.crit;local0.none /var/log/messages local0.* /var/log/popper.log Works like a champ.. Thanks all. -Enjoy Gary ~~~~~~~~~~~~~~~~ Improve America's Knowledge... Share yours The Borg... Where minds meet (207) 929-3848 ---------- > From: Andrew > To: Gary Chrysler > Subject: Re: -ERR Unknown command: "auth". > Date: Saturday, April 19, 1997 3:41 AM > > On Sat, 19 Apr 1997, Gary Chrysler wrote: > > > # My /etc/syslog.conf > > *.err;kern.debug;auth.notice;mail.crit /dev/console > > *.notice;kern.debug;lpr,auth.info;mail.crit /var/log/messages > > mail.info /var/log/maillog > > lpr.info /var/log/lpd-errs > > cron.* /var/cron/log > > *.err root > > *.notice;auth.debug root > > *.alert root > > *.emerg * > > local7.* /var/log/tcpd.log > > > > I've tried several things without luck.. Though I must admit I really > > don't understand syslog.. :( > > Popper must log with a certain facilty an a certaion priority...ie mail > is the facility and err is the priority (for example). If the messages are > coming up on the console then it must be matched by: > > > *.err;kern.debug;auth.notice;mail.crit > > I would suggest *.err. You could recompile popper and tell it to log to > its own facility..ie local1 and then you could seperate the messages out. > read man syslog.conf. > > Andrew > >