--- fsl.sample.cfg 2002/07/24 07:57:04 1.1
+++ fsl.sample.cfg 2002/07/25 10:14:03 1.2
@@ -1,27 +1,19 @@
-
- #
- # SAMPLE FAKESYSLOG CONFIGURATION FILE
- #
+#
+# SAMPLE FSL CONFIGURATION FILE
+#
ident (.*)a(.*)/(.*)p q{
- debug:
- prefix(prefix="%%b %%d %%H:%%M:%%S <%%L> $1 [%%P]: ",
- timezone=local)
- -> file(path="sendmail.debug.log", append=0,perm=432)
- };
+ debug: prefix(prefix="%b %d %H:%M:%S <%L> $1[%P]: ", timezone=local)
+ -> file(path="sendmail.debug.log", append=0, perm=432)
+};
ident mail/.* q{
- error:
- prefix(prefix="%%b %%d %%H:%%M:%%S <%%L> $1 [%%P]: ",
- timezone=local)
- -> file(path="mail.error.log", append=0,perm=432)
- };
+ error: prefix(prefix="%b %d %H:%M:%S <%L> $1[%P]: ", timezone=local)
+ -> file(path="mail.error.log", append=0, perm=432)
+};
ident news/.* q{
- warning:
- prefix(prefix="%%b %%d %%H:%%M:%%S <%%L> $1 [%%P]: ",
- timezone=local)
- -> file(path="news.warning.log", append=0,perm=432)
- };
+ warning: prefix(prefix="%b %d %H:%M:%S <%L> $1[%P]: ", timezone=local)
+ -> file(path="news.warning.log", append=0, perm=432)
+};
-# have a nice day
|