masqmail-0.2

diff tests/localhost-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/localhost-stdin/test.conf.tpl	Sun May 30 16:05:49 2010 +0200
     1.2 +++ b/tests/localhost-stdin/test.conf.tpl	Sun May 30 16:52:35 2010 +0200
     1.3 @@ -1,45 +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 -#local_hosts="localhost;blue.patchwork.net;blue"
    1.25 +# we want to deliver a message to localhost
    1.26  local_hosts="localhost"
    1.27  
    1.28 -# Nets considered local, for immediate delivery attempts:
    1.29 -# ALL hosts not included in either local_host or local_nets are
    1.30 -# considered to be 'outside', meaning that messages to them will be queued
    1.31 -#local_nets="SMTP_HOST"
    1.32 -
    1.33 -# accept connections on these interfaces:
    1.34 -#listen_addresses="localhost:2525"
    1.35 -
    1.36 -# send messages to this port:
    1.37 -# probably this will also be configurable on host basis
    1.38 -#remote_port=25
    1.39 -
    1.40 -# where MasqMail stores its spool files and other stuff:
    1.41 -#spool_dir="/var/spool/masqmail"
    1.42 +# spool dir is the current directory
    1.43  spool_dir="PWD"
    1.44  
    1.45 -# where local mail will be written to:
    1.46 -#mail_dir="/var/spool/mail"
    1.47 +# deliver local mail into the current directory
    1.48  mail_dir="PWD"
    1.49  
    1.50 -# use syslogd for logs?
    1.51 +# log into the current directory
    1.52  use_syslog=false
    1.53 +log_dir="PWD"
    1.54  
    1.55 -# directory for log files if not using syslogd:
    1.56 -log_dir="PWD"
    1.57 +# relative paths to warn/failure message templates
    1.58 +errmsg_file="PWD/../../tpl/failmsg.tpl"
    1.59 +warnmsg_file="PWD/../../tpl/warnmsg.tpl"