Note MAIL commands in -bS batch, to avoid smtp_no_mail logline. Bug 1346
[exim.git] / test / confs / 0513
1 # Exim test configuration 0513
2
3 HARDLIMIT=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 acl_smtp_rcpt = check_rcpt
16
17
18 # ----- ACL -----
19
20 begin acl
21
22 check_rcpt:
23 defer !verify = recipient
24 message = >$acl_verify_message< ++++
25
26
27 # ----- Routers -----
28
29 begin routers
30
31 r1:
32 driver = dnslookup
33 transport = t1
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 t1:
41 driver = appendfile
42 file = /dev/null
43 user = CALLER
44
45 # End