77376cdcd0c0ef20f21f67881428f5d2b797257f
[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 exim_path = EXIM_PATH
10 host_lookup_order = bydns
11 #primary_hostname = myhost.test.ex
12 rfc1413_query_timeout = 0s
13 spool_directory = DIR/spool
14 log_file_path = DIR/spool/log/SERVER%slog
15 log_selector = +sender_on_delivery
16 gecos_pattern = ""
17 gecos_name = CALLER_NAME
18
19 # ----- Main settings -----
20
21 acl_smtp_rcpt = accept
22
23 queue_only
24 queue_run_in_order
25
26 # ----- Routers -----
27
28 begin routers
29
30 client:
31   driver = accept
32   condition = ${if eq {SERVER}{server}{no}{yes}}
33   transport = send_to_server
34
35 server:
36   driver = accept
37   transport = send_to_server
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 send_to_server:
45   driver = smtp
46   connection_max_messages = 0
47   allow_localhost
48   hosts = 127.0.0.1
49   port = PORT_D
50   interface = ${if eq {$sender_address_domain}{dustybelt.tld} {127.0.0.1}{127.0.0.2}}
51
52 # ----- Retry -----
53
54 begin retry
55
56 * * F,5d,10s
57
58 # End
59