Another small test tweak.
[exim.git] / test / confs / 0173
CommitLineData
afda344b
PH
1# Exim test configuration 0173
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex
14qualify_domain = test.ex
15
16system_filter = DIR/aux-var/TESTNUM.filter
17system_filter_pipe_transport = pipe
18trusted_users = CALLER
19
20
21# ----- Routers -----
22
23begin routers
24
25all:
26 driver = accept
27 retry_use_local_part
28 transport = appendfile
29
30
31# ----- Transports -----
32
33begin transports
34
35appendfile:
36 driver = appendfile
37 file = DIR/test-mail/$local_part
38 user = CALLER
39
40pipe:
41 driver = pipe
42 return_output
43 user = CALLER
44
45
46# ----- Retry -----
47
48begin retry
49
50* * F,5d,1d
51
52
53# End