Hi,
How can i get logs from postfix?
Nothing is being logged from postfix and it's very annoying if there is a problem i can't see what the problem is without the logs.
I've put this at the end of /usr/syno/etc/syslog-ng.conf , but it doesn't seems to work, because the logfiles are staying empty. What i am doing wrong?
Tia
destination mail { file("/var/log/mail.log"); };
destination maillog { file("/var/log/maillog"); };
destination mailinfo { file("/var/log/mail.info"); };
destination mailwarn { file("/var/log/mail.warn"); };
destination mailerr { file("/var/log/mail.err"); };
filter f_mail { facility(mail); };
log { source(s_local); filter(f_cat); destination(d_all); flags(flow_control); };
log { source(src); filter(f_mail); destination(mail); };
log { source(src); filter(f_mail); destination(maillog); };
log { source(src); filter(f_mail); filter(f_info); destination(mailinfo); };
log { source(src); filter(f_mail); filter(f_warn); destination(mailwarn); };
log { source(src); filter(f_mail); filter(f_err); destination(mailerr); };


