Sender Policy Framework: Unterschied zwischen den Versionen

Aus Foxwiki
Wechseln zu:Navigation, Suche
K Textersetzung - „Kategorie:Mail/Glossar“ durch „Kategorie:E-Mail/Glossar“
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
== SPF ==
DNS-Eintrag für SPF
v=spf1 +a +mx -all
SPF ist für diese Domain aktiviert
; Eintrag optimieren
Wenn Sie mehrere Domains auf Ihrem Server hosten, sollten Sie ihn wahrscheinlich ebenfalls anpassen.
v=spf1 +a +mx +ip4:<ip.mail> ?all* <tt><ip.mail></tt>
Is the IP of the mail server that is responsible for sending the mails, it is automatically filled in when you apply the zones
After you do this modification you should apply it
Now let’s check with dig if the SPF is OK.
dig myserverplace.de TXT @ns1.myserverplace.de
You will see in the Answer section I have the following entry
myserverplace.de. 600 IN TXT "v=spf1 +a +mx +ip4:144.76.163.46 ?all"
== Anhang ==
# [[Postfix/SPF]]
# [[Postfix/SPF]]
[[Kategorie:E-Mail/Glossar]]
[[Kategorie:E-Mail/Glossar]]

Version vom 8. August 2026, 08:35 Uhr

SPF

DNS-Eintrag für SPF

v=spf1 +a +mx -all

SPF ist für diese Domain aktiviert

Eintrag optimieren

Wenn Sie mehrere Domains auf Ihrem Server hosten, sollten Sie ihn wahrscheinlich ebenfalls anpassen.

v=spf1 +a +mx +ip4:<ip.mail> ?all* <ip.mail>

Is the IP of the mail server that is responsible for sending the mails, it is automatically filled in when you apply the zones

After you do this modification you should apply it

Now let’s check with dig if the SPF is OK.

dig myserverplace.de TXT @ns1.myserverplace.de

You will see in the Answer section I have the following entry

myserverplace.de. 600 IN TXT "v=spf1 +a +mx +ip4:144.76.163.46 ?all"

Anhang

  1. Postfix/SPF