masqmail
annotate tests/localhost-stdin/test.conf.tpl @ 63:49ca781e1503
reworked the test cases completely
they are split into four independent tests now
and each one is tested to work with the current version
author | meillo@marmaro.de |
---|---|
date | Sun, 30 May 2010 16:05:49 +0200 |
parents | tests/conf.templ@3cb6f383f07e |
children | 0379789a847b |
rev | line source |
---|---|
meillo@0 | 1 # Example configuration for MasqMail |
meillo@0 | 2 # Copyright (C) 1999 Oliver Kurth |
meillo@0 | 3 |
meillo@0 | 4 |
meillo@0 | 5 # this is just for testing. In real life it does not make much sense: |
meillo@0 | 6 run_as_user=true |
meillo@0 | 7 |
meillo@0 | 8 # set debug level (0 = no debugging, 5 = very much, 6 = too much) |
meillo@0 | 9 # can also be set with the -d option on the cmd line |
meillo@0 | 10 debug_level = 5 |
meillo@0 | 11 |
meillo@0 | 12 do_queue = false |
meillo@0 | 13 |
meillo@0 | 14 # The name with which MasqMail identifies itself to others: |
meillo@46 | 15 host_name="SMTP_HOST" |
meillo@0 | 16 |
meillo@0 | 17 # Hosts considered local: |
meillo@0 | 18 #local_hosts="localhost;blue.patchwork.net;blue" |
meillo@0 | 19 local_hosts="localhost" |
meillo@0 | 20 |
meillo@0 | 21 # Nets considered local, for immediate delivery attempts: |
meillo@0 | 22 # ALL hosts not included in either local_host or local_nets are |
meillo@0 | 23 # considered to be 'outside', meaning that messages to them will be queued |
meillo@63 | 24 #local_nets="SMTP_HOST" |
meillo@0 | 25 |
meillo@0 | 26 # accept connections on these interfaces: |
meillo@63 | 27 #listen_addresses="localhost:2525" |
meillo@0 | 28 |
meillo@0 | 29 # send messages to this port: |
meillo@0 | 30 # probably this will also be configurable on host basis |
meillo@46 | 31 #remote_port=25 |
meillo@0 | 32 |
meillo@0 | 33 # where MasqMail stores its spool files and other stuff: |
meillo@0 | 34 #spool_dir="/var/spool/masqmail" |
meillo@46 | 35 spool_dir="PWD" |
meillo@0 | 36 |
meillo@0 | 37 # where local mail will be written to: |
meillo@0 | 38 #mail_dir="/var/spool/mail" |
meillo@46 | 39 mail_dir="PWD" |
meillo@0 | 40 |
meillo@0 | 41 # use syslogd for logs? |
meillo@0 | 42 use_syslog=false |
meillo@0 | 43 |
meillo@0 | 44 # directory for log files if not using syslogd: |
meillo@46 | 45 log_dir="PWD" |