Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 0362
CommitLineData
afda344b
PH
1# Exim test configuration 0362
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14domainlist local_domains = *.test.ex
15domainlist relay_domains = a.b.c
16
17acl_smtp_rcpt = check_rcpt
18qualify_domain = test.ex
19
20log_selector = +address_rewrite
21
22
23# ----- ACL -----
24
25begin ACL
26
27check_rcpt:
28 accept domains = +local_domains
29 accept domains = +relay_domains
30 verify = recipient
31
32
33
34# ----- Routers -----
35
36begin routers
37
38r1:
39 driver = manualroute
40 domains = +relay_domains
41 route_list = a.b.c V4NET.9.8.7
42 transport = t1
43 no_more
44
45r2:
46 driver = accept
47 domains = +local_domains
48 transport = t2
49
50
51# ----- Transports -----
52
53begin transports
54
55t1:
56 driver = smtp
57
58t2:
59 driver = appendfile
60 file = DIR/test-mail/$local_part
61 user = CALLER
62
63
64# ----- Rewrite -----
65
66begin rewrite
67
68x@a.b.c x@x.test.ex
69
70
71# ----- Retry -----
72
73begin retry
74
75* * F,3s,1s; G,1h,2s,2
76
77# End