Mercurial > masqmail
annotate tests/hostname-stdin/test.conf.tpl @ 276:1abc1faeb45d
for -t cmdline args are now added to the rcpt list instead of substracted
Please read the diff and the section about -t in man/masqmail.8.
Masqmail's behavior had been like the one of exim/smail, now it's
similar to postfix.
Masqmail does it now the most simple way, regarding the code.
Also, addr args are always recipients, -t does not change their meaning.
-t makes the addrs from rcpt hdrs, rcpt addrs too.
It would have been logical too, to ignore the cmdline args,
in the sense of ``headers *instead of* args'' but none of the
popular MTAs does it that way and it would have been a bit more
complicated in the code.
Anyway, this is a corner-case that should better be avoided completely.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Fri, 03 Dec 2010 21:05:34 -0300 |
parents | 0379789a847b |
children | 196dfb2a3056 |
rev | line source |
---|---|
64 | 1 # running as user is enough for testing purposes |
0 | 2 run_as_user=true |
3 | |
4 # set debug level (0 = no debugging, 5 = very much, 6 = too much) | |
5 debug_level = 5 | |
6 | |
64 | 7 # deliver at once |
0 | 8 do_queue = false |
9 | |
64 | 10 # |
46 | 11 host_name="SMTP_HOST" |
0 | 12 |
64 | 13 # we want to deliver a message to `hostname` |
63 | 14 local_hosts="SMTP_HOST" |
0 | 15 |
64 | 16 # spool into the current directory |
46 | 17 spool_dir="PWD" |
0 | 18 |
64 | 19 # deliver local mail into the current directory |
46 | 20 mail_dir="PWD" |
0 | 21 |
64 | 22 # log into the current directory |
0 | 23 use_syslog=false |
64 | 24 log_dir="PWD" |
0 | 25 |
64 | 26 # relative names to the warn/failure template files |
27 errmsg_file="PWD/../../tpl/failmsg.tpl" | |
28 warnmsg_file="PWD/../../tpl/warnmsg.tpl" |