42d6c188b94f05a2228a0474a0c639685a410555
[exim.git] / test / confs / 0462
1 # Exim test configuration 0462
2
3 SELECTOR=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 rfc1413_query_timeout = 0s
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 domainlist local_domains = test.ex
17
18 acl_smtp_rcpt = $local_part
19 smtp_return_error_details
20 log_selector = SELECTOR
21
22 # ----- ACL -----
23
24 begin acl
25
26 checkpm:
27 deny !verify = sender/callout=postmaster
28 accept
29
30 nocheckpm:
31 deny !verify = sender/callout
32 accept
33
34 # ----- Routers -----
35
36 begin routers
37
38 all:
39 driver = manualroute
40 route_list = * 127.0.0.1
41 self = send
42 transport = smtp
43
44
45 # ----- Transports -----
46
47 begin transports
48
49 smtp:
50 driver = smtp
51 port = PORT_S
52 interface = 127.0.0.1
53
54
55 # ----- Retry -----
56
57 begin retry
58
59 * * F,5d,10s
60
61
62 # End