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