Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0218
CommitLineData
afda344b
PH
1# Exim test configuration 0218
2
4fab92fb
HSHR
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9log_selector = \
10 +sender_on_delivery
11ignore_bounce_errors_after = 0s
12qualify_domain = test.ex
13queue_run_in_order
14queue_only
15
16
cb46fd2b
JH
17# ----- ACLs ----
18
19begin acl
20
21expand_check:
22 accept message = ACL
23
afda344b
PH
24# ----- Routers -----
25
26begin routers
27
28bounce:
29 driver = redirect
30 allow_defer
31 allow_fail
32 data = :fail: just discard
33 retry_use_local_part
34 senders = :
cb46fd2b 35 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
36
37client:
38 driver = accept
39 retry_use_local_part
40 transport = send_to_server
cb46fd2b 41 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
42
43
44# ----- Transports -----
45
46begin transports
47
48send_to_server:
49 driver = smtp
50 allow_localhost
51 command_timeout = 1s
52 hosts = 127.0.0.1
53 port = PORT_S
cb46fd2b 54 debug_print = T: $transport_name (${acl {expand_check}})
afda344b
PH
55
56
57# ----- Retry -----
58
59
60begin retry
61
62* * F,5d,10s
63
64
65# End