Adjust runtest -CONTINUE to work everywhere
[exim.git] / test / confs / 0218
CommitLineData
afda344b
PH
1# Exim test configuration 0218
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14log_selector = \
15 +sender_on_delivery
16ignore_bounce_errors_after = 0s
17qualify_domain = test.ex
18queue_run_in_order
19queue_only
20
21
cb46fd2b
JH
22# ----- ACLs ----
23
24begin acl
25
26expand_check:
27 accept message = ACL
28
afda344b
PH
29# ----- Routers -----
30
31begin routers
32
33bounce:
34 driver = redirect
35 allow_defer
36 allow_fail
37 data = :fail: just discard
38 retry_use_local_part
39 senders = :
cb46fd2b 40 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
41
42client:
43 driver = accept
44 retry_use_local_part
45 transport = send_to_server
cb46fd2b 46 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
47
48
49# ----- Transports -----
50
51begin transports
52
53send_to_server:
54 driver = smtp
55 allow_localhost
56 command_timeout = 1s
57 hosts = 127.0.0.1
58 port = PORT_S
cb46fd2b 59 debug_print = T: $transport_name (${acl {expand_check}})
afda344b
PH
60
61
62# ----- Retry -----
63
64
65begin retry
66
67* * F,5d,10s
68
69
70# End