c5426f45f098ffbaa4062d47d9af2ccf0f5fe181
[exim.git] / test / confs / 0286
1 # Exim test configuration 0286
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 qualify_domain = test.ex
14 queue_only
15 remote_max_parallel = 2
16
17
18 # ----- Routers -----
19
20 begin routers
21
22 bounces:
23   driver = redirect
24   senders = :
25   data = :blackhole:
26
27 all:
28   driver = manualroute
29   route_list = * 127.0.0.1 byname
30   self = send
31   transport = smtp
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 smtp:
39   driver = smtp
40   port = PORT_S
41   max_rcpt = 2
42   connection_max_messages = 3
43
44
45 # ----- Retry -----
46
47
48 begin retry
49
50 * * F,1h,10m
51
52
53 # End