Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0417
1 # Exim test configuration 0417
2
3 RETURN_ERROR_DETAILS = false
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 primary_hostname = mail.test.ex
15 qualify_domain = test.ex
16
17 acl_smtp_rcpt = rcpt
18 smtp_return_error_details = RETURN_ERROR_DETAILS
19
20
21 # ----- ACLs -----
22
23 begin acl
24
25 rcpt:
26 require verify = sender
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 r1:
34 driver = dnslookup
35 transport = t1
36
37
38 # ----- Transports -----
39
40 begin transports
41
42 t1:
43 driver = smtp
44
45 # End