d93b683d9515060480d3b786467dd38a6c31a303
[exim.git] / test / confs / 4600
1 # Exim test configuration 4600
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = check_rcpt
10
11 begin acl
12
13 check_rcpt:
14   accept        hosts =         HOSTIPV4
15                 spf_guess =     pass
16                 logwrite =      spf_result         $spf_result
17                 logwrite =      spf_header_comment $spf_header_comment
18                 logwrite =      spf_smtp_comment   $spf_smtp_comment
19                 logwrite =      spf_received       $spf_received
20
21   accept        hosts =         127.0.0.1
22                 spf =           pass : softfail : neutral
23                 logwrite =      spf_result         $spf_result
24                 logwrite =      spf_header_comment $spf_header_comment
25                 logwrite =      spf_smtp_comment   $spf_smtp_comment
26                 logwrite =      spf_received       $spf_received
27
28   deny
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 # End