aec448cbea756f2d28303cac3d2d16f0e627ec29
[exim.git] / test / confs / 0310
1 # Exim test configuration 0310
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 no_bounce_return_message
14
15 # ----- Routers -----
16
17 begin routers
18
19 bounce:
20   driver = accept
21   senders = :
22   transport = bounce
23
24 all:
25   driver = accept
26   transport = local_delivery
27
28
29 # ----- Transports -----
30
31 begin transports
32
33 local_delivery:
34   driver = appendfile
35   file = DIR/test-mail/$local_part
36   quota = 5
37   user = CALLER
38
39 bounce:
40   driver = appendfile
41   file = DIR/test-mail/$local_part
42   user = CALLER
43
44
45 # End