Fix CVE-2016-1531
[exim.git] / test / confs / 3600
1 # Exim test configuration 3600
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 rfc1413_query_timeout = 0s
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 acl_smtp_rcpt = check_recipient
18 queue_only
19 trusted_users = CALLER
20
21
22 # ----- ACL -----
23
24 begin acl
25
26 check_recipient:
27   deny     message = authentication required
28           !authenticated = *
29   accept
30
31
32 # ----- Authentication -----
33
34 begin authenticators
35
36 # Forced expansion failure
37 spabad:
38   driver = spa
39   public_name = NTLMX
40   client_password = ${if eq{1}{0}{xxx}fail}
41   client_username = username
42   server_password = ok@test.ex
43
44 spa:
45   driver = spa
46   public_name = NTLM
47   client_password = $sender_address
48   client_username = username
49   server_debug_print = +++SPA \$auth1="$auth1"
50   server_password = ok@test.ex
51
52
53 # ----- Routers -----
54
55 begin routers
56
57 r1:
58   driver = accept
59   transport = t1
60
61
62 # ----- Transports -----
63
64 begin transports
65
66 t1:
67   driver = smtp
68   hosts = 127.0.0.1
69   port = PORT_D
70   allow_localhost
71   hosts_require_auth = *
72
73
74 # ----- Retry -----
75
76 begin retry
77
78 *  *  F,1d,1d
79
80 # End