7a2d34b2f2cfd5a2088f56ab380e299ca3f705df
[exim.git] / test / confs / 2000
1 # Exim test configuration 2000
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/SERVER%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 acl_smtp_rcpt = accept
16
17 log_selector =  +tls_peerdn
18
19 queue_only
20 queue_run_in_order
21
22 tls_advertise_hosts = *
23 # needed to force generation
24 tls_dhparam = historic
25
26 # Set certificate only if server
27
28 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
29 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
30
31 tls_verify_hosts = *
32 tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
33
34
35 # ----- Routers -----
36
37 begin routers
38
39 client:
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
48 begin transports
49
50 send_to_server:
51   driver = smtp
52   allow_localhost
53   hosts = 127.0.0.1
54   port = PORT_D
55   tls_certificate = DIR/aux-fixed/cert2
56   tls_privatekey = DIR/aux-fixed/cert2
57   tls_verify_certificates = DIR/aux-fixed/cert2
58   tls_try_verify_hosts =
59
60
61 # ----- Retry -----
62
63
64 begin retry
65
66 * * F,5d,10s
67
68
69 # End