Mercurial > masqmail
comparison man/masqmail.route.5 @ 171:15b3c71254cb
documented the wrapper option of route files better
plus a small typo fix
author | meillo@marmaro.de |
---|---|
date | Wed, 14 Jul 2010 00:54:28 +0200 |
parents | 4aa6b6e18a13 |
children | 1472a6a73b1c |
comparison
equal
deleted
inserted
replaced
169:d1c53e76096f | 171:15b3c71254cb |
---|---|
49 | 49 |
50 Default is false. | 50 Default is false. |
51 The reason for this is that masqmail is designed for non permanent internet connections, | 51 The reason for this is that masqmail is designed for non permanent internet connections, |
52 where such errors may occur quite often, and a bounce would be annoying. | 52 where such errors may occur quite often, and a bounce would be annoying. |
53 | 53 |
54 For the default local_net route is is set to true. | 54 For the default local_net route it is set to true. |
55 | 55 |
56 .TP | 56 .TP |
57 \fBhelo_name\fR = \fIstring\fR | 57 \fBhelo_name\fR = \fIstring\fR |
58 | 58 |
59 Set the name given with the HELO/EHLO command. If this is not set, | 59 Set the name given with the HELO/EHLO command. If this is not set, |
265 \fIcommand\fR will be called and all traffic will be piped to its stdin and from its stdout. | 265 \fIcommand\fR will be called and all traffic will be piped to its stdin and from its stdout. |
266 Purpose is to tunnel ip traffic, eg. for ssl. | 266 Purpose is to tunnel ip traffic, eg. for ssl. |
267 | 267 |
268 Example for ssl tunneling: | 268 Example for ssl tunneling: |
269 | 269 |
270 wrapper="/usr/bin/openssl s_client \-quiet \-connect pop.gmx.net:995 2>/dev/null" | 270 wrapper="/usr/bin/openssl s_client \-quiet \-crlf \-connect mail.gmx.net:465 2>/dev/null" |
271 | |
272 Note: The above line works with masqmail, | |
273 but listening on Port 465 for SSL-encrypted connections is deprecated. | |
274 The modern way is STARTTLS (RFC-3207). | |
275 This could be covered by the following command. | |
276 Unfortunately, masqmail doesn't support that yet (as of 0.2.25). | |
277 | |
278 wrapper="/usr/bin/openssl s_client \-quiet \-crlf \-starttls smtp \-connect mail.gmx.net:25 2>/dev/null" | |
271 | 279 |
272 .TP | 280 .TP |
273 \fBpipe\fR = \fIcommand\fR | 281 \fBpipe\fR = \fIcommand\fR |
274 | 282 |
275 If set, and protocol is set to `pipe', | 283 If set, and protocol is set to `pipe', |