TLS: when tls_certificates unset, generate a selfsigned cert
[exim.git] / test / confs / 0030
CommitLineData
afda344b
PH
1# Exim test configuration 0030
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
15acl_smtp_rcpt = check_rcpt
16
17
18# ------ ACL ------
19
20begin acl
21
22check_rcpt:
23 accept message = <<$address_data>>
24 verify = recipient
25 message = >>$address_data<<
26 condition = no
27
28
29# ------ Routers ------
30
31begin routers
32
33r1:
34 driver = accept
35 address_data = data from accept router
36 local_parts = OK
37 transport = t1
38
39# Always declines, but sets $address_data
40
41r2:
42 driver = redirect
43 address_data = data from redirect router
44 data =
45
46
47# ------ Transports ------
48
49begin transports
50
51t1:
52 driver = appendfile
53 file = /dev/null
54
55# End