87d0adc350815b92e1d2a6c4fbd1422f27e3c1c1
[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 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 domainlist local_domains = test.ex
16
17 acl_smtp_rcpt = $local_part
18 smtp_return_error_details
19 log_selector = SELECTOR
20
21 # ----- ACL -----
22
23 begin acl
24
25 checkpm:
26   deny    !verify  = sender/callout=postmaster
27   accept
28
29 nocheckpm:
30   deny    !verify  = sender/callout
31   accept
32
33 # ----- Routers -----
34
35 begin routers
36
37 all:
38   driver = manualroute
39   route_list = * 127.0.0.1
40   self = send
41   transport = smtp
42
43
44 # ----- Transports -----
45
46 begin transports
47
48 smtp:
49   driver = smtp
50   port = PORT_S
51
52
53 # ----- Retry -----
54
55 begin retry
56
57 * * F,5d,10s
58
59
60 # End