Pull strict-aliasing fix for sockaddr_46.
[exim.git] / test / confs / 0085
CommitLineData
afda344b
PH
1# Exim test configuration 0085
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex : \
15 myhost.test.ex
16
17
18# ----- Routers -----
19
20begin routers
21
22smart1:
23 driver = manualroute
24 caseful_local_part
25 domains = smart.domain
26 local_parts = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
27 route_list = *
28 senders = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
29 verify_only
30
31fail_remote_domains:
32 driver = redirect
33 domains = ! +local_domains
34 allow_fail
35 data = :fail: unrouteable mail domain "$domain"
36
37smart2:
38 driver = accept
39 domains = test.ex
40 local_parts = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
41 require_files = ${lookup{$domain.files}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
42 retry_use_local_part
43 senders = ${lookup{$domain}lsearch{DIR/aux-fixed/TESTNUM.data}{$value}}
44 transport = dummy
45 verify_only
46
47
48# ----- Transports -----
49
50begin transports
51
52dummy:
53 driver = appendfile
54 user = CALLER
55
56
57# End