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