Index: ossp-pkg/fsl/fsl.c RCS File: /v/ossp/cvs/ossp-pkg/fsl/fsl.c,v rcsdiff -q -kk '-r1.18' '-r1.19' -u '/v/ossp/cvs/ossp-pkg/fsl/fsl.c,v' 2>/dev/null --- 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; ) Index: ossp-pkg/fsl/fsl.pod RCS File: /v/ossp/cvs/ossp-pkg/fsl/fsl.pod,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/fsl/fsl.pod,v' 2>/dev/null --- 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) and a logging facility (I) along. B -tries to read the file "CCI". If the file is not -readable, all files matching IC are read. +tries to read the file "CCI". If the file is not +readable, all files matching IC are read. In both cases, all data that has been read in is then parsed for configuration sections. These are identified by "CI" Index: ossp-pkg/fsl/fsl.sample.cfg RCS File: /v/ossp/cvs/ossp-pkg/fsl/Attic/fsl.sample.cfg,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/fsl/Attic/fsl.sample.cfg,v' | diff -u /dev/null - -L'ossp-pkg/fsl/fsl.sample.cfg' 2>/dev/null --- ossp-pkg/fsl/fsl.sample.cfg +++ - 2024-05-16 15:59:41.057909470 +0200 @@ -0,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 Index: ossp-pkg/fsl/l2.sample.cfg RCS File: /v/ossp/cvs/ossp-pkg/fsl/Attic/l2.sample.cfg,v co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/fsl/Attic/l2.sample.cfg,v' | diff -u - /dev/null -L'ossp-pkg/fsl/l2.sample.cfg' 2>/dev/null --- ossp-pkg/fsl/l2.sample.cfg +++ /dev/null 2024-05-16 15:58:30.000000000 +0200 @@ -1,27 +0,0 @@ - - # - # 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