was taken from some pretty old heise c’t script.

[cc lang=”php” escaped=”true” width=”500″]

// Prüfe, ob die Empfänger/Absenderadresse einem gültigen MX-Host angehört Zu jeder Domain in einer Mailadresse (nach dem @-Zeichen) sollte ein Mail Exchange Resource Record (MX-RR) im Domain Name System (DNS) eingetragen sein. Die MX-Hosts versenden die E-Mail per SMTP. getmxrr() schreibt MX-Hosts in das Array $mxhosts ACHTUNG: Dieser Befehl ist nur auf Unix-Maschinen implementiert,

// unter anderen Betriebssystemen ist die Zeile zu streichen! Auserdem scheint getmxrr() Probleme mit Umlautdomains zu haben.

if(!getmxrr(substr(strstr($absender, ‘@’), 1), $mxhosts))die($fehler_teil1.”Konnte keine gültige Domain für ” . $absender . ” finden!”.$fehler_teil2);

[/cc]

liked this article?

  • only together we can create a truly free world
  • plz support dwaves to keep it up & running!
  • (yes the info on the internet is (mostly) free but beer is still not free (still have to work on that))
  • really really hate advertisement
  • contribute: whenever a solution was found, blog about it for others to find!
  • talk about, recommend & link to this blog and articles
  • thanks to all who contribute!
admin