<div dir="ltr">I cannot configure Postfix logs correctly, the mail.warn and <a href="http://mail.info">mail.info</a> logs are empty.<div>Any helps??<br>Here is my configuration:<br><span style="font-family:monospace"><br>options { chain_hostnames(off); flush_lines(0); use_dns(no); use_fqdn(no);
<br>          owner("root"); group("adm"); perm(0640); stats_freq(0);
<br>          bad_hostname("^gconfd$");
<br>};
<br>
<br>source s_src {
<br>       system();
<br>       internal();
<br>};
<br>
<br>destination d_auth { file("/var/log/auth.log"); };
<br>destination d_cron { file("/var/log/cron.log"); };
<br>destination d_daemon { file("/var/log/daemon.log"); };
<br>destination d_kern { file("/var/log/kern.log"); };
<br>destination d_lpr { file("/var/log/lpr.log"); };
<br>destination d_mail { file("/var/log/mail.log"); };
<br>destination d_syslog { file("/var/log/syslog"); };
<br>destination d_user { file("/var/log/user.log"); };
<br>destination d_uucp { file("/var/log/uucp.log"); };
<br>
<br><br>destination d_mailinfo { file("/var/log/<a href="http://mail.info">mail.info</a>"); };
<br>destination d_mailwarn { file("/var/log/mail.warn"); };
<br>destination d_mailerr { file("/var/log/mail.err"); };
<br>
<br><br>destination d_newscrit { file("/var/log/news/news.crit"); };
<br>destination d_newserr { file("/var/log/news/news.err"); };
<br>destination d_newsnotice { file("/var/log/news/news.notice"); };
<br>
<br><br>destination d_debug { file("/var/log/debug"); };
<br>destination d_error { file("/var/log/error"); };
<br>destination d_messages { file("/var/log/messages"); };
<br>
<br><br>destination d_console { usertty("root"); };
<br><br>destination d_console_all { file(`tty10`); };
<br>
<br><br>destination d_xconsole { pipe("/dev/xconsole"); };
<br>
<br>log_fifo_size(1000)); };
<br>
<br>destination d_ppp { file("/var/log/ppp.log"); };
<br><br>filter f_dbg { level(debug); };
<br>filter f_info { level(info); };
<br>filter f_notice { level(notice); };
<br>filter f_warn { level(warn); };
<br>filter f_err { level(err); };
<br>filter f_crit { level(crit .. emerg); };
<br>
<br>filter f_debug { level(debug) and not facility(auth, authpriv, news, mail); };
<br>filter f_error { level(err .. emerg) ; };
<br>filter f_messages { level(info,notice,warn) and  <br>                    not facility(auth,authpriv,cron,daemon,mail,news); };
<br>
<br>filter f_auth { facility(auth, authpriv) and not filter(f_debug); };
<br>filter f_cron { facility(cron) and not filter(f_debug); };
<br>filter f_daemon { facility(daemon) and not filter(f_debug); };
<br>filter f_kern { facility(kern) and not filter(f_debug); };
<br>filter f_lpr { facility(lpr) and not filter(f_debug); };
<br>filter f_local { facility(local0, local1, local3, local4, local5,
<br>                        local6, local7) and not filter(f_debug); };
<br>filter f_mail { facility(mail) and not filter(f_debug); };
<br>filter f_news { facility(news) and not filter(f_debug); };
<br>filter f_syslog3 { not facility(auth, authpriv, mail) and not filter(f_debug); };
<br>filter f_user { facility(user) and not filter(f_debug); };
<br>filter f_uucp { facility(uucp) and not filter(f_debug); };
<br>
<br>filter f_cnews { level(notice, err, crit) and facility(news); };
<br>filter f_cother { level(debug, info, notice, warn) or facility(daemon, mail); };
<br>
<br>filter f_ppp { facility(local2) and not filter(f_debug); };
<br>filter f_console { level(warn .. emerg); };
<br>
<br>########################
<br># Log paths
<br>########################
<br>log { source(s_src); filter(f_auth); destination(d_auth); };
<br>log { source(s_src); filter(f_cron); destination(d_cron); };
<br>log { source(s_src); filter(f_daemon); destination(d_daemon); };
<br>log { source(s_src); filter(f_kern); destination(d_kern); };
<br>log { source(s_src); filter(f_lpr); destination(d_lpr); };
<br>log { source(s_src); filter(f_syslog3); destination(d_syslog); };
<br>log { source(s_src); filter(f_user); destination(d_user); };
<br>log { source(s_src); filter(f_uucp); destination(d_uucp); };
<br>
<br>log { source(s_src); filter(f_mail); destination(d_mail); };
<br><br>log { source(s_src); filter(f_news); filter(f_crit); destination(d_newscrit); };
<br>log { source(s_src); filter(f_news); filter(f_err); destination(d_newserr); };
<br>log { source(s_src); filter(f_news); filter(f_notice); destination(d_newsnotice); };
<br><br>log { source(s_src); filter(f_debug); destination(d_debug); };
<br>log { source(s_src); filter(f_error); destination(d_error); };
<br>log { source(s_src); filter(f_messages); destination(d_messages); };
<br>
<br>log { source(s_src); filter(f_console); destination(d_console_all);
<br>                                    destination(d_xconsole); };
<br>log { source(s_src); filter(f_crit); destination(d_console); };<br>
<br></span></div></div>