View Single Post
  #3 (permalink)  
Old 09-03-2006, 10:13 AM
martinm_76 martinm_76 is offline
Junior Member
 
Posts: 9
Smile

Thank you. Found it in the wiki. I did read most of the administation guide and the full installation guide, but I probably stared myself blind because I was certain this would be handled in the GUI. Shame on me...

I have one more note though that may be of use to someone. SUSE Enterprise Linux 10 (and SUSE 10.1) uses syslog-ng as default and have a fair amount of dependencies on it.

Use the following to get the things logged to zimbra.log like with syslog:

/etc/syslog-ng/syslog-ng.conf.in:
...
filter f_zimbra { facility(local0,mail); };
...
# Zimbra
destination zimbra { file("/var/log/zimbra.log"); };
log { source(src); filter(f_zimbra); destination(zimbra); };

Then run 'SuSEconfig --module syslog-ng'.

I'll do my research from now on
Reply With Quote