More new test committing.
[exim.git] / test / confs / 0517
1 # Exim test configuration 0517
2
3 ERROR_DETAILS=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 rfc1413_query_timeout = 0s
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = a1
17
18
19 # ----- ACL ------
20
21 begin acl
22
23 a1:
24 accept local_parts = usery
25 control = suppress_local_fixups
26 accept
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 r1:
34 driver = accept
35 transport = t1
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 t1:
43 driver = appendfile
44 file = DIR/test-mail/$local_part
45 user = CALLER
46
47 # End