Guten Morgen allerseits!
Wenn ich versuche eine E-Mail zu verschicken, dann treten immer folgende Fehlermeldungen auf:
Versand aus dem Test-Skript im Install-Tool: Zitat:
Warning: mail() [function.mail]: SMTP server response: 550 Requested action not taken: mailbox unavailable or not local in Pfad\zum\root\der\Domain\t3lib\class.t3lib_htmlmail.php on line 727 Warning: Cannot modify header information - headers already sent by (output started at Pfad\zum\root\der\Domain\t3lib\class.t3lib_htmlmail.php:727) in Pfad\zum\root\der\Domain\typo3\sysext\install\mod\class.tx_install.php on line 4892 |
Versand aus einem Kontaktformular auf der Website:
Zitat:
Warning: mail() [function.mail]: SMTP server response: 550 Requested action not taken: mailbox unavailable or not local in Pfad\zum\root\der\Domain\t3lib\class.t3lib_htmlmail.php on line 727 Warning: Cannot modify header information - headers already sent by (output started at Pfad\zum\root\der\Domain\t3lib\class.t3lib_htmlmail.php:727) in Pfad\zum\root\der\Domain\typo3conf\ext\th_mailformplus\pi1\class.tx_thmailformplus_pi1 .php on line 2739 |
Ich verwende Typo3 4.2.0, PHP 5.2.5, MySQL 5.0.45, Windows 2003 Standard Server, IIS 6.0
Die Aufforderung für die Eingabe des sendmail-Pfades im Install-Tool zeigt er nicht an, da das Mail anscheinend richtig konfiguriert ist:
Mail is configured SMTP=localhost smtp_port=25
Code-Auszüge:
class.t3lib_htmlmail.php - Zeilen 724-727:
PHP-Code:
$mailWasSent = mail($this->recipient,
$this->subject,
$this->message,
$this->headers);
class.tx_install.php - Zeilen 4890-4894:
PHP-Code:
function output($content) {
header ('Content-Type: text/html; charset=' .
($GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset']?$GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset']:'iso-8859-1'));
echo $content;
}
class.tx_thmailformplus_pi1.php - Zeile 2739
PHP-Code:
header("Location: ".$url);