Popper (Last modified
【Around the Popper】
POPPER のログをとろう、というか、/var/log/messges の pop関係のログを分離する。

/etc/inetd.conf
pop3    stream  tcp     nowait  root    /usr/local/libexec/popper  \
popper -s -t /var/log/pop.log

touch /var/log/pop.log

/etc/newsyslog.conf
/var/log/pop.log	664  7     *    @T00  Z

kill -HUP `cat /var/run/inetd.pid` 
kill -HUP `cat /var/run/syslog.pid` 

これで、popper のログだけ取り出せます。


Last modified