Add variables for wildcard portion of local-part affix. Bug 281
[exim.git] / test / confs / 2025
CommitLineData
afda344b
PH
1# Exim test configuration 2025
2
3SERVER=
4
d4dc049f
JH
5.include DIR/aux-var/tls_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = accept
12
13log_selector = +tls_peerdn+tls_certificate_verified
14
15queue_only
16queue_run_in_order
17
18tls_advertise_hosts = *
19
8008accd 20tls_require_ciphers = NORMAL:-VERS-ALL:+VERS-TLS1.2:-MAC-ALL:+SHA256
afda344b
PH
21
22# Set certificate only if server
23
24tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
25tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
26
27
28# ----- Routers -----
29
30begin routers
31
32client:
33 driver = accept
34 condition = ${if eq {SERVER}{server}{no}{yes}}
35 retry_use_local_part
36 transport = send_to_server
37
38
39# ----- Transports -----
40
41begin transports
42
43send_to_server:
44 driver = smtp
45 allow_localhost
46 hosts = HOSTIPV4 : 127.0.0.1
afda344b 47 port = PORT_D
277b9979 48 hosts_try_fastopen = :
8008accd
JH
49 hosts_require_tls = HOSTIPV4
50 tls_require_ciphers = NORMAL:-VERS-ALL:+VERS-TLS1.2:-MAC-ALL:+SHA\
51 ${if eq{$host}{HOSTIPV4} {384} {256} }
afda344b
PH
52
53# ----- Retry -----
54
55
56begin retry
57
58* * F,5d,10s
59
60
61# End