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