ddde76cb4f428dd01bc1191df10f5591e33deded
[exim.git] / test / confs / 0173
1 # Exim test configuration 0173
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/TESTNUM.filter
16 system_filter_pipe_transport = pipe
17 trusted_users = CALLER
18
19
20 # ----- Routers -----
21
22 begin routers
23
24 all:
25   driver = accept
26   retry_use_local_part
27   transport = appendfile
28
29
30 # ----- Transports -----
31
32 begin transports
33
34 appendfile:
35   driver = appendfile
36   file = DIR/test-mail/$local_part
37   user = CALLER
38
39 pipe:
40   driver = pipe
41   return_output
42   user = CALLER
43
44
45 # ----- Retry -----
46
47 begin retry
48
49 * * F,5d,1d
50
51
52 # End