Debug: "kill" option on ACL control=debug. Bug 1831
[exim.git] / test / confs / 0110
CommitLineData
afda344b
PH
1# Exim test configuration 0110
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
14acl_smtp_rcpt = check_recipient
15acl_smtp_data = check_message
16
17domainlist local_domains = test.ex
18qualify_domain = test.ex
19
20
21# ----- Routers -----
22
23begin routers
24
25deliver:
26 driver = accept
27 condition = ${if eq{$original_local_part}{second}{yes}{no}}
28 retry_use_local_part
29 transport = appendfile
30
31first:
32 driver = redirect
33 allow_defer
34 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
35 forbid_file
36 forbid_pipe
37 one_time
38 retry_use_local_part
39
40second:
41 driver = redirect
42 allow_defer
43 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
44 retry_use_local_part
45
46
47# ----- Transports -----
48
49begin transports
50
51appendfile:
52 driver = appendfile
53 file = DIR/test-mail/$local_part
54 user = CALLER
55
56
57# ----- Retry -----
58
59
60begin retry
61
62* * F,5d,1d
63
64
65# End