Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 2101
CommitLineData
afda344b
PH
1# Exim test configuration 2101
2
3OPTION=
4SERVER=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17acl_smtp_rcpt = accept
18
19log_selector = +tls_peerdn
20
21queue_only
22queue_run_in_order
23
24tls_advertise_hosts = *
25
26# Set certificate only if server
27
28tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
29tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
30
31tls_verify_hosts = *
32tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
33
34
35# ----- Routers -----
36
37begin routers
38
39client:
40 driver = accept
41 condition = ${if eq {SERVER}{server}{no}{yes}}
42 retry_use_local_part
43 transport = send_to_server
44
45
46# ----- Transports -----
47
48begin transports
49
50send_to_server:
51 driver = smtp
52 allow_localhost
53 hosts = 127.0.0.1
54 OPTION
55 port = PORT_D
56 tls_certificate = DIR/aux-fixed/cert2
57 tls_privatekey = DIR/aux-fixed/cert2
58 tls_verify_certificates = DIR/aux-fixed/cert2
59
60
61# ----- Retry -----
62
63
64begin retry
65
66* * F,5d,10s
67
68
69# End