Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0553
1 # Exim test configuration 0553
2
3 DCF =
4 SERVER =
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = check_recipient
17
18 queue_only
19
20 # ----- ACL -----
21
22 begin acl
23
24 check_recipient:
25 # Callouts accepted with a delay
26 accept senders = :
27 delay = 1s
28
29 # Non-callouts do the callout
30 accept verify = recipient/callout
31 DCF
32
33
34 # ----- Routers -----
35
36 begin routers
37
38 t1:
39 driver = manualroute
40 route_list = * 127.0.0.1 byname
41 self = send
42 transport = smtp
43
44
45 # ----- Transports -----
46
47 begin transports
48
49 smtp:
50 driver = smtp
51 port = PORT_D
52 command_timeout = 2s
53
54
55 # ----- Retry -----
56
57 begin retry
58
59 * * F,5d,10s
60
61
62 # End