syslog-ng

Chris Smith chris at realcomputerguy.com
Fri Oct 19 18:52:32 EDT 2007


On Friday 19 October 2007, Anders Norrbring wrote:
> Hi, I need help setting up Cyrus and syslog-ng to have all the Cyrus
> logs in their own files.
>
> It seems like I just cannot get it right, no matter how I try.
> So, I'd be grateful for setup info on syslog-ng to accomplish this.

My distro sets up cyrus to use the local6 facility for logging. I use the 
following lines in my syslog-ng.conf (in their proper sections):
===================================
destination d_local6 { file("/var/log/mail/imapd.log"); };
filter f_local6 { facility(local6); };
log { source(src); filter(f_local6); destination(d_local6); flags(final); };
===================================

Works just fine. I put all of my mail logs in a separate directory 
(/var/log/mail/).
Note - you may have to "touch" the destination file to create it.

-- 
Chris


More information about the Info-cyrus mailing list