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