Add $smtp_command_history variable
[exim.git] / test / confs / 0342
1 # Exim test configuration 0342
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = check_rcpt
10
11
12 # ----- ACLs -----
13
14 begin acl
15
16 check_rcpt:
17 deny message = unverifiable
18 !verify = recipient
19 accept
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 dnslookup:
27 driver = dnslookup
28 transport = remote_smtp
29 widen_domains = test.ex
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 remote_smtp:
37 driver = smtp
38
39
40 # ----- Retry -----
41
42
43 begin retry
44
45 * * F,5d,10s
46
47
48 # End