update to pre-4.87 master
[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
afda344b
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
bfe645c1
JH
16log_selector = +outgoing_port
17
afda344b
PH
18acl_smtp_rcpt = accept
19
20queue_only
21queue_run_in_order
22
23# Set certificate only if server
24
25tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
26tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
27
28tls_advertise_hosts = HOSTIPV4
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
e97957bc 49 hosts = HOSTS
afda344b
PH
50 hosts_require_tls = *
51 port = PORT_D
52
e97957bc
PH
53
54# ----- Retry -----
55
56begin retry
57
58* tls_required
59* * F,1d,5m
60
afda344b 61# End