For those who will encounter this problem, this what I have changed to get logging in zimbra.log for syslog-ng (used a.o. in SuSe 10):
1. edit /etc/syslog-ng/syslog-ng.conf
2. change the following line:
Code:
destination mail { file("/var/log/zimbra.log"); };
log { source(src); filter(f_mail); destination(mail); }; 3. Add these lines at the bottom:
Code:
# Zimbra
destination local0 { file("/var/log/zimbra.log"); };
log { source(src); destination(local0); }; Note: could be that I have to do some fine-tuning but it works for now