masqmail-0.2

diff tests/relay-to-localhost-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
line diff
     1.1 --- a/tests/relay-to-localhost-mta/test.conf.tpl	Sun May 30 16:05:49 2010 +0200
     1.2 +++ b/tests/relay-to-localhost-mta/test.conf.tpl	Sun May 30 16:52:35 2010 +0200
     1.3 @@ -1,33 +1,34 @@
     1.4 -
     1.5 -# this is just for testing. In real life it does not make much sense:
     1.6 +# running as user is enough for testing purposes
     1.7  run_as_user=true
     1.8  
     1.9  # set debug level (0 = no debugging, 5 = very much, 6 = too much)
    1.10 -# can also be set with the -d option on the cmd line
    1.11  debug_level = 5
    1.12  
    1.13 +# deliver at once
    1.14  do_queue = false
    1.15  
    1.16 -# The name with which MasqMail identifies itself to others:
    1.17 +# identify with some name that is *not* the one of the our machine
    1.18 +# maybe we should not define a name at all, but this may lead to
    1.19 +# problems. Could be we even need a FQDN here.
    1.20  host_name="MASQMAIL-TEST"
    1.21  
    1.22 -# where MasqMail stores its spool files and other stuff:
    1.23 +# we want to deliver through a route named `test' to a local MTA
    1.24 +# thus we do not define any hosts or nets as local
    1.25 +# all mail should go through the `test' route.
    1.26 +online_detect = "file"
    1.27 +online_file = "PWD/online"
    1.28 +online_routes.test = "PWD/test.route"
    1.29 +
    1.30 +# spool files in the current directory
    1.31  spool_dir="PWD"
    1.32  
    1.33 -# where local mail will be written to:
    1.34 +# deliver local mails into the current directory
    1.35  mail_dir="PWD"
    1.36  
    1.37 -# use syslogd for logs?
    1.38 +# log into the current directory
    1.39  use_syslog=false
    1.40 -
    1.41 -# directory for log files if not using syslogd:
    1.42  log_dir="PWD"
    1.43  
    1.44 -online_routes.test = "PWD/test.route"
    1.45 -
    1.46 +# relative paths to the warn/failure message templates
    1.47  errmsg_file="PWD/../../tpl/failmsg.tpl"
    1.48  warnmsg_file="PWD/../../tpl/warnmsg.tpl"
    1.49 -
    1.50 -online_detect = "file"
    1.51 -online_file = "PWD/online"
    1.52 -