masqmail-0.2

diff tests/hostname-stdin/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/hostname-stdin/test.conf.tpl	Sun May 30 16:05:49 2010 +0200
     1.2 +++ b/tests/hostname-stdin/test.conf.tpl	Sun May 30 16:52:35 2010 +0200
     1.3 @@ -1,39 +1,28 @@
     1.4 -# Example configuration for MasqMail
     1.5 -# Copyright (C) 1999 Oliver Kurth
     1.6 -
     1.7 -
     1.8 -# this is just for testing. In real life it does not make much sense:
     1.9 +# running as user is enough for testing purposes
    1.10  run_as_user=true
    1.11  
    1.12  # set debug level (0 = no debugging, 5 = very much, 6 = too much)
    1.13 -# can also be set with the -d option on the cmd line
    1.14  debug_level = 5
    1.15  
    1.16 +# deliver at once
    1.17  do_queue = false
    1.18  
    1.19 -# The name with which MasqMail identifies itself to others:
    1.20 +#
    1.21  host_name="SMTP_HOST"
    1.22  
    1.23 -# Hosts considered local:
    1.24 +# we want to deliver a message to `hostname`
    1.25  local_hosts="SMTP_HOST"
    1.26  
    1.27 -# Nets considered local, for immediate delivery attempts:
    1.28 -# ALL hosts not included in either local_host or local_nets are
    1.29 -# considered to be 'outside', meaning that messages to them will be queued
    1.30 -#local_nets="SMTP_HOST"
    1.31 -
    1.32 -# accept connections on these interfaces:
    1.33 -#listen_addresses="localhost:2525"
    1.34 -
    1.35 -# where MasqMail stores its spool files and other stuff:
    1.36 -#spool_dir="/var/spool/masqmail"
    1.37 +# spool into the current directory
    1.38  spool_dir="PWD"
    1.39  
    1.40 -# where local mail will be written to:
    1.41 +# deliver local mail into the current directory
    1.42  mail_dir="PWD"
    1.43  
    1.44 -# use syslogd for logs?
    1.45 +# log into the current directory
    1.46  use_syslog=false
    1.47 +log_dir="PWD"
    1.48  
    1.49 -# directory for log files if not using syslogd:
    1.50 -log_dir="PWD"
    1.51 +# relative names to the warn/failure template files
    1.52 +errmsg_file="PWD/../../tpl/failmsg.tpl"
    1.53 +warnmsg_file="PWD/../../tpl/warnmsg.tpl"