Index: ossp-web/pkg/lib/fsl/faq.wml RCS File: /v/ossp/cvs/ossp-web/pkg/lib/fsl/faq.wml,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-web/pkg/lib/fsl/faq.wml,v' 2>/dev/null --- faq.wml 2003/03/24 19:44:31 1.2 +++ faq.wml 2003/04/03 08:16:22 1.3 @@ -36,17 +36,17 @@
-       $ logger -p mail.info "message"
-       $ tail /var/log/maillog
-       Mar 24 17:01:36 host user: message 
+        $ logger -p mail.info "message"
+        $ tail /var/log/maillog
+        Mar 24 17:01:36 host user: message 
     
-       $ echo "from l2, loc" \
-       | fsl-l2tool 'syslog(facility=mail, ident=info, target="local")'
+        $ echo "from l2, loc" \
+        | fsl-l2tool 'syslog(facility=mail, ident=info, target="local")'
     
@@ -58,35 +58,62 @@ certain order of the remotehost, remoteport an target keywords, see CVS.
-     $ echo "from l2, net" \
-     | fsl-l2tool 'syslog(facility=mail, ident=info, 
-                          remotehost="127.0.0.1", remoteport="514", target="remote")'
-
+        $ echo "from l2, net" \
+        | fsl-l2tool 'syslog(facility=mail, 
+                             ident=info, 
+                             remotehost="127.0.0.1", 
+                             remoteport="514", 
+                             target="remote"
+                             )'
      
-    ##
-    ##  fsl.openssh -- OSSP fsl configuration for openssh
-    ##
-
-    ident (ssh(d|-.+)?|scp|sftp(-server)?)/.+ q{
-        prefix(
-            prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
-        ) 
-        -> {
-            debug: file(
-                path="/usr/opkg/var/openssh/sshd.log",
-                append=1, perm=0644
-            );
-            debug: syslog(
-                facility=mail, ident=info,
-                remotehost="127.0.0.1", remoteport="514", target="remote"
+        ##
+        ##  fsl.openssh -- OSSP fsl configuration for openssh
+        ##
+        ident (ssh(d|-.+)?|scp|sftp(-server)?)/.+ q{
+            prefix(
+                prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
+            ) 
+            -> {
+                debug: file(
+                    path="/usr/opkg/var/openssh/sshd.log",
+                    append=1, perm=0644
+                );
+                debug: syslog(
+                    facility=mail, ident=info,
+                    remotehost="127.0.0.1", remoteport="514", target="remote"
+                )
+            }
+        };
+        ##
+        ##  fsl.postfix -- OSSP fsl configuration for Postfix
+        ##
+        ident (postfix/.+)/.+ q{
+            prefix(
+                prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
             )
-        }
-    };
+            -> {
+                debug: syslog(
+                        facility=mail,
+                            ident=postfix,
+                            remotehost="127.0.0.1",
+                            remoteport="514",
+                            target="remote"
+                )
+            }
+        };
     
+ + + title="How can i find out if a statically linked program is using fsl?"> +
+        $ strings /cw12/sbin/postfix | grep '@(#)OSSP fsl'
+        @(#)OSSP fsl 1.0.8 (13-Feb-2003)
+