Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0042
CommitLineData
afda344b
PH
1# Exim test configuration 0042
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
12acl_smtp_vrfy = accept
13domainlist local_domains = test.ex
14qualify_domain = test.ex
15
16
17# ----- Routers -----
18
19begin routers
20
21fail_remote_domains:
22 driver = redirect
23 domains = ! +local_domains
24 data = :fail: unrouteable mail domain "$domain"
25
81e509d7
PH
26fail_expansion:
27 driver = redirect
28 local_parts = expan
29 data = ${if with syntax error
30
afda344b
PH
31localuser:
32 driver = accept
33 local_parts = userx
34 transport = local_delivery
35
36
37# ----- Transports -----
38
39begin transports
40
41local_delivery:
42 driver = appendfile
43 delivery_date_add
44 envelope_to_add
45 file = DIR/test-mail/$local_part
46 return_path_add
47 user = CALLER
48
49
50# End