Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 2125
1 # Exim test configuration 2125
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+tls_certificate_verified
18
19 queue_only
20 queue_run_in_order
21
22 tls_advertise_hosts = *
23
24 tls_require_ciphers = ${if eq{$sender_host_address}{HOSTIPV4}\
25 {AES}{!AES:3DES}}
26
27 # Set certificate only if server
28
29 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
30 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
31
32
33 # ----- Routers -----
34
35 begin routers
36
37 client:
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
46 begin transports
47
48 send_to_server:
49 driver = smtp
50 allow_localhost
51 hosts = HOSTIPV4 : 127.0.0.1
52 hosts_require_tls = HOSTIPV4
53 tls_require_ciphers = DES-CBC3-SHA
54 port = PORT_D
55 tls_try_verify_hosts = :
56
57
58 # ----- Retry -----
59
60
61 begin retry
62
63 * * F,5d,10s
64
65
66 # End