CRL addition returns count of CRLs added
[exim.git] / test / confs / 0371
CommitLineData
afda344b
PH
1# Exim test configuration 0371
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13primary_hostname = mail.test.ex
14qualify_domain = test.ex
15
16acl_smtp_connect = connect
17acl_smtp_mail = mail
18acl_smtp_rcpt = rcpt
19acl_smtp_data = data
20acl_smtp_vrfy = vrfy
21
22
23# ----- ACL -----
24
25begin acl
26
27connect:
28 accept set acl_c0 = $acl_c0; connect
29 set acl_c9 = $acl_c9; connect
30
31mail:
32 accept set acl_c0 = $acl_c0; mail
33 set acl_c9 = $acl_c9; mail
34 set acl_m0 = $acl_m0; mail
35
36rcpt:
37 accept set acl_m0 = $acl_m0; rcpt
38 set acl_m9 = $acl_m9; rcpt
39 set acl_c0 = $acl_c0; rcpt
40
41data:
42 accept set acl_m0 = $acl_m0; data
43 set acl_m9 = $acl_m9; data
44
45vrfy:
46 accept set acl_c0 = $acl_c0; vrfy
47 set acl_c9 = $acl_c9; vrfy
48 set acl_m0 = $acl_m0; vrfy
49
50
51# End