testcase
[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 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 no_bounce_return_message
16
17 # ----- Routers -----
18
19 begin routers
20
21 bounce:
22 driver = accept
23 senders = :
24 transport = bounce
25
26 all:
27 driver = accept
28 transport = local_delivery
29
30
31 # ----- Transports -----
32
33 begin transports
34
35 local_delivery:
36 driver = appendfile
37 file = DIR/test-mail/$local_part
38 quota = 5
39 user = CALLER
40
41 bounce:
42 driver = appendfile
43 file = DIR/test-mail/$local_part
44 user = CALLER
45
46
47 # End