Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 0464
CommitLineData
afda344b
PH
1# Exim test configuration 0464
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
afda344b
PH
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = rcpt
16
17domainlist local_domains = test.ex
18domainlist special_domains = lsearch;DIR/aux-fixed/TESTNUM.domains
19
20
21# ----- ACLs -----
22
23begin acl
24
25rcpt:
26 require domains = +special_domains
27 verify = recipient
28
29 require domains = +special_domains
30 verify = recipient
31 accept
32
33
34# ----- Routers -----
35
36begin routers
37
38r1:
39 driver = redirect
40 domains = +special_domains
41 data = $local_part@xxx.$domain
42
43r2:
44 driver = accept
45 transport = smtp
46
47
48# ----- Transports -----
49
50begin transports
51
52smtp:
53 driver = smtp
54 port = PORT_S
55
56# End