ba2135943456978dcf0e5b5f619e6ce16e03dccf
[exim.git] / test / confs / 4600
1 # Exim test configuration 4600
2
3 SERVER=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 acl_smtp_rcpt = check_rcpt
12
13 queue_only
14 queue_run_in_order
15
16
17 begin acl
18
19 check_rcpt:
20   accept        hosts =         HOSTIPV4
21                 spf_guess =     pass
22                 logwrite =      spf_result         $spf_result
23                 logwrite =      spf_header_comment $spf_header_comment
24                 logwrite =      spf_smtp_comment   $spf_smtp_comment
25                 logwrite =      spf_received       $spf_received
26
27   accept        hosts =         127.0.0.1
28                 spf =           pass : softfail : neutral
29                 logwrite =      spf_result         $spf_result
30                 logwrite =      spf_header_comment $spf_header_comment
31                 logwrite =      spf_smtp_comment   $spf_smtp_comment
32                 logwrite =      spf_received       $spf_received
33
34   deny
35                 logwrite =      spf_result         $spf_result
36                 logwrite =      spf_header_comment $spf_header_comment
37                 logwrite =      spf_smtp_comment   $spf_smtp_comment
38                 logwrite =      spf_received       $spf_received
39
40 # End