5517f8f5e335b5340f78568d1f35310b6ba4182e
[exim.git] / test / confs / 0298
1 # Exim test configuration 0298
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 acl_smtp_rcpt = check_rcpt
14 system_filter = DIR/aux-fixed/TESTNUM.Filter
15
16
17 # ------ ACL ------
18
19 begin acl
20
21 check_rcpt:
22   accept
23
24
25 # ------ Routers ------
26
27 begin routers
28
29 r1:
30   driver = accept
31   transport = t1
32
33 # ------ Transports ------
34
35 begin transports
36
37 t1:
38   driver = appendfile
39   file = DIR/test-mail/$local_part
40   user = CALLER
41
42 # End