Log deferred deliveries for transport max_parallel
[exim.git] / test / confs / 2111
CommitLineData
afda344b
PH
1# Exim test configuration 2111
2
3SERVER =
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = accept
16log_selector = +tls_peerdn
17queue_only
18queue_run_in_order
19
20tls_advertise_hosts = *
21
22# Set certificate only if server
23
24tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
25tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
26
27tls_verify_hosts = *
28tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
29
30
31# ----- Routers -----
32
33begin routers
34
35client:
36 driver = accept
37 condition = ${if eq {SERVER}{server}{no}{yes}}
38 retry_use_local_part
39 transport = send_to_server
40
41
42# ----- Transports -----
43
44begin transports
45
46send_to_server:
47 driver = smtp
48 allow_localhost
49 hosts = HOSTIPV4 : 127.0.0.1
50 hosts_require_tls = HOSTIPV4
51 port = PORT_D
52 tls_certificate = DIR/aux-fixed/cert2
53 tls_privatekey = DIR/aux-fixed/cert2
54 tls_require_ciphers = IDEA-CBC-MD5 \
55 ${if eq{$host_address}{127.0.0.1}{:DES-CBC3-SHA:RSA_ARCFOUR_SHA}}
56
57# End