Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 3600
1 # Exim test configuration 3600
2
3 SERVER=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 acl_smtp_rcpt = check_recipient
12 queue_only
13 trusted_users = CALLER
14
15
16 # ----- ACL -----
17
18 begin acl
19
20 check_recipient:
21   deny     message = authentication required
22           !authenticated = *
23   accept
24
25
26 # ----- Authentication -----
27
28 begin authenticators
29
30 # Forced expansion failure
31 spabad:
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
37   server_set_id = $auth1
38
39 spa:
40   driver = spa
41   public_name = NTLM
42   client_password = $sender_address
43   client_username = username
44   server_debug_print = +++SPA \$auth1="$auth1"
45   server_password = ok@test.ex
46   server_set_id = $auth1
47
48
49 # ----- Routers -----
50
51 begin routers
52
53 r1:
54   driver = accept
55   transport = t1
56
57
58 # ----- Transports -----
59
60 begin transports
61
62 t1:
63   driver = smtp
64   hosts = 127.0.0.1
65   port = PORT_D
66   hosts_try_fastopen =  :
67   allow_localhost
68   hosts_require_auth = *
69
70
71 # ----- Retry -----
72
73 begin retry
74
75 *  *  F,1d,1d
76
77 # End