Fix CVE-2016-1531
[exim.git] / test / confs / 0310
1 # Exim test configuration 0310
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 no_bounce_return_message
15
16 # ----- Routers -----
17
18 begin routers
19
20 bounce:
21   driver = accept
22   senders = :
23   transport = bounce
24
25 all:
26   driver = accept
27   transport = local_delivery
28
29
30 # ----- Transports -----
31
32 begin transports
33
34 local_delivery:
35   driver = appendfile
36   file = DIR/test-mail/$local_part
37   quota = 5
38   user = CALLER
39
40 bounce:
41   driver = appendfile
42   file = DIR/test-mail/$local_part
43   user = CALLER
44
45
46 # End