Add $smtp_command_history variable
[exim.git] / test / confs / 9901
CommitLineData
afda344b
PH
1# Exim test configuration 9901
2
3COM=
4SERVER=
5
d4dc049f
JH
6.include DIR/aux-var/std_conf_prefix
7
afda344b 8primary_hostname = myhost.test.ex
afda344b
PH
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = accept
13qualify_domain = test.ex
14queue_run_in_order
15smtp_receive_timeout = 1s
16
17
18# ----- Routers -----
19
20begin routers
21
22# These are commented out for the server
23
24COM r1:
25COM driver = accept
26COM domains = no.delay
27COM transport = t1
28
29COM r2:
30COM driver = dnslookup
31COM transport = t1
32
33# This is the only one available for the server
34
35r3:
36 driver = accept
37 transport = t2
38
39
40# ----- Transports -----
41
42begin transports
43
44t1:
45 driver = smtp
46 allow_localhost
47 hosts = 127.0.0.1
48 hosts_override
49 port = PORT_D
50
51t2:
52 driver = appendfile
53 file = /dev/null
54 user = CALLER
55
56
57# ----- Retry -----
58
59begin retry
60
61* * F,1d,10m
62
63
64# End