CRL addition returns count of CRLs added
[exim.git] / test / confs / 0544
CommitLineData
1bf43b78
PH
1# Exim test configuration 0544
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
3cf91d6d 13domainlist dlist = $domain
1bf43b78
PH
14
15acl_smtp_helo = check_helo
16acl_smtp_mail = check_mail
17acl_smtp_rcpt = check_rcpt
3cf91d6d 18queue_smtp_domains = $domain
1bf43b78
PH
19qualify_domain = test.ex
20
21
22# ----- ACLs -----
23
24begin acl
25
26check_helo:
27 warn
28 condition = ${if match_domain {$sender_helo_name}{+dlist}}
29 accept
30
31
32check_mail:
33 warn hosts = domain=$domain/sender_domain=$sender_address_domain
34 accept
35
36check_rcpt:
37 warn domains = domain=$domain/sender_domain=$sender_address_domain
38 warn sender_domains = domain=$domain/sender_domain=$sender_address_domain
39 accept
40
41
42# ----- Routers -----
43
44begin routers
45
46smarthost:
47 driver = accept
48 transport = smtp
49
50
51# ----- Transports -----
52
53begin transports
54
55smtp:
56 driver = smtp
57 hosts = 127.0.0.1
58 allow_localhost
59 port = PORT_S
60
61
62# ----- Retry -----
63
64
65begin retry
66
67* * F,5d,15m
68
69
70# End