Another small test tweak.
[exim.git] / test / confs / 0211
1 # Exim test configuration 0211
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 rfc1413_query_timeout = 0s
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 domainlist local_domains = test.ex
14
15 acl_smtp_rcpt = check_recipient
16
17 log_selector = +sender_on_delivery
18 qualify_domain = test.ex
19
20
21 # ----- ACLs -----
22
23 begin acl
24
25 check_recipient:
26 accept hosts = :
27 accept domains = +local_domains
28 deny message = relay not permitted
29
30
31 # ----- Routers -----
32
33 begin routers
34
35 others:
36 driver = manualroute
37 domains = ! +local_domains
38 route_list = * 127.0.0.1 byname
39 self = send
40 transport = smtp
41 no_more
42
43 all:
44 driver = accept
45 retry_use_local_part
46 transport = local_delivery
47
48
49 # ----- Transports -----
50
51 begin transports
52
53 smtp:
54 driver = smtp
55 port = PORT_S
56
57 local_delivery:
58 driver = appendfile
59 file = DIR/test-mail/$local_part
60 return_path_add
61 user = CALLER
62
63
64 # ----- Retry -----
65
66
67 begin retry
68
69 * * F,5d,8h
70
71
72 # End