Mercurial > masqmail
annotate examples/masqmail.conf @ 179:3190e6864452
added comments to deliver.c (stuff to check)
author | meillo@marmaro.de |
---|---|
date | Wed, 14 Jul 2010 17:02:08 +0200 |
parents | 91f8ee6514f5 |
children | 6ff77c63e714 |
rev | line source |
---|---|
37
4fee89792559
updated config example and man page to new default online file
meillo@marmaro.de
parents:
0
diff
changeset
|
1 # Example configuration for masqmail |
0 | 2 # Copyright (C) 1999 Oliver Kurth |
3 # | |
4 # This program is free software; you can redistribute it and/or modify | |
5 # it under the terms of the GNU General Public License as published by | |
6 # the Free Software Foundation; either version 2 of the License, or | |
7 # (at your option) any later version. | |
8 | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU General Public License for more details. | |
13 | |
14 # You should have received a copy of the GNU General Public License | |
15 # along with this program; if not, write to the Free Software | |
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
17 # | |
18 | |
37
4fee89792559
updated config example and man page to new default online file
meillo@marmaro.de
parents:
0
diff
changeset
|
19 # The name with which masqmail identifies itself to others: |
0 | 20 # CHANGING THIS IS REQUIRED! |
21 host_name="striped.patchwork.net" | |
22 | |
23 # Hosts considered local: | |
24 # CHANGING THIS IS REQUIRED! | |
25 local_hosts="striped;striped.patchwork.net;localhost" | |
26 | |
27 # Nets considered local, for immediate delivery attempts: | |
28 # ALL hosts not included in either local_host or local_nets are | |
29 # considered to be 'outside', meaning that messages to them will be queued | |
30 # CHANGING THIS IS REQUIRED! | |
31 #local_nets="*.patchwork.net;blue;striped" | |
32 | |
33 # accept connections on these interfaces: | |
34 # CHANGING THIS IS REQUIRED! | |
35 listen_addresses="localhost:25" | |
36 | |
37
4fee89792559
updated config example and man page to new default online file
meillo@marmaro.de
parents:
0
diff
changeset
|
37 # where masqmail stores its spool files and other stuff: |
0 | 38 spool_dir="/var/spool/masqmail" |
39 | |
40 # where local mail will be written to: | |
41 mail_dir="/var/mail" | |
42 | |
43 # use syslogd for logs? | |
44 use_syslog=false | |
45 | |
46 # directory for log files: | |
47 log_dir="/var/log/masqmail" | |
48 | |
49 # if set, accepted mail will not be delivered immediately but on the next queue run: | |
50 do_queue=false | |
51 | |
52 # online detection: | |
53 # | |
54 # for 'file' uncomment next 2 lines | |
55 #online_detect = file | |
37
4fee89792559
updated config example and man page to new default online file
meillo@marmaro.de
parents:
0
diff
changeset
|
56 #online_file = "/var/run/masqmail/masqmail-route" |
0 | 57 |
58 # | |
59 # example for local delivery to an mda: | |
60 # | |
61 #mbox_default=mda | |
62 #mda="/usr/bin/procmail -Y -d ${rcpt_local}" | |
63 # default is false for these: | |
64 #mda_fromline=true | |
65 #mda_fromhack=true | |
66 | |
67 # | |
68 # alias expansion: | |
69 # | |
70 alias_file = "/etc/aliases" | |
71 # default is false: | |
72 #alias_local_caseless = true | |
73 | |
74 # | |
75 # configuration concerning pipes (after an alias expansion) | |
76 # | |
77 # default is false for these: | |
78 # pipe_fromline=true | |
79 # pipe_fromhack=true | |
80 | |
81 # special routes: | |
82 | |
83 # CHANGING THIS IS REQUIRED! | |
84 # You can use as many routes (one for each provider) as you like: | |
85 connect_route.GWDG = "/etc/masqmail/example.route" | |
86 | |
87 # you can also give a list of routes for a single connection: | |
88 #connect_route.foo = "/etc/masqmail/foo.route;/etc/masqmail/bar.route" | |
89 | |
90 # you can also set routes for the local net: | |
91 #local_net_route = "/etc/masqmail/local.route;/etc/masqmail/other_lan.route" | |
92 | |
93 # if you use masqmail to get mail, set some 'get' files: | |
94 #get.anyname = /etc/masqmail/example.get |