Commit | Line | Data |
---|---|---|
afda344b PH |
1 | # Exim test configuration 0462 |
2 | ||
278c6e6c PH |
3 | SELECTOR= |
4 | ||
d4dc049f JH |
5 | .include DIR/aux-var/std_conf_prefix |
6 | ||
afda344b | 7 | primary_hostname = myhost.test.ex |
afda344b PH |
8 | |
9 | # ----- Main settings ----- | |
10 | ||
11 | domainlist local_domains = test.ex | |
12 | ||
13 | acl_smtp_rcpt = $local_part | |
14 | smtp_return_error_details | |
278c6e6c | 15 | log_selector = SELECTOR |
afda344b PH |
16 | |
17 | # ----- ACL ----- | |
18 | ||
19 | begin acl | |
20 | ||
21 | checkpm: | |
22 | deny !verify = sender/callout=postmaster | |
23 | accept | |
24 | ||
25 | nocheckpm: | |
26 | deny !verify = sender/callout | |
27 | accept | |
28 | ||
29 | # ----- Routers ----- | |
30 | ||
31 | begin routers | |
32 | ||
33 | all: | |
34 | driver = manualroute | |
35 | route_list = * 127.0.0.1 | |
36 | self = send | |
37 | transport = smtp | |
38 | ||
39 | ||
40 | # ----- Transports ----- | |
41 | ||
42 | begin transports | |
43 | ||
44 | smtp: | |
45 | driver = smtp | |
46 | port = PORT_S | |
277b9979 | 47 | hosts_try_fastopen = : |
afda344b PH |
48 | |
49 | ||
50 | # ----- Retry ----- | |
51 | ||
52 | begin retry | |
53 | ||
54 | * * F,5d,10s | |
55 | ||
56 | ||
57 | # End |