Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0025
1 # Exim test configuration 0025
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
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 domainlist relay_domains = ten-1.test.ex
15
16 acl_smtp_rcpt = acl_local
17
18 # ------ ACLs ------
19
20 begin acl
21
22 acl_local:
23 # Pass on for non-remote input (should all be)
24 require message = this message should not occur
25 hosts = :
26
27 # The redundant hosts check is just to ensure it works
28 accept verify = sender
29 verify = recipient
30 hosts = :
31
32 # ------ Routers ------
33
34 begin routers
35
36 r1:
37 driver = dnslookup
38 domains = ! +local_domains
39 transport = dev_null
40 no_more
41
42 r2:
43 driver = accept
44 local_parts = userx : postmaster
45 transport = local_delivery
46
47
48 # ------ Transports ------
49
50 begin transports
51
52 dev_null:
53 driver = appendfile
54 file = /dev/null
55 user = CALLER
56
57 local_delivery:
58 driver = appendfile
59 file = DIR/test-mail/$local_part
60 user = CALLER
61
62 # End