I currently have qmail logging via syslog to maillog. I would like to
change the log files to log to the /var/log/qmail dir.
This is my rc file.
#!/bin/sh
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start ./Mailbox splogger qmail
as u see it uses the splogger..
I've found one example but it uses cyclog which I can't find in the
latest daemontools where it should be? It goes something like this..
#!/bin/sh
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start ./Mailbox /usr/local/bin/accustamp \
| setuser qmaill /usr/local/bin/cyclog /var/log/qmail &
In short, can I use splogger or any other log tool to direct logging
to the /var/log/qmail dir & how would the rc file look like?
thanxs..