ich hab das problem, das fast jedesmal beim absenden von ganz normalen beiträgen folgende fehlermeldung kommt:
..die beiträge werden aber trotzdem gepostet!Ran into problems sending Mail. Response: 550 This address is not allowed
DEBUG MODE
Line : 164
.../board/includes/smtp.php
in der smtp.php steht bei mir folgendes:
Code: Alles auswählen
// Ok now do the CC and BCC fields...
@reset($bcc);
while(list(, $bcc_address) = each($bcc))
{
// Add an additional bit of error checking to bcc header...
$bcc_address = trim($bcc_address);
if (preg_match('#[^ ]+\@[^ ]+#', $bcc_address))
{
fputs($socket, "RCPT TO: <$bcc_address>\r\n");
server_parse($socket, "250", __LINE__); <- Line 164
}
}
gruss