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