Pull strict-aliasing fix for sockaddr_46.
[exim.git] / test / confs / 0517
CommitLineData
afda344b
PH
1# Exim test configuration 0517
2
3ERROR_DETAILS=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = a1
17
18
19# ----- ACL ------
20
21begin acl
22
23a1:
24 accept local_parts = usery
25 control = suppress_local_fixups
26 accept
27
28
29# ----- Routers -----
30
31begin routers
32
33r1:
34 driver = accept
35 transport = t1
36
37
38# ----- Transports -----
39
40begin transports
41
42t1:
43 driver = appendfile
44 file = DIR/test-mail/$local_part
45 user = CALLER
46
47# End