Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0164
CommitLineData
afda344b
PH
1# Exim test configuration 0164
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
15system_filter = DIR/aux-var/TESTNUM.F
16system_filter_pipe_transport = address_pipe
17system_filter_user = CALLER
18
19
20# ----- Routers -----
21
22begin routers
23
24user:
25 driver = accept
26 retry_use_local_part
27 transport = local_delivery
28
29
30# ----- Transports -----
31
32begin transports
33
34local_delivery:
35 driver = appendfile
36 file = DIR/test-mail/$local_part
37 user = CALLER
38
39address_pipe:
40 driver = pipe
41 return_output
42
43
44# End