Pull strict-aliasing fix for sockaddr_46.
[exim.git] / test / confs / 0461
CommitLineData
afda344b
PH
1# Exim test configuration 0461
2
3FALLBACK=fallback_hosts = 127.0.0.1
4ROUTE_DATA=V4NET.0.0.1
b6d22362
PH
5RETRY1=1s
6RETRY2=2s
afda344b
PH
7
8exim_path = EXIM_PATH
9host_lookup_order = bydns
10primary_hostname = myhost.test.ex
11rfc1413_query_timeout = 0s
12spool_directory = DIR/spool
13log_file_path = DIR/spool/log/%slog
14gecos_pattern = ""
15gecos_name = CALLER_NAME
16
17
18# ----- Main settings -----
19
20qualify_domain = test.ex
21
22
23# ----- Routers -----
24
25begin routers
26
27r0:
28 driver = accept
29 senders = :
30 transport = t2
31
32r1:
33 driver = manualroute
34 route_data = ROUTE_DATA
35 transport = t1
36 FALLBACK
37
38# ----- Transports -----
39
40begin transports
41
42t1:
43 driver = smtp
44 port = PORT_S
45 connect_timeout = 1s
46 allow_localhost
47
48t2:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 user = CALLER
52
53
54# ----- Retry -----
55
56begin retry
57
b6d22362
PH
58V4NET.0.0.1 * F,1s,RETRY1
59V4NET.0.0.2 * F,1s,RETRY2
afda344b
PH
60* * F,1d,1s
61
62
63# End