# HG changeset patch # User meillo@marmaro.de # Date 1273145089 -7200 # Node ID 941f755e2965f6c6f0fa3035c0ff1a4db62a9220 # Parent 0267fe9745d568da6926b856c942e38e64798a03 fixed man page diff -r 0267fe9745d5 -r 941f755e2965 docs/masqmail.conf.5 --- a/docs/masqmail.conf.5 Thu May 06 13:02:40 2010 +0200 +++ b/docs/masqmail.conf.5 Thu May 06 13:24:49 2010 +0200 @@ -229,7 +229,7 @@ Defines the method MasqMail uses to detect whether there is currently an online connection. It can have the values \fBfile\f1, \fBpipe\f1 or \fBmserver\f1. -When it is set to \fBfile\f1, MasqMail first checks for the existence of \fBonline_file\f1 (see below) and if it exists, it reads it. The content of the file should be the name of the current connection as defined with \fBconnect_route.\fIname\f1\fB\f1 (without a trailing newline character). +When it is set to \fBfile\f1, MasqMail first checks for the existence of \fBonline_file\f1 (see below) and if it exists, it reads it. The content of the file should be the name of the current connection as defined with \fBconnect_route.\fIname\f1\fB\f1 (trailing whitespace is removed). When it is set to \fBpipe\f1, MasqMail calls the executable given by the \fBonline_pipe\f1 option (see below) and reads the current online status from its standard output. @@ -251,12 +251,10 @@ \fBonline_pipe = \fIfile\f1\fB\f1 -This is the name of the executable which will be called to determine the online status. This executable should just print the name oif the current connection to the standard output and return a zero status code. masqmail assumes it is offline if the script returns with a non zero status. Simple example: +This is the name of the executable which will be called to determine the online status. This executable should just print the name of the current connection to the standard output and return a zero status code. masqmail assumes it is offline if the script returns with a non zero status. Simple example: #!/bin/sh - - [ \-e /tmp/connect_route ] || exit 1 cat /tmp/connect_route