Mercurial > masqmail
comparison man/masqmail.conf.5 @ 238:ec28ce798b79
minor improvements in wordings
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Mon, 25 Oct 2010 14:02:18 -0300 |
parents | 4b40be6f1cbd |
children | bc9d9cd9ee8e |
comparison
equal
deleted
inserted
replaced
237:5f9f3a65032e | 238:ec28ce798b79 |
---|---|
123 | 123 |
124 Example: \fIlocalhost;foo;foo.example.org\fR | 124 Example: \fIlocalhost;foo;foo.example.org\fR |
125 (if you have set \fBhost_name\fR to \fIfoo.example.org\fR) | 125 (if you have set \fBhost_name\fR to \fIfoo.example.org\fR) |
126 | 126 |
127 .TP | 127 .TP |
128 \fBlocal_nets = \fIlist\fR | |
129 | |
130 A semicolon `;' separated list of hostnames which are on the `local' net. | |
131 Delivery to these hosts is attempted immediately. | |
132 You can use patterns with `*', e.g. "*.bar.com". | |
133 | |
134 .TP | |
135 \fBlocal_addresses = \fIlist\fR | 128 \fBlocal_addresses = \fIlist\fR |
136 | 129 |
137 A semicolon `;' separated list of fully qualified email-addresses which are | 130 A semicolon `;' separated list of fully qualified email-addresses which are |
138 considered local although their domain name part is not in the list of \fBlocal_hosts\fR. | 131 considered local although their domain name part is not in the list of \fBlocal_hosts\fR. |
132 This list can be seen as an addition to \fBlocal_hosts\fP. | |
139 | 133 |
140 For example: There are two people working at your LAN: person1@yourdomain and person2@yourdomain. | 134 For example: There are two people working at your LAN: person1@yourdomain and person2@yourdomain. |
141 But there are other persons @yourdomain which are NOT local. | 135 But there are other persons @yourdomain which are NOT local. |
142 So you can not put yourdomain to the list of local_hosts. | 136 So you can not put yourdomain to the list of local_hosts. |
143 If person1 now wants to write to person2@yourdomain and this mail should not leave the LAN then you can put | 137 If person1 now wants to write to person2@yourdomain and this mail should not leave the LAN then you can put |
149 .TP | 143 .TP |
150 \fBnot_local_addresses = \fIlist\fR | 144 \fBnot_local_addresses = \fIlist\fR |
151 | 145 |
152 A semicolon `;' separated list of fully qualified email-addresses which are | 146 A semicolon `;' separated list of fully qualified email-addresses which are |
153 considered not local although their domain name part is in the list of \fBlocal_hosts\fR. | 147 considered not local although their domain name part is in the list of \fBlocal_hosts\fR. |
148 This list can be seen as a substraction to \fBlocal_hosts\fP. | |
154 | 149 |
155 This is the opposite of the previous case. | 150 This is the opposite of the previous case. |
156 The majority of addresses of a specific domain are local. | 151 The majority of addresses of a specific domain are local. |
157 But some users are not. | 152 But some users are not. |
158 With this option you can easily exclude these users. | 153 With this option you can easily exclude these users. |
160 Example: | 155 Example: |
161 | 156 |
162 local_hosts = "localhost;myhost;mydomain.net" | 157 local_hosts = "localhost;myhost;mydomain.net" |
163 | 158 |
164 not_local_addresses = "eric@mydomain.net" | 159 not_local_addresses = "eric@mydomain.net" |
160 | |
161 .TP | |
162 \fBlocal_nets = \fIlist\fR | |
163 | |
164 A semicolon `;' separated list of hostnames which are on the `local' net. | |
165 Delivery to these hosts is attempted immediately. | |
166 You can use patterns with `*', e.g. "*.bar.com". | |
165 | 167 |
166 .TP | 168 .TP |
167 \fBlisten_addresses = \fIlist\fR | 169 \fBlisten_addresses = \fIlist\fR |
168 | 170 |
169 A semicolon `;' separated list of interfaces on which connections will be accepted. | 171 A semicolon `;' separated list of interfaces on which connections will be accepted. |
240 | 242 |
241 .TP | 243 .TP |
242 \fBalias_file = \fIfile\fR | 244 \fBalias_file = \fIfile\fR |
243 | 245 |
244 Set this to the location of your alias file. | 246 Set this to the location of your alias file. |
245 If unset, no aliasing will be done. | 247 If not set, no aliasing will be done. |
248 | |
249 Default: <not set> (i.e. no aliasing is done) | |
246 | 250 |
247 .TP | 251 .TP |
248 \fBalias_local_caseless = \fIboolean\fR | 252 \fBalias_local_caseless = \fIboolean\fR |
249 | 253 |
250 If this is set, local parts in the alias file will be matched disregarding upper/lower case. | 254 If this is set, local parts in the alias file will be matched disregarding upper/lower case. |
255 | |
256 Default: false | |
251 | 257 |
252 .TP | 258 .TP |
253 \fBpipe_fromline = \fIboolean\fR | 259 \fBpipe_fromline = \fIboolean\fR |
254 | 260 |
255 If this is set, a from line will be prepended to the output stream whenever | 261 If this is set, a from line will be prepended to the output stream whenever |
267 .TP | 273 .TP |
268 \fBmbox_default = \fIstring\fR | 274 \fBmbox_default = \fIstring\fR |
269 | 275 |
270 The default local delivery method. | 276 The default local delivery method. |
271 Can be mbox or mda. | 277 Can be mbox or mda. |
272 Default is mbox. | |
273 You can override this for each user by using the \fBmbox_users\fR or \fBmda_users\fR (see below). | 278 You can override this for each user by using the \fBmbox_users\fR or \fBmda_users\fR (see below). |
279 | |
280 Default: mbox. | |
274 | 281 |
275 .TP | 282 .TP |
276 \fBmbox_users = \fIlist\fR | 283 \fBmbox_users = \fIlist\fR |
277 | 284 |
278 A list of users which wish delivery to an mbox style mail folder. | 285 A list of users which wish delivery to an mbox style mail folder. |