Merge branch 'master'
[exim.git] / test / confs / 0130
1 # Exim test configuration 0130
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14
15 acl_smtp_rcpt = check_recipient
16
17 domainlist local_domains = test.ex
18 hostlist relay_hosts = V4NET.0.0.0
19 qualify_domain = test.ex
20
21
22 # ----- ACL -----
23
24 begin acl
25
26 check_recipient:
27 deny message = unrouteable address
28 !verify = recipient
29 accept domains = +local_domains
30 accept hosts = +relay_hosts
31 deny message = relay not permitted
32
33
34 # ----- Routers -----
35
36 begin routers
37
38 islocal:
39 driver = manualroute
40 domains = ! +local_domains
41 route_list = "* localhost byname"
42 transport = smtp
43 no_more
44
45
46 # ----- Transports -----
47
48 begin transports
49
50 smtp:
51 driver = smtp
52
53
54 # ----- Retry -----
55
56
57 begin retry
58
59 * * F,1d,15m
60
61
62 # End