TLS: when tls_certificates unset, generate a selfsigned cert
[exim.git] / test / confs / 0309
CommitLineData
afda344b
PH
1# Exim test configuration 0309
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
15domainlist local_domains = test.ex : *.test.ex
16
17
18# ----- Routers -----
19
20begin routers
21
22bounce:
23 driver = accept
24 senders = :
25 transport = bounce
26
27all:
28 driver = accept
29 transport = local_delivery
30
31
32# ----- Transports -----
33
34begin transports
35
36local_delivery:
37 driver = appendfile
38 file = DIR/test-mail/$local_part
39 message_size_limit = $local_part
40 user = CALLER
41
42bounce:
43 driver = appendfile
44 file = DIR/test-mail/$local_part
45 user = CALLER
46
47
48# End