Note MAIL commands in -bS batch, to avoid smtp_no_mail logline. Bug 1346
[exim.git] / test / confs / 0090
CommitLineData
afda344b
PH
1# Exim test configuration 0090
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
13
14
15# ----- Routers -----
16
17begin routers
18
19respond:
20 driver = accept
21 retry_use_local_part
22 senders = !:
23 transport = respond
24
25localuser:
26 driver = accept
27 check_local_user
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
40respond:
41 driver = autoreply
42 text = This is an autogenerated message.
43 to = $sender_address
44 user = EXIMUSER
45
46
47# End