Testsuite: handle RC tagging convention
[exim.git] / test / confs / 0604
CommitLineData
a39bd74d
JB
1# Exim test configuration 0604
2# Send many messages in hopes of tripping continuation records code
3
4hostlist loopback = <; 127.0.0.0/8 ; 0.0.0.0 ; ::1 ; 0000:0000:0000:0000:0000:ffff
5untrusted_set_sender = *
6
7SERVER =
8
d4dc049f
JH
9.include DIR/aux-var/std_conf_prefix
10
a39bd74d 11rfc1413_query_timeout = 0s
92562f63 12log_selector = +sender_on_delivery +millisec
a39bd74d
JB
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = accept
17
18queue_only
19queue_run_in_order
20
21# ----- Routers -----
22
23begin routers
24
25client:
26 driver = accept
27 condition = ${if eq {SERVER}{server}{no}{yes}}
28 transport = send_to_server
29
30server:
31 driver = accept
32 transport = send_to_server
33
34
35# ----- Transports -----
36
37begin transports
38
39send_to_server:
40 driver = smtp
41 connection_max_messages = 0
42 allow_localhost
43 hosts = 127.0.0.1
44 port = PORT_D
277b9979 45 hosts_try_fastopen = :
78ca7fd5
JH
46 # assumes that HOSTIPV4 can sent to 127.0.0.1
47 interface = ${if eq {$sender_address_domain}{dustybelt.tld} {127.0.0.1}{HOSTIPV4}}
a39bd74d
JB
48
49# ----- Retry -----
50
51begin retry
52
53* * F,5d,10s
54
55# End
56