Note MAIL commands in -bS batch, to avoid smtp_no_mail logline. Bug 1346
[exim.git] / test / confs / 2501
CommitLineData
afda344b
PH
1# Exim test configuration 2501
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
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 = dsearch;DIR/aux-fixed/TESTNUM.domains
14
15
16# ------ Routers ------
17
18begin routers
19
20r1:
21 driver = accept
22 domains = +local_domains
23 transport = t1
24
25
26# ------ Transports ------
27
28begin transports
29
30t1:
31 driver = appendfile
32 file = /dev/null
33 user = CALLER
34
35
36# ------ Retry ------
37
38begin retry
39
40* * F,1d,10m
41
42# End