Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 2125
CommitLineData
afda344b
PH
1# Exim test configuration 2125
2
3SERVER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = accept
16
17log_selector = +tls_peerdn+tls_certificate_verified
18
19queue_only
20queue_run_in_order
21
22tls_advertise_hosts = *
23
24tls_require_ciphers = ${if eq{$sender_host_address}{HOSTIPV4}\
25 {AES}{!AES:3DES}}
26
27# Set certificate only if server
28
29tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
30tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
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
51 hosts = HOSTIPV4 : 127.0.0.1
52 hosts_require_tls = HOSTIPV4
53 tls_require_ciphers = DES-CBC3-SHA
54 port = PORT_D
610ff438 55 tls_try_verify_hosts = :
afda344b
PH
56
57
58# ----- Retry -----
59
60
61begin retry
62
63* * F,5d,10s
64
65
66# End