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