Add $smtp_command_history variable
[exim.git] / test / confs / 0085
CommitLineData
afda344b
PH
1# Exim test configuration 0085
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9domainlist local_domains = test.ex : \
10 myhost.test.ex
11
12
13# ----- Routers -----
14
15begin routers
16
17smart1:
18 driver = manualroute
19 caseful_local_part
20 domains = smart.domain
21 local_parts = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
22 route_list = *
23 senders = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
24 verify_only
25
26fail_remote_domains:
27 driver = redirect
28 domains = ! +local_domains
29 allow_fail
30 data = :fail: unrouteable mail domain "$domain"
31
32smart2:
33 driver = accept
34 domains = test.ex
35 local_parts = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
36 require_files = ${lookup{$domain.files}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
37 retry_use_local_part
38 senders = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
39 transport = dummy
40 verify_only
41
42
43# ----- Transports -----
44
45begin transports
46
47dummy:
48 driver = appendfile
49 user = CALLER
50
51
52# End