Additional tests - didn't show any problems.
[exim.git] / test / confs / 0496
CommitLineData
afda344b
PH
1# Exim test configuration 0496
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_rcpt
15
16
17# ----- ACL -----
18
19begin acl
20
21check_rcpt:
22 warn message = data1 data1\ndata2 data2
23 warn message = :after_received:After-Received: some text\n\
24 :at_start:At-Start: some text\n\
25 :at_end: At-End: some text
26 accept
27
28
29# ----- Routers -----
30
31begin routers
32
33r9:
34 driver = accept
35 transport = t1
36
37
38# ----- Transports -----
39
40begin transports
41
42t1:
43 driver = appendfile
44 file = DIR/test-mail/$local_part
45 user = CALLER
46
47# End