thanks scott, i saw the errors that was my fault for being tired and a little lazy that night made adjustments to file now i get no errors when doing the syslog-ng --syntax-only<br><br>but I am not getting any logging of the normal items like login attempt and failures and such<br>
<br>the only log i got was below looks like its just the stats and this was in messages and debug not the main log<br><br>Jun 1 11:48:05 mcm-001 syslog-ng[120]: syslog-ng starting up; version='3.0.8'<br>Jun 1 11:58:06 mcm-001 syslog-ng[120]: Log statistics; processed='destination(user)=0', processed='destination(mailwarn)=0', processed='destination(uucp)=0', processed='destination(lpr)=0', processed='destination(daemon)=0', processed='destination(debug)=1', processed='center(received)=0', processed='destination(mailerr)=0', processed='destination(d_syslog)=1', processed='destination(kern)=0', processed='source(src)=1', processed='destination(mailinfo)=0', processed='destination(newsnotice)=0', processed='destination(newserr)=0', processed='destination(messages)=1', processed='destination(authlog)=0', processed='destination(ppp)=0', processed='center(queued)=0', processed='destination(mail)=0', processed='destination(newscrit)=0', processed='destination(cron)=0', processed='src.internal(src#1)=1', stamp='src.internal(src#1)=1306943285', processed='destination(console)=0', processed='destination(console_all)=1'<br>
<br>here is the revised latest config<br><br>@version: 3.0<br>#<br># Syslog-ng example configuration for for Debian GNU/Linux<br>#<br># Copyright (c) 1999 anonymous<br># Copyright (c) 1999 Balazs Scheidler<br># $Id: syslog-ng.conf.sample,v 1.3 2003/05/20 08:57:27 asd Exp $<br>
#<br># Syslog-ng configuration file, compatible with default Debian syslogd<br># installation. <br>#<br><br><br># replaced with Line below fxs options { long_hostnames(off); sync(0); };<br>options { long_hostnames(off); flush_lines(0); };<br>
<br>source src { unix-stream("/var/run/syslog"); internal(); };<br>source net { udp(); };<br><br>destination authlog { file("/var/log/auth.log"); };<br># replaced with Line below fxs destination syslog { file("/var/log/syslog"); };<br>
destination d_syslog { file("/var/log/syslog.log"); };<br>#destination d_syslog { file("/var/log/system.log"); };<br>destination cron { file("/var/log/cron.log"); };<br>destination daemon { file("/var/log/daemon.log"); };<br>
destination kern { file("/var/log/kern.log"); };<br>destination lpr { file("/var/log/lpr.log"); };<br>destination user { file("/var/log/user.log"); };<br>destination uucp { file("/var/log/uucp.log"); };<br>
destination ppp { file("/var/log/ppp.log"); };<br>destination mail { file("/var/log/mail.log"); };<br><br>destination mailinfo { file("/var/log/<a href="http://mail.info">mail.info</a>"); };<br>
destination mailwarn { file("/var/log/mail.warn"); };<br>destination mailerr { file("/var/log/mail.err"); };<br><br>destination newscrit { file("/var/log/news/news.crit"); };<br>destination newserr { file("/var/log/news/news.err"); };<br>
destination newsnotice { file("/var/log/news/news.notice"); };<br><br>destination debug { file("/var/log/debug"); };<br>destination messages { file("/var/log/messages"); };<br>destination console { usertty("root"); };<br>
#destination console_all { file("/dev/tty12"); };<br>destination console_all { file("/dev/console"); };<br>#destination loghost { udp("loghost" port(999)); };<br><br><br>destination xconsole { pipe("/dev/xconsole"); };<br>
<br>filter f_auth { facility(auth); };<br>filter f_authpriv { facility(auth, authpriv); };<br>#Changed it to make it filter the messages from the localO fxs filter f_syslog { not facility(authpriv, mail); };<br>filter f_syslog { facility(local0); };<br>
filter f_cron { facility(cron); };<br>filter f_daemon { facility(daemon); };<br>filter f_kern { facility(kern); };<br>filter f_lpr { facility(lpr); };<br>filter f_mail { facility(mail); };<br>filter f_user { facility(user); };<br>
filter f_uucp { facility(cron); };<br>filter f_ppp { facility(local2); };<br>filter f_news { facility(news); };<br>filter f_debug { not facility(auth, authpriv, news, mail); };<br>filter f_messages { level(info..warn) and not facility(auth, authpriv, mail, news); };<br>
filter f_emergency { level(emerg); };<br><br>filter f_info { level(info); };<br>filter f_notice { level(notice); };<br>filter f_warn { level(warn); };<br>filter f_crit { level(crit); };<br>filter f_err { level(err); };<br>
<br>log { source(src); filter(f_authpriv); destination(authlog); };<br># replaced with Line below fxs log { source(src); filter(f_syslog); destination(syslog); };<br>log { source(src); filter(f_syslog); destination(d_syslog); };<br>
log { source(src); filter(f_cron); destination(cron); };<br>log { source(src); filter(f_daemon); destination(daemon); };<br>log { source(src); filter(f_kern); destination(kern); };<br>log { source(src); filter(f_lpr); destination(lpr); };<br>
log { source(src); filter(f_mail); destination(mail); };<br>log { source(src); filter(f_user); destination(user); };<br>log { source(src); filter(f_uucp); destination(uucp); };<br>log { source(src); filter(f_mail); filter(f_info); destination(mailinfo); };<br>
log { source(src); filter(f_mail); filter(f_warn); destination(mailwarn); };<br>log { source(src); filter(f_mail); filter(f_err); destination(mailerr); };<br>log { source(src); filter(f_news); filter(f_crit); destination(newscrit); };<br>
log { source(src); filter(f_news); filter(f_err); destination(newserr); };<br>log { source(src); filter(f_news); filter(f_notice); destination(newsnotice); };<br>log { source(src); filter(f_debug); destination(debug); };<br>
log { source(src); filter(f_messages); destination(messages); };<br>log { source(src); filter(f_emergency); destination(console); };<br>log { source(src); filter(f_ppp); destination(ppp); };<br>log { source(src); destination(console_all); };<br>
<br><br><br><br><br>
<br><br><div class="gmail_quote">On Wed, Jun 1, 2011 at 6:00 AM, <span dir="ltr"><<a href="mailto:syslog-ng-request@lists.balabit.hu">syslog-ng-request@lists.balabit.hu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Send syslog-ng mailing list submissions to<br>
<a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
<a href="https://lists.balabit.hu/mailman/listinfo/syslog-ng" target="_blank">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a><br>
or, via email, send a message with subject or body 'help' to<br>
<a href="mailto:syslog-ng-request@lists.balabit.hu">syslog-ng-request@lists.balabit.hu</a><br>
<br>
You can reach the person managing the list at<br>
<a href="mailto:syslog-ng-owner@lists.balabit.hu">syslog-ng-owner@lists.balabit.hu</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of syslog-ng digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
1. Re: syslog-ng Digest, Vol 73, Issue 37 (Frank Scalzo)<br>
2. [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
3. [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
4. Re: syslog-ng Digest, Vol 73, Issue 37 (Scott Rochford)<br>
5. [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
6. [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Tue, 31 May 2011 08:51:17 -0400<br>
From: Frank Scalzo <<a href="mailto:fscalzo@gmail.com">fscalzo@gmail.com</a>><br>
Subject: Re: [syslog-ng] syslog-ng Digest, Vol 73, Issue 37<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: <BANLkTikpWETLmnTSzSDL_4Cx4p0=<a href="mailto:gPT%2B6w@mail.gmail.com">gPT+6w@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="windows-1252"<br>
<br>
Gergely,<br>
<br>
sorry after fighting with this for hours i forgot to upload.<br>
<br>
@version: 3.0<br>
#<br>
# Syslog-ng example configuration for for Debian GNU/Linux<br>
#<br>
# Copyright (c) 1999 anonymous<br>
# Copyright (c) 1999 Balazs Scheidler<br>
# $Id: syslog-ng.conf.sample,v 1.3 2003/05/20 08:57:27 asd Exp $<br>
#<br>
# Syslog-ng configuration file, compatible with default Debian syslogd<br>
# installation.<br>
#<br>
<br>
<br>
# replaced with Line below fxs options { long_hostnames(off); sync(0); };<br>
options { long_hostnames(off); flush_lines(0); };<br>
<br>
source src { unix-stream("/var/run/syslog"); internal(); };<br>
source net { udp(); };<br>
<br>
destination authlog { file("/var/log/auth.log"); };<br>
# replaced with Line below fxs destination syslog { file("/var/log/syslog");<br>
};<br>
destination d_syslog { file(?/var/log/system.log?); };<br>
destination cron { file("/var/log/cron.log"); };<br>
destination daemon { file("/var/log/daemon.log"); };<br>
destination kern { file("/var/log/kern.log"); };<br>
destination lpr { file("/var/log/lpr.log"); };<br>
destination user { file("/var/log/user.log"); };<br>
destination uucp { file("/var/log/uucp.log"); };<br>
destination ppp { file("/var/log/ppp.log"); };<br>
destination mail { file("/var/log/mail.log"); };<br>
<br>
destination mailinfo { file("/var/log/<a href="http://mail.info" target="_blank">mail.info</a>"); };<br>
destination mailwarn { file("/var/log/mail.warn"); };<br>
destination mailerr { file("/var/log/mail.err"); };<br>
<br>
destination newscrit { file("/var/log/news/news.crit"); };<br>
destination newserr { file("/var/log/news/news.err"); };<br>
destination newsnotice { file("/var/log/news/news.notice"); };<br>
<br>
destination debug { file("/var/log/debug"); };<br>
destination messages { file("/var/log/messages"); };<br>
destination console { usertty("root"); };<br>
#destination console_all { file("/dev/tty12"); };<br>
destination console_all { file(?/dev/console?); };<br>
#destination loghost { udp("loghost" port(999)); };<br>
<br>
<br>
destination xconsole { pipe("/dev/xconsole"); };<br>
<br>
filter f_auth { facility(auth); };<br>
filter f_authpriv { facility(auth, authpriv); };<br>
#Changed it to make it filter the messages from the localO fxs filter<br>
f_syslog { not facility(authpriv, mail); };<br>
filter f_syslog { facility(local0); };<br>
filter f_cron { facility(cron); };<br>
filter f_daemon { facility(daemon); };<br>
filter f_kern { facility(kern); };<br>
filter f_lpr { facility(lpr); };<br>
filter f_mail { facility(mail); };<br>
filter f_user { facility(user); };<br>
filter f_uucp { facility(cron); };<br>
filter f_ppp { facility(local2); };<br>
filter f_news { facility(news); };<br>
filter f_debug { not facility(auth, authpriv, news, mail); };<br>
filter f_messages { level(info..warn)<br>
and not facility(auth, authpriv, mail, news); };<br>
filter f_emergency { level(emerg); };<br>
<br>
filter f_info { level(info); };<br>
filter f_notice { level(notice); };<br>
filter f_warn { level(warn); };<br>
filter f_crit { level(crit); };<br>
filter f_err { level(err); };<br>
<br>
log { source(src); filter(f_authpriv); destination(authlog); };<br>
# replaced with Line below fxs log { source(src); filter(f_syslog);<br>
destination(syslog); };<br>
log { source(src); filter(f_syslog); destination(d_syslog); };<br>
log { source(src); filter(f_cron); destination(cron); };<br>
log { source(src); filter(f_daemon); destination(daemon); };<br>
log { source(src); filter(f_kern); destination(kern); };<br>
log { source(src); filter(f_lpr); destination(lpr); };<br>
log { source(src); filter(f_mail); destination(mail); };<br>
log { source(src); filter(f_user); destination(user); };<br>
log { source(src); filter(f_uucp); destination(uucp); };<br>
log { source(src); filter(f_mail); filter(f_info); destination(mailinfo); };<br>
log { source(src); filter(f_mail); filter(f_warn); destination(mailwarn); };<br>
log { source(src); filter(f_mail); filter(f_err); destination(mailerr); };<br>
log { source(src); filter(f_news); filter(f_crit); destination(newscrit); };<br>
log { source(src); filter(f_news); filter(f_err); destination(newserr); };<br>
log { source(src); filter(f_news); filter(f_notice);<br>
destination(newsnotice); };<br>
log { source(src); filter(f_debug); destination(debug); };<br>
log { source(src); filter(f_messages); destination(messages); };<br>
log { source(src); filter(f_emergency); destination(console); };<br>
log { source(src); filter(f_ppp); destination(ppp); };<br>
log { source(src); destination(console_all); };<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110531/6b64dd89/attachment.html" target="_blank">http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110531/6b64dd89/attachment.html</a><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Tue, 31 May 2011 16:22:25 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: <<a href="mailto:20110531142225.31EB311E053@lists.balabit.hu">20110531142225.31EB311E053@lists.balabit.hu</a>><br>
Content-Type: text/plain; charset="UTF-8"<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #1 from Balazs Scheidler <<a href="mailto:bazsi@balabit.hu">bazsi@balabit.hu</a>> 2011-05-31 16:22:24 ---<br>
Can you show me your configure command line?<br>
<br>
In dynamic mode it links against those libraries, in mixed mode it doesn't, as it fetches those symbols through the main program, which links these<br>
dependencies statically.<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Tue, 31 May 2011 18:01:32 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: <<a href="mailto:20110531160132.F091739DA75@lists.balabit.hu">20110531160132.F091739DA75@lists.balabit.hu</a>><br>
Content-Type: text/plain; charset="UTF-8"<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #2 from Arkadiusz Mi?kiewicz <<a href="mailto:arekm@maven.pl">arekm@maven.pl</a>> 2011-05-31 18:01:33 ---<br>
I always kept forgetting about these weird linking rules used in syslog-ng<br>
(which break all the time with --as-needed or --no-copy-dt-needed-entries linker flags).<br>
<br>
Build log (including configure options):<br>
<br>
<a href="ftp://buildlogs.pld-linux.org/th/x86_64/FAIL/syslog-ng,9a44d5db-398c-4559-b35c-63d55e241838.bz2" target="_blank">ftp://buildlogs.pld-linux.org/th/x86_64/FAIL/syslog-ng,9a44d5db-398c-4559-b35c-63d55e241838.bz2</a><br>
<br>
BUT it is with a patch:<br>
<br>
<a href="http://cvs.pld-linux.org/cgi-bin/cvsweb/packages/syslog-ng/syslog-ng-link.patch?rev=1.12" target="_blank">http://cvs.pld-linux.org/cgi-bin/cvsweb/packages/syslog-ng/syslog-ng-link.patch?rev=1.12</a><br>
<br>
which fixes linking but links with these dynamicly (since libtool is used for that linking and thus -Bstatic is ignored)<br>
thus breaking "mixed linking" idea.<br>
<br>
So maybe the solution is to fail at configure time when --as-needed or --no-copy-dt-needed-entries linker flags are used?<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Wed, 1 Jun 2011 10:09:06 +1100<br>
From: Scott Rochford <<a href="mailto:scott.rochford@amadeus.com">scott.rochford@amadeus.com</a>><br>
Subject: Re: [syslog-ng] syslog-ng Digest, Vol 73, Issue 37<br>
To: Syslog-ng users' and developers' mailing list<br>
<<a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a>><br>
Message-ID:<br>
<<a href="mailto:OF5ACCBA5A.7E8675AE-ONCA2578A1.007EBEF5-CA2578A1.007F2D1B@amadeus.com">OF5ACCBA5A.7E8675AE-ONCA2578A1.007EBEF5-CA2578A1.007F2D1B@amadeus.com</a>><br>
<br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
Hi Frank,<br>
<br>
Someone must have used a so-called "smart" editor to edit this file, since<br>
it seems to have used fancy quotes on the console line.<br>
<br>
#destination console_all { file("/dev/tty12"); };<br>
destination console_all { file(?/dev/console?); };<br>
#destination loghost { udp("loghost" port(999)); };<br>
<br>
Notice how they are different from those on the line above? Word<br>
processors often replace quotes with matching pairs like that<br>
automatically; only plain text editors should be used to edit config files<br>
like this.<br>
<br>
Check for this kind of thing with a hex dumper or 'cat -vet':<br>
<br>
$ cat frank<br>
#destination console_all { file("/dev/tty12"); };<br>
destination console_all { file("/dev/console"); };<br>
#destination loghost { udp("loghost" port(999)); };<br>
<br>
$ cat -vet frank<br>
#destination console_all { file("/dev/tty12"); };$<br>
destination console_all { file(M-bM-^@M-^\/dev/consoleM-bM-^@M-^]); };$<br>
#destination loghost { udp("loghost" port(999)); };$<br>
<br>
Scott<br>
<br>
<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110601/80342c8a/attachment-0001.htm" target="_blank">http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110601/80342c8a/attachment-0001.htm</a><br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Wed, 1 Jun 2011 08:19:29 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: <<a href="mailto:20110601061929.CC96A39D7DE@lists.balabit.hu">20110601061929.CC96A39D7DE@lists.balabit.hu</a>><br>
Content-Type: text/plain; charset="UTF-8"<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #3 from Balazs Scheidler <<a href="mailto:bazsi@balabit.hu">bazsi@balabit.hu</a>> 2011-06-01 08:19:29 ---<br>
the patch is wrong since it produces _two_ copies of statically compiled libraries into the final executable.<br>
<br>
one in the syslog-ng library, the other in the syslog-ng binary. the only reason it might work as the main<br>
program does very little with glib directly.<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Wed, 1 Jun 2011 08:24:30 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: <<a href="mailto:20110601062431.0252E11E05F@lists.balabit.hu">20110601062431.0252E11E05F@lists.balabit.hu</a>><br>
Content-Type: text/plain; charset="UTF-8"<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #4 from Arkadiusz Mi?kiewicz <<a href="mailto:arekm@maven.pl">arekm@maven.pl</a>> 2011-06-01 08:24:31 ---<br>
That's why I wrote "thus breaking "mixed linking" idea.".<br>
<br>
<br>
I ended up filtering out --as-needed and --no-copy-dt-needed-entries linker flags.<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
syslog-ng maillist - <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
<a href="https://lists.balabit.hu/mailman/listinfo/syslog-ng" target="_blank">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a><br>
<br>
<br>
End of syslog-ng Digest, Vol 74, Issue 1<br>
****************************************<br>
</blockquote></div><br>