Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0032
CommitLineData
afda344b
PH
1# Exim test configuration 0032
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11
12# ----- Main settings -----
13
0e22dfd1 14dsn_from = MailProgram <xyz@some.where>
afda344b
PH
15
16
17# ----- Routers -----
18
19begin routers
20
21localuser:
22 driver = accept
23 check_local_user
24 transport = local_delivery
25
26others:
27 driver = dnslookup
28 transport = smtp
29 self = fail
30
31
32# ----- Transports -----
33
34begin transports
35
36local_delivery:
37 driver = appendfile
38 delivery_date_add
39 envelope_to_add
40 file = DIR/test-mail/$local_part
41 return_path_add
42
43smtp:
44 driver = smtp
45
46
47# End