Events: dns:fail Bug 3011
[exim.git] / test / confs / 0548
1 # Exim test configuration 0548
2
3 SERVER=
4
5 .include DIR/aux-var/std_conf_prefix
6
7
8 # ----- Main settings -----
9
10 acl_smtp_connect = acl_connect
11 acl_smtp_rcpt = acl_rcpt
12 qualify_domain = test.ex
13 queue_run_in_order
14
15
16 # ----- ACLs -----
17
18 begin acls
19
20 acl_connect:
21   defer message = host deferred
22         hosts = thishost.test.ex
23   accept
24
25 acl_rcpt:
26   defer message = Recipient deferred
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 smarthost:
34   driver = accept
35   transport = smtp
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 smtp:
43   driver = smtp
44   hosts = HOSTIPV4 : thishost.test.ex
45   allow_localhost
46   port = PORT_D
47   hosts_try_fastopen =  :
48
49
50 # ----- Retry -----
51
52 begin retry
53
54 thishost.test.ex  *  F,40s,4s
55 *                 *  F,2s,2s; F,2s,10s
56
57 # End