Check-in Number:
|
2422 | |
Date: |
2002-Jul-29 19:43:44 (local)
2002-Jul-29 17:43:44 (UTC) |
User: | rse |
Branch: | |
Comment: |
octal integers are now possible |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/fsl/fsl.pod 1.13 -> 1.14
--- 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<filter> channel filters messages poured in from upper channels.
|
|
ossp-pkg/fsl/fsl.sample.cfg 1.2 -> 1.3
--- 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)
};
|
|