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