c6c8f7ddd0f327d71c4c0758914f6bee585c10e3
[exim.git] / test / confs / 0456
1 # Exim test configuration 0456
2
3 HOSTS_MAX_TRY=4
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 ignore_bounce_errors_after = 0s
15 qualify_domain = test.ex
16
17 # ----- Routers -----
18
19 begin routers
20
21 test_bus_error:
22   driver = redirect
23   local_parts = test-bus-error
24   errors_to = owner-bus-error@localhost
25   data = postmaster@localhost
26
27 accept:
28   driver = accept
29   transport = t1
30
31 # ----- Transports -----
32
33 begin transports
34
35 t1:
36   driver = appendfile
37   file = DIR/test-mail/$local_part
38   user = CALLER
39
40 # ----- Retry -----
41
42 begin retry
43
44 *                *  F,4s,1s
45
46 # End