Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 2111
1 # Exim test configuration 2111
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 log_selector = +tls_peerdn
17 queue_only
18 queue_run_in_order
19
20 tls_advertise_hosts = *
21
22 # Set certificate only if server
23
24 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
25 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
26
27 tls_verify_hosts = *
28 tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
29
30
31 # ----- Routers -----
32
33 begin routers
34
35 client:
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
44 begin transports
45
46 send_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