Hi, I have released syslog-ng 1.1.5, in which I implemented the new filtering code. This version could even be used as a syslogd replacement, since you can use priorities and facilities to direct log messages, though advanced syslog-ng features are not ready yet. Here is a sample configuration file I used to test the code: --- source src { unix-stream /dev/log; }; destination messages { file /dev/tty9; }; destination other { file /dev/tty10; }; filter f_messages { (priority(= info) or priority(= notice) or priority(= warn)) and not facility(auth) and not facility(authpriv) and not facility(cron) and not facility(daemon) and not facility(mail) and not facility(news); }; log { source src; filter f_messages; destination messages; }; log { source src; destination other; }; --- I am going to announce this on freshmeat, please test this version for both program- and build errors. Thanks. -- Bazsi