Docs: clarify helo_allow_chars option
[exim.git] / test / confs / 0576
1 # Exim test configuration 0576
2
3 SERVER =
4
5 .include DIR/aux-var/std_conf_prefix
6
7 log_selector = +received_recipients +sender_on_delivery
8
9 acl_smtp_rcpt = rcpt
10 acl_not_smtp_start = not_smtp
11
12 queue_only
13 queue_run_in_order
14
15 #---------------
16
17 begin acl
18
19 rcpt:
20   accept
21     queue = ${extract {$local_part} {normal="" alternate=alternate lowpri=lowpri}}
22     logwrite = using queue '$queue_name'
23
24 not_smtp:
25   accept
26     queue = example
27
28 #---------------
29
30 begin routers
31
32 all:
33   driver = accept
34   transport = dump
35
36 #---------------
37
38 begin transports
39
40 dump:
41   driver = pipe
42   command = true
43
44 # End
45