Testsuite: Add a first test for dns_trust_aa
[exim.git] / test / confs / 5203
CommitLineData
afda344b
PH
1# Exim test configuration 5203
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
12domainlist local_domains = test.ex
13qualify_domain = test.ex
14
15
16# ----- Routers -----
17
18begin routers
19
20query:
21 driver = queryprogram
22 command = DIR/bin/fd -q
23 command_user = nobody
24 domains = ! +local_domains
25 transport = userx_delivery
26 no_more
27
28# ----- Transports -----
29
30begin transports
31
32userx_delivery:
33 driver = appendfile
34 file = DIR/test-mail/$local_part
35 message_suffix = "$address_data\n"
36 user = CALLER
37
38
39# End