Testsuite: bounce_message_file and warn_message_file
[exim.git] / test / confs / 0191
1 # Exim test configuration 0191
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 domainlist local_domains = test.ex
9 qualify_domain = test.ex
10
11 # ----- Routers -----
12
13 begin routers
14
15 others:
16 driver = manualroute
17 domains = ! +local_domains
18 route_list = * 127.0.0.1 byname
19 self = send
20 transport = smtp
21 no_more
22
23
24 # ----- Transports -----
25
26 begin transports
27
28 smtp:
29 driver = smtp
30 port = PORT_S
31 hosts_try_fastopen = :
32 transport_filter = \
33 /bin/sh -c \
34 "cat >/dev/null; printf Line-without-end || /bin/echo -n Line-without-end"
35
36
37 # End