Events: dns:fail Bug 3011
[exim.git] / test / confs / 0130
1 # Exim test configuration 0130
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8
9 acl_smtp_rcpt = check_recipient
10
11 domainlist local_domains = test.ex
12 hostlist relay_hosts = V4NET.0.0.0
13 qualify_domain = test.ex
14
15
16 # ----- ACL -----
17
18 begin acl
19
20 check_recipient:
21   deny    message = unrouteable address
22          !verify = recipient
23   accept  domains = +local_domains
24   accept  hosts = +relay_hosts
25   deny    message = relay not permitted
26
27
28 # ----- Routers -----
29
30 begin routers
31
32 islocal:
33   driver = manualroute
34   domains = ! +local_domains
35   route_list = "* localhost byname"
36   transport = smtp
37   no_more
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 smtp:
45   driver = smtp
46   hosts_try_fastopen =  :
47
48
49 # ----- Retry -----
50
51
52 begin retry
53
54 * * F,1d,15m
55
56
57 # End