Note MAIL commands in -bS batch, to avoid smtp_no_mail logline. Bug 1346
[exim.git] / test / confs / 0497
1 # Exim test configuration 0497
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
14
15 # ----- Routers -----
16
17 begin routers
18
19 r0:
20 driver = redirect
21 senders = :
22 data = :blackhole: discard bounces
23
24 r1:
25 driver = accept
26 transport = t1
27
28
29 # ----- Transports -----
30
31 begin transports
32
33 t1:
34 driver = smtp
35 hosts = 127.0.0.1
36 port = PORT_S
37 allow_localhost
38
39
40 # ----- Retry -----
41
42 begin retry
43
44 * lost_connection
45 * mail_4xx
46 * rcpt_4xx
47 * data_4xx
48 * * F,1d,15m
49
50
51 # End