Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0191
1 # Exim test configuration 0191
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 spool_directory = DIR/spool
6 log_file_path = DIR/spool/log/%slog
7 gecos_pattern = ""
8 gecos_name = CALLER_NAME
9
10 # ----- Main settings -----
11
12 domainlist local_domains = test.ex
13 qualify_domain = test.ex
14
15 # ----- Routers -----
16
17 begin routers
18
19 others:
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
30 begin transports
31
32 smtp:
33 driver = smtp
34 port = PORT_S
35 transport_filter = \
36 /bin/sh -c \
37 "cat >/dev/null; printf Line-without-end || /bin/echo -n Line-without-end"
38
39
40 # End