Cutthrough: expand transport dkim_domain option when testing for dkim signing
[exim.git] / test / confs / 5207
CommitLineData
afda344b
PH
1# Exim test configuration 5207
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15qualify_domain = test.ex
16
17# ----- Transports -----
18
19begin transports
20
21t1:
22 driver = appendfile
23 file = DIR/test-mail/${if eq{$address_data}{}{$local_part}{$address_data}}
24 user = CALLER
25
26# ----- Routers -----
27
28begin routers
29
30# Delivered without changing address_data
31
32nodata:
33 driver = accept
34 local_parts = nodata
35 transport = t1
36
37r6:
38 driver = queryprogram
39 domains = r6
40 address_data = qpgm
41 command = /bin/echo ACCEPT transport=t1
42 command_user = nobody
43
44r7:
45 driver = queryprogram
46 domains = r7
47 address_data = qpgm
48 command = /bin/echo redirect nodata@test.ex
49 command_user = nobody
50
51# ----- Retry -----
52
53begin retry
54
55* * F,5d,5m
56
57# End