Mercurial > masqmail
comparison man/masqmail.get.5 @ 57:ed34413652fc
moved man pages from docs/ to man/
author | meillo@marmaro.de |
---|---|
date | Sat, 29 May 2010 22:07:07 +0200 |
parents | docs/masqmail.get.5@03817f849106 |
children | e01fed4846e4 |
comparison
equal
deleted
inserted
replaced
56:f6a6f55b7b9e | 57:ed34413652fc |
---|---|
1 .TH masqmail.get 5 2010-05-07 masqmail-0.2.22 "File Formats" | |
2 | |
3 .SH NAME | |
4 masqmail.get \- masqmail get configuration file | |
5 | |
6 | |
7 .SH DESCRIPTION | |
8 | |
9 This man page describes the options available for the masqmail get configuration. | |
10 | |
11 | |
12 .SH OPTIONS | |
13 | |
14 .TP | |
15 \fBprotocol\fR = \fIstring\fR | |
16 | |
17 The protocol with which you retrieve your mail. | |
18 Currently only `pop3' and `apop' are supported. | |
19 There is no default. | |
20 | |
21 .TP | |
22 \fBserver\fR = \fIstring\fR | |
23 | |
24 The server you get your mail from. | |
25 | |
26 .TP | |
27 \fBresolve_list\fR = \fIlist\fR | |
28 | |
29 Specify the method how the domain of the server is resolved. | |
30 Possible values are dns_mx, dns_a, byname. | |
31 For `dns_mx', the domain is assumed to be an MX pointer to a list of host names, | |
32 these will be tried each in order | |
33 (lowest preference value first, equal preference values in random order). | |
34 For `dns_a', the domain is assumed to be an A pointer. | |
35 For `byname', the library function \fBgethostbyname(3)\fR will be used. | |
36 | |
37 The default is "dns_a;byname". | |
38 It does not make much sense here to use `dns_mx'. | |
39 | |
40 .TP | |
41 \fBuser\fR = \fIstring\fR | |
42 | |
43 Your login name. | |
44 | |
45 .TP | |
46 \fBpass\fR = \fIstring\fR | |
47 | |
48 Your password. | |
49 | |
50 .TP | |
51 \fBaddress\fR = \fIaddress\fR | |
52 | |
53 The address where the retrieved mail should be sent to. | |
54 It can be any address, but you probably want to set this to a local address on your LAN. | |
55 | |
56 .TP | |
57 \fBreturn_path\fR = \fIaddress\fR | |
58 | |
59 If set, masqmail sets the return path to this address. | |
60 Bounces generated during further delivery will be sent to this address. | |
61 If unset, masqmail looks for the Return-Path: header in the mail, | |
62 if this does not exist it uses the From: address and if this fails, postmaster will be used. | |
63 | |
64 It is in most cases not useful to set this to the same address as the `address' | |
65 option as this may generate multiple bounces. | |
66 postmaster is recommended. | |
67 | |
68 .TP | |
69 \fBdo_keep\fR = \fIboolean\fR | |
70 | |
71 If you want to keep your mail on the server after you retrieved it, set this to true. | |
72 It is recommended that you also set do_uidl, | |
73 otherwise you will get the mail again each time you connect to the server. | |
74 Masqmail does not check any headers before it retrieves mail, which may mark it as already fetched. | |
75 Note that this behaviour is different to that of fetchmail. | |
76 The default is false. | |
77 | |
78 .TP | |
79 \fBdo_uidl\fR = \fIboolean\fR | |
80 | |
81 If set, masqmail keeps a list of unique IDs of mails already fetched, | |
82 so that they will not be retrieved again. | |
83 Default is false. | |
84 | |
85 .TP | |
86 \fBdo_uidl_dele\fR = \fIboolean\fR | |
87 | |
88 If set, and \fBdo_uidl\fR is also set, MasqMail sends a delete (DELE) command | |
89 to the server for each message uid in the uid listing at the beginning of the session. | |
90 This prevents mail to be left on the server if masqmail gets interrupted during | |
91 a session before it can send the QUIT command to the server. | |
92 Default is false. | |
93 | |
94 .TP | |
95 \fBmax_size\fR = \fInumeric\fR | |
96 | |
97 If set to a value > 0, only messages smaller than this in bytes will be retrieved. | |
98 The default is 0. | |
99 | |
100 .TP | |
101 \fBmax_count\fR = \fInumeric\fR | |
102 | |
103 If set to a value > 0, only \fBmax_count\fR messages will be retrieved. | |
104 The default is 0. | |
105 | |
106 .TP | |
107 \fBwrapper\fR = \fIcommand\fR | |
108 | |
109 If set, instead of opening a connection to a remote server, | |
110 \fIcommand\fR will be called and all traffic will be piped to its stdin and from its stdout. | |
111 Purpose is to tunnel ip traffic, e.g. for ssl. | |
112 | |
113 Example for ssl tunneling: | |
114 | |
115 wrapper="/usr/bin/openssl s_client \-quiet \-connect pop.gmx.net:995 2>/dev/null" | |
116 | |
117 | |
118 .SH AUTHOR | |
119 | |
120 Masqmail was written by Oliver Kurth. | |
121 It is now maintained by Markus Schnalke <meillo@marmaro.de>. | |
122 | |
123 You will find the newest version of masqmail at \fBhttp://prog.marmaro.de/masqmail/\fR. | |
124 There is also a mailing list, you will find information about it at masqmail's main site. | |
125 | |
126 | |
127 .SH BUGS | |
128 | |
129 Please report bugs to the mailing list. | |
130 | |
131 | |
132 .SH SEE ALSO | |
133 | |
134 \fBmasqmail(8)\fR, \fBmasqmail.route(5)\fR, \fBmasqmail.conf(5)\fR |