Testsuite: build a generic tls enabled client: client-anytls
[exim.git] / test / confs / 3600
CommitLineData
afda344b
PH
1# Exim test configuration 3600
2
3SERVER=
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
afda344b 7primary_hostname = myhost.test.ex
afda344b
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = check_recipient
12queue_only
13trusted_users = CALLER
14
15
16# ----- ACL -----
17
18begin acl
19
20check_recipient:
21 deny message = authentication required
22 !authenticated = *
23 accept
24
25
26# ----- Authentication -----
27
28begin authenticators
29
30# Forced expansion failure
31spabad:
32 driver = spa
33 public_name = NTLMX
34 client_password = ${if eq{1}{0}{xxx}fail}
35 client_username = username
36 server_password = ok@test.ex
f68fe5f6 37 server_set_id = $auth1
afda344b
PH
38
39spa:
40 driver = spa
41 public_name = NTLM
42 client_password = $sender_address
43 client_username = username
f78eb7c6 44 server_debug_print = +++SPA \$auth1="$auth1"
afda344b 45 server_password = ok@test.ex
f68fe5f6 46 server_set_id = $auth1
afda344b
PH
47
48
49# ----- Routers -----
50
51begin routers
52
53r1:
54 driver = accept
55 transport = t1
56
57
58# ----- Transports -----
59
60begin transports
61
62t1:
63 driver = smtp
64 hosts = 127.0.0.1
65 port = PORT_D
277b9979 66 hosts_try_fastopen = :
afda344b
PH
67 allow_localhost
68 hosts_require_auth = *
69
70
71# ----- Retry -----
72
73begin retry
74
75* * F,1d,1d
76
77# End