SPF configuration
Sender Policy Framework (SPF) is defined in RFC7208, Sender Policy Framework (SPF) for Authorizing Use of Domains in Email.
DNS SPF text record example:
IN TXT "v=spf1 mx a ip4:192.168.0.100 ip6:2001:ef3:2911::/64"
" a:mail.example.org a:mail2.example.org -all"
-
v=spf1
Version attribute. only v1 available. -
mx
a
DNS record type. This indicated thatmx
anda
records within the domain are authorized senders. -
ip4:192.168.0.100
indicates that an ipv4 address as specified is authorized as a sender. -
ip6:2001:ef3:2911::/64
Sepcifies that an ipv6 subnet is authorized as a sender -
-all
specifies a fail if the sender doesn't match what is specified in the record. other valid qualifiers are "+" pass, "-" fail, "~" softfail, "?" neutral
About:
This page forms part of our Project Docker-Mail.
Page Metadata
Version: ToDo: place files short git commit hereDate Created: 2022-02-17
Date Edited: 2023-05-23
Contribution:
Would You like to contribute to our Docker-Mail project? You can assist in the following ways:
- Edit This Page If there is a mistake or a way you can improve it.
- Add a Page to the Manual if you would like to add an item to our manual
- Raise an Issue if there is something about this page you would like to improve, and git is unfamiliar to you.
ToDo: Add the page list of contributors