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