5db2c0ae98d35052daaaf0ec9362c64426c10a7b
[exim.git] / test / confs / 0165
1 # Exim test configuration 0165
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 spool_directory = DIR/spool
6 log_file_path = DIR/spool/log/%slog
7 gecos_pattern = ""
8 gecos_name = CALLER_NAME
9
10 # ----- Main settings -----
11
12 domainlist local_domains = test.ex
13 qualify_domain = test.ex
14
15 system_filter = DIR/aux-var/0165.F
16 system_filter_pipe_transport = address_pipe
17 system_filter_user = CALLER
18
19
20 # ----- Routers -----
21
22 begin routers
23
24 user:
25 driver = accept
26 retry_use_local_part
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 user = CALLER
38
39 address_pipe:
40 driver = pipe
41 return_output
42 use_shell
43
44
45 # End