SPF RFC에는 결국 나를 혼란스럽게하는 complex example이 포함되어 있습니다.SPF 다중 요구 사항 예제는 어떻게 작동합니까?
A.4. Multiple Requirements Example
Say that your sender policy requires both that the IP address is
within a certain range and that the reverse DNS for the IP matches.
This can be done several ways, including the following:
example.com. SPF ("v=spf1 "
"-include:ip4._spf.%{d} "
"-include:ptr._spf.%{d} "
"+all")
ip4._spf.example.com. SPF "v=spf1 -ip4:192.0.2.0/24 +all"
ptr._spf.example.com. SPF "v=spf1 -ptr +all"
This example shows how the "-include" mechanism can be useful, how an
SPF record that ends in "+all" can be very restrictive, and the use
of De Morgan's Law.
IP 주소가 실패한 경우 두 패턴이 포함됩니다. 마지막으로 +all
에서 허용하지 않습니까?