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