Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 2100
1 # Exim test configuration 2100
2
3 SERVER=
4
5 .include DIR/aux-var/tls_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 .ifdef _HAVE_TLS
10 # that was purely to trigger the lazy-create of builtin macros
11 .endif
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = accept
15
16 log_selector = +tls_peerdn
17
18 queue_only
19 queue_run_in_order
20
21 tls_advertise_hosts = *
22
23 # Set certificate only if server
24
25 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
26 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
27
28 tls_verify_hosts = *
29 tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
30
31
32 # ----- Routers -----
33
34 begin routers
35
36 client:
37 driver = accept
38 condition = ${if eq {SERVER}{server}{no}{yes}}
39 retry_use_local_part
40 transport = send_to_server
41
42
43 # ----- Transports -----
44
45 begin transports
46
47 send_to_server:
48 driver = smtp
49 allow_localhost
50 hosts = 127.0.0.1
51 port = PORT_D
52 tls_certificate = DIR/aux-fixed/cert2
53 tls_privatekey = DIR/aux-fixed/cert2
54 tls_verify_certificates = DIR/aux-fixed/cert2
55 tls_try_verify_hosts = :
56
57
58 # ----- Retry -----
59
60
61 begin retry
62
63 * * F,5d,10s
64
65
66 # End