Index: ossp-pkg/fsl/fsl.pod RCS File: /v/ossp/cvs/ossp-pkg/fsl/fsl.pod,v rcsdiff -q -kk '-r1.13' '-r1.14' -u '/v/ossp/cvs/ossp-pkg/fsl/fsl.pod,v' 2>/dev/null --- fsl.pod 2002/07/27 18:13:32 1.13 +++ fsl.pod 2002/07/29 17:43:44 1.14 @@ -209,17 +209,9 @@ o file (STR path m INT append o [0=truncate|1=append] =1 - INT perm o [decimal] =420 + INT perm o [octal] =0644 ) -Notice: due to a limitation of the current parser only decimal numbers -are accepted, so have fun doing octal to decimal conversion. Here're -some hints: - - rw-rw-rw- \0666 =438 rw-r--r-- \0644 =420 - rw-rw-r-- \0664 =436 rw-r----- \0640 =416 - rw-rw---- \0660 =432 rw------- \0600 =384 - =head2 Filtering Channel (filter) The B channel filters messages poured in from upper channels. Index: ossp-pkg/fsl/fsl.sample.cfg RCS File: /v/ossp/cvs/ossp-pkg/fsl/Attic/fsl.sample.cfg,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/fsl/Attic/fsl.sample.cfg,v' 2>/dev/null --- fsl.sample.cfg 2002/07/25 10:14:03 1.2 +++ fsl.sample.cfg 2002/07/29 17:43:44 1.3 @@ -4,16 +4,16 @@ 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) + -> file(path="sendmail.debug.log", append=0, perm=0644) }; 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) + -> file(path="mail.error.log", append=0, perm=0644) }; 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) + -> file(path="news.warning.log", append=0, perm=0644) };