sender verify callout
[exim.git] / test / confs / 0191
CommitLineData
afda344b
PH
1# Exim test configuration 0191
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
12domainlist local_domains = test.ex
13qualify_domain = test.ex
14
15# ----- Routers -----
16
17begin routers
18
19others:
20 driver = manualroute
21 domains = ! +local_domains
22 route_list = * 127.0.0.1 byname
23 self = send
24 transport = smtp
25 no_more
26
27
28# ----- Transports -----
29
30begin transports
31
32smtp:
33 driver = smtp
34 port = PORT_S
35 transport_filter = \
4b145082
JH
36 /bin/sh -c \
37 "cat >/dev/null; printf Line-without-end || /bin/echo -n Line-without-end"
afda344b
PH
38
39
40# End