Fix dcc_header content corruption.
[exim.git] / test / confs / 2110
CommitLineData
afda344b
PH
1# Exim test configuration 2110
2
3SERVER =
e97957bc 4HOSTS = 127.0.0.1 : HOSTIPV4
afda344b
PH
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
19queue_only
20queue_run_in_order
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_advertise_hosts = HOSTIPV4
28
29
30# ----- Routers -----
31
32begin routers
33
34client:
35 driver = accept
36 condition = ${if eq {SERVER}{server}{no}{yes}}
37 retry_use_local_part
38 transport = send_to_server
39
40
41# ----- Transports -----
42
43begin transports
44
45send_to_server:
46 driver = smtp
47 allow_localhost
e97957bc 48 hosts = HOSTS
afda344b
PH
49 hosts_require_tls = *
50 port = PORT_D
51
e97957bc
PH
52
53# ----- Retry -----
54
55begin retry
56
57* tls_required
58* * F,1d,5m
59
afda344b 60# End