Check-in Number:
|
2332 | |
Date: |
2002-Jul-24 09:57:04 (local)
2002-Jul-24 07:57:04 (UTC) |
User: | thl |
Branch: | |
Comment: |
change prefix from l2. to fsl. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/fsl/fsl.c 1.18 -> 1.19
--- fsl.c 2002/07/23 14:37:50 1.18
+++ fsl.c 2002/07/24 07:57:04 1.19
@@ -64,7 +64,7 @@
#endif
#include "config.h"
-#define FSL_PREFIX "l2."
+#define FSL_PREFIX "fsl."
#define STMT(stuff) do { stuff } while (0)
#define CU(returncode) STMT( rc = returncode; goto CUS; )
|
|
ossp-pkg/fsl/fsl.pod 1.5 -> 1.6
--- fsl.pod 2002/07/23 09:40:38 1.5
+++ fsl.pod 2002/07/24 07:57:04 1.6
@@ -64,8 +64,8 @@
If an application calls openlog(3) it passes an identification string
(I<ident>) and a logging facility (I<facility>) along. B<OSSP l2syslog>
-tries to read the file "C<cfgdir>C</l2.>I<ident>". If the file is not
-readable, all files matching I<cfgdir>C</l2.*> are read.
+tries to read the file "C<cfgdir>C</fsl.>I<ident>". If the file is not
+readable, all files matching I<cfgdir>C</fsl.*> are read.
In both cases, all data that has been read in is then parsed for
configuration sections. These are identified by "C<ident >I<match>"
|
|
ossp-pkg/fsl/fsl.sample.cfg -> 1.1
*** /dev/null Sat Nov 23 01:11:17 2024
--- - Sat Nov 23 01:11:21 2024
***************
*** 0 ****
--- 1,27 ----
+
+ #
+ # SAMPLE FAKESYSLOG 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)
+ };
+
+ 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)
+ };
+
+ 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)
+ };
+
+ # have a nice day
|
|
ossp-pkg/fsl/l2.sample.cfg 1.2 -> 1.3