Cutthrough: expand transport dkim_domain option when testing for dkim signing
[exim.git] / test / confs / 0131
CommitLineData
afda344b
PH
1# Exim test configuration 0131
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex
15qualify_domain = test.ex
16
17
18# ----- Routers -----
19
20begin routers
21
22islocal:
23 driver = manualroute
24 domains = ! +local_domains
25 route_list = * localhost byname
26 self = pass
27 no_more
28 address_data = $address_data-islocal
29
30forward:
31 driver = redirect
32 allow_filter
33 no_check_local_user
34 file = DIR/aux-fixed/TESTNUM.$local_part
35 retry_use_local_part
36 user = CALLER
37 address_data = $address_data-forward
38
39local:
40 driver = accept
41 retry_use_local_part
42 transport = appendfile
43 address_data = $address_data-local
44
45
46# ----- Transports -----
47
48begin transports
49
50appendfile:
51 driver = appendfile
52 file = DIR/test-mail/$local_part
53 user = CALLER
54 headers_add = Address-Data: >$address_data<
55
56
57# ----- Retry -----
58
59
60begin retry
61
62* * F,1d,15m
63
64
65# End