comparison 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 196dfb2a3056
comparison
equal deleted inserted replaced
63:49ca781e1503 64:0379789a847b
1 # Example configuration for MasqMail 1 # running as user is enough for testing purposes
2 # Copyright (C) 1999 Oliver Kurth
3
4
5 # this is just for testing. In real life it does not make much sense:
6 run_as_user=true 2 run_as_user=true
7 3
8 # 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)
9 # can also be set with the -d option on the cmd line
10 debug_level = 5 5 debug_level = 5
11 6
7 # deliver at once
12 do_queue = false 8 do_queue = false
13 9
14 # The name with which MasqMail identifies itself to others: 10 #
15 host_name="SMTP_HOST" 11 host_name="SMTP_HOST"
16 12
17 # Hosts considered local: 13 # we want to deliver a message to `hostname`
18 local_hosts="SMTP_HOST" 14 local_hosts="SMTP_HOST"
19 15
20 # Nets considered local, for immediate delivery attempts: 16 # spool into the current directory
21 # ALL hosts not included in either local_host or local_nets are
22 # considered to be 'outside', meaning that messages to them will be queued
23 #local_nets="SMTP_HOST"
24
25 # accept connections on these interfaces:
26 #listen_addresses="localhost:2525"
27
28 # where MasqMail stores its spool files and other stuff:
29 #spool_dir="/var/spool/masqmail"
30 spool_dir="PWD" 17 spool_dir="PWD"
31 18
32 # where local mail will be written to: 19 # deliver local mail into the current directory
33 mail_dir="PWD" 20 mail_dir="PWD"
34 21
35 # use syslogd for logs? 22 # log into the current directory
36 use_syslog=false 23 use_syslog=false
24 log_dir="PWD"
37 25
38 # directory for log files if not using syslogd: 26 # relative names to the warn/failure template files
39 log_dir="PWD" 27 errmsg_file="PWD/../../tpl/failmsg.tpl"
28 warnmsg_file="PWD/../../tpl/warnmsg.tpl"