masqmail-0.2

changeset 32:941f755e2965

fixed man page
author meillo@marmaro.de
date Thu, 06 May 2010 13:24:49 +0200
parents 0267fe9745d5
children e1004fcc93c9
files docs/masqmail.conf.5
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line diff
     1.1 --- a/docs/masqmail.conf.5	Thu May 06 13:02:40 2010 +0200
     1.2 +++ b/docs/masqmail.conf.5	Thu May 06 13:24:49 2010 +0200
     1.3 @@ -229,7 +229,7 @@
     1.4  
     1.5  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.
     1.6  
     1.7 -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).
     1.8 +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).
     1.9  
    1.10  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.
    1.11  
    1.12 @@ -251,12 +251,10 @@
    1.13  
    1.14  \fBonline_pipe = \fIfile\f1\fB\f1
    1.15  
    1.16 -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:
    1.17 +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:
    1.18  
    1.19  #!/bin/sh
    1.20  
    1.21 -
    1.22 -
    1.23  [ \-e /tmp/connect_route ] || exit 1
    1.24  
    1.25  cat /tmp/connect_route