Cutthrough: expand transport dkim_domain option when testing for dkim signing
[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
bc3c7bb7 9keep_environment =
afda344b
PH
10host_lookup_order = bydns
11primary_hostname = myhost.test.ex
afda344b
PH
12spool_directory = DIR/spool
13log_file_path = DIR/spool/log/%slog
14gecos_pattern = ""
15gecos_name = CALLER_NAME
23f3dc67 16tls_advertise_hosts =
afda344b
PH
17
18
19# ----- Main settings -----
20
21qualify_domain = test.ex
22
23
24# ----- Routers -----
25
26begin routers
27
28r0:
29 driver = accept
30 senders = :
31 transport = t2
32
33r1:
34 driver = manualroute
35 route_data = ROUTE_DATA
36 transport = t1
37 FALLBACK
38
39# ----- Transports -----
40
41begin transports
42
43t1:
44 driver = smtp
45 port = PORT_S
46 connect_timeout = 1s
47 allow_localhost
48
49t2:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 user = CALLER
53
54
55# ----- Retry -----
56
57begin retry
58
b6d22362
PH
59V4NET.0.0.1 * F,1s,RETRY1
60V4NET.0.0.2 * F,1s,RETRY2
afda344b
PH
61* * F,1d,1s
62
63
64# End