Add $smtp_command_history variable
[exim.git] / test / confs / 0216
CommitLineData
afda344b
PH
1# Exim test configuration 0216
2
3SERVER=
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = accept
13queue_only
14queue_run_in_order
15
16
17# ----- Routers -----
18
19begin routers
20
21client:
22 driver = accept
23 condition = ${if eq {SERVER}{server}{no}{yes}}
24 retry_use_local_part
25 transport = send_to_server
26
27
28# ----- Transports -----
29
30begin transports
31
32send_to_server:
33 driver = smtp
34 allow_localhost
35 hosts = 127.0.0.1
36 port = PORT_D
37 max_rcpt = 0
38
39
40# ----- Retry -----
41
42
43begin retry
44
45* * F,5d,10s
46
47
48# End