comparison tests/relay-to-hostname-mta/test.conf.tpl @ 64:0379789a847b

improved comments in test cases
author meillo@marmaro.de
date Sun, 30 May 2010 16:52:35 +0200
parents 49ca781e1503
children f10a56dc7481
comparison
equal deleted inserted replaced
63:49ca781e1503 64:0379789a847b
1 1 # running as user is enough for testing purposes
2 # this is just for testing. In real life it does not make much sense:
3 run_as_user=true 2 run_as_user=true
4 3
5 # set debug level (0 = no debugging, 5 = very much, 6 = too much) 4 # set debug level (0 = no debugging, 5 = very much, 6 = too much)
6 # can also be set with the -d option on the cmd line
7 debug_level = 5 5 debug_level = 5
8 6
7 # deliver at once
9 do_queue = false 8 do_queue = false
10 9
11 # The name with which MasqMail identifies itself to others: 10 # identify with some name that is *not* the one of the our machine
11 # maybe we should not define a name at all, but this may lead to
12 # problems. Could be we even need a FQDN here.
12 host_name="MASQMAIL-TEST" 13 host_name="MASQMAIL-TEST"
13 14
14 # where MasqMail stores its spool files and other stuff: 15 # we want to deliver through a route named `test' to a local MTA
16 # thus we do not define any hosts or nets as local
17 # all mail should go through the `test' route.
18 online_detect = "file"
19 online_file = "PWD/online"
20 online_routes.test = "PWD/test.route"
21
22 # spool files in the current directory
15 spool_dir="PWD" 23 spool_dir="PWD"
16 24
17 # where local mail will be written to: 25 # deliver local mails into the current directory
18 mail_dir="PWD" 26 mail_dir="PWD"
19 27
20 # use syslogd for logs? 28 # log into the current directory
21 use_syslog=false 29 use_syslog=false
22
23 # directory for log files if not using syslogd:
24 log_dir="PWD" 30 log_dir="PWD"
25 31
26 online_routes.test = "PWD/test.route" 32 # relative paths to the warn/failure message templates
27
28 errmsg_file="PWD/../../tpl/failmsg.tpl" 33 errmsg_file="PWD/../../tpl/failmsg.tpl"
29 warnmsg_file="PWD/../../tpl/warnmsg.tpl" 34 warnmsg_file="PWD/../../tpl/warnmsg.tpl"
30
31 online_detect = "file"
32 online_file = "PWD/online"
33