Mercurial > masqmail
annotate examples/masqmail.conf @ 203:45acc5727493
removed --with-glib-static configure option
linking glib statically is interesting if no other program uses it
on today's systems glib is widely used
if one cares on linking statically, he can link everything statically
the special case for glib will not get special care anymore
author | meillo@marmaro.de |
---|---|
date | Fri, 16 Jul 2010 14:48:17 +0200 |
parents | 6ff77c63e714 |
children | e758296de02d |
rev | line source |
---|---|
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
1 # masqmail.conf |
37
4fee89792559
updated config example and man page to new default online file
meillo@marmaro.de
parents:
0
diff
changeset
|
2 # Example configuration for masqmail |
0 | 3 |
4 | |
37
4fee89792559
updated config example and man page to new default online file
meillo@marmaro.de
parents:
0
diff
changeset
|
5 # The name with which masqmail identifies itself to others: |
0 | 6 # CHANGING THIS IS REQUIRED! |
7 host_name="striped.patchwork.net" | |
8 | |
9 # Nets considered local, for immediate delivery attempts: | |
10 # ALL hosts not included in either local_host or local_nets are | |
11 # considered to be 'outside', meaning that messages to them will be queued | |
12 #local_nets="*.patchwork.net;blue;striped" | |
13 | |
14 # accept connections on these interfaces: | |
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
15 # Change this to something like: "localhost:25;foo:25" if other machines |
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
16 # on your network shall be able to connect to masqmail. |
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
17 #listen_addresses="localhost:25" |
0 | 18 |
19 # use syslogd for logs? | |
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
20 #use_syslog=false |
0 | 21 |
22 | |
23 # online detection: | |
24 # | |
25 # for 'file' uncomment next 2 lines | |
26 #online_detect = file | |
37
4fee89792559
updated config example and man page to new default online file
meillo@marmaro.de
parents:
0
diff
changeset
|
27 #online_file = "/var/run/masqmail/masqmail-route" |
0 | 28 |
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
29 |
0 | 30 # example for local delivery to an mda: |
31 # | |
32 #mbox_default=mda | |
33 #mda="/usr/bin/procmail -Y -d ${rcpt_local}" | |
34 | |
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
35 |
0 | 36 # alias expansion: |
37 # | |
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
38 #alias_file = "/etc/aliases" |
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
39 #alias_local_caseless = false |
0 | 40 |
41 | |
42 # special routes: | |
43 | |
44 # CHANGING THIS IS REQUIRED! | |
45 # You can use as many routes (one for each provider) as you like: | |
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
46 #connect_route.example = "/etc/masqmail/example.route" |
0 | 47 |
48 # you can also give a list of routes for a single connection: | |
183
6ff77c63e714
improved and simplified the example config
meillo@marmaro.de
parents:
178
diff
changeset
|
49 #connect_route.foobar = "/etc/masqmail/foo.route;/etc/masqmail/bar.route" |
0 | 50 |
51 # you can also set routes for the local net: | |
52 #local_net_route = "/etc/masqmail/local.route;/etc/masqmail/other_lan.route" |