Fix CVE-2016-1531
[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
12 # ----- Main settings -----
13
14 log_selector =  \
15               +sender_on_delivery
16 ignore_bounce_errors_after = 0s
17 qualify_domain = test.ex
18 queue_run_in_order
19 queue_only
20
21
22 # ----- ACLs ----
23
24 begin acl
25
26 expand_check:
27   accept message = ACL
28
29 # ----- Routers -----
30
31 begin routers
32
33 bounce:
34   driver = redirect
35   allow_defer
36   allow_fail
37   data = :fail: just discard
38   retry_use_local_part
39   senders = :
40   debug_print = R: $router_name  (${acl {expand_check}})
41
42 client:
43   driver = accept
44   retry_use_local_part
45   transport = send_to_server
46   debug_print = R: $router_name  (${acl {expand_check}})
47
48
49 # ----- Transports -----
50
51 begin transports
52
53 send_to_server:
54   driver = smtp
55   allow_localhost
56   command_timeout = 1s
57   hosts = 127.0.0.1
58   port = PORT_S
59   debug_print = T: $transport_name  (${acl {expand_check}})
60
61
62 # ----- Retry -----
63
64
65 begin retry
66
67 * * F,5d,10s
68
69
70 # End