7ec81cc20a0aa98ef4d4c414f89697c97a973d28
[exim.git] / test / confs / 0032
1 # Exim test configuration 0032
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.ex
6 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12
13 # ----- Main settings -----
14
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 localuser:
22 driver = accept
23 check_local_user
24 transport = local_delivery
25
26 others:
27 driver = dnslookup
28 transport = smtp
29 self = fail
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 local_delivery:
37 driver = appendfile
38 delivery_date_add
39 envelope_to_add
40 file = DIR/test-mail/$local_part
41 return_path_add
42
43 smtp:
44 driver = smtp
45
46
47 # End