Handle absent tls_require_ciphers correctly.
[exim.git] / test / confs / 0209
CommitLineData
afda344b
PH
1# Exim test configuration 0209
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = check_recipient
14domainlist local_domains = test.ex
15qualify_domain = test.ex
16queue_run_in_order
17
18# ----- ACL -----
19
20begin acl
21
22check_recipient:
23 accept hosts = :
24 accept domains = +local_domains
25 deny message = relay not permitted
26
27
28# ----- Routers -----
29
30begin routers
31
32others:
33 driver = manualroute
34 domains = ! +local_domains
35 route_list = * 127.0.0.1 byname
36 self = send
37 transport = smtp
38 no_more
39
40# ----- Transports -----
41
42begin transports
43
44smtp:
45 driver = smtp
46 port = PORT_S
47
48
49# ----- Retry -----
50
51begin retry
52
53* * F,5d,8h
54
55
56# End