Testsuite: Add a first test for dns_trust_aa
[exim.git] / test / confs / 0209
CommitLineData
afda344b
PH
1# Exim test configuration 0209
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
12acl_smtp_rcpt = check_recipient
13domainlist local_domains = test.ex
14qualify_domain = test.ex
15queue_run_in_order
16
17# ----- ACL -----
18
19begin acl
20
21check_recipient:
22 accept hosts = :
23 accept domains = +local_domains
24 deny message = relay not permitted
25
26
27# ----- Routers -----
28
29begin routers
30
31others:
32 driver = manualroute
33 domains = ! +local_domains
34 route_list = * 127.0.0.1 byname
35 self = send
36 transport = smtp
37 no_more
38
39# ----- Transports -----
40
41begin transports
42
43smtp:
44 driver = smtp
45 port = PORT_S
46
47
48# ----- Retry -----
49
50begin retry
51
52* * F,5d,8h
53
54
55# End