Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 2100
1 # Exim test configuration 2100
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
24 # Set certificate only if server
25
26 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
27 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
28
29 tls_verify_hosts = *
30 tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}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 = 127.0.0.1
52 port = PORT_D
53 tls_certificate = DIR/aux-fixed/cert2
54 tls_privatekey = DIR/aux-fixed/cert2
55 tls_verify_certificates = DIR/aux-fixed/cert2
56 tls_try_verify_hosts = :
57
58
59 # ----- Retry -----
60
61
62 begin retry
63
64 * * F,5d,10s
65
66
67 # End