Você instalou algum MOD que precisou alterar o /includes/functions_messenger.php ?
As linas 977 à 992 do seu functions_messenger.php estão iguais as linhas abaixo:
Código: Selecionar todos
977 // Ok we have error checked as much as we can to this point let's get on it already.
978 ob_start();
979 $smtp->socket = fsockopen($config['smtp_host'], $config['smtp_port'], $errno, $errstr, 20);
980 $error_contents = ob_get_clean();
981
982 if (!$smtp->socket)
983 {
984 if ($errstr)
985 {
986 $errstr = utf8_convert_message($errstr);
987 }
988
989 $err_msg = (isset($user->lang['NO_CONNECT_TO_SMTP_HOST'])) ? sprintf($user- >lang['NO_CONNECT_TO_SMTP_HOST'], $errno, $errstr) : "Could not connect to smtp host : $errno : $errstr";
990 $err_msg .= ($error_contents) ? '<br /><br />' . htmlspecialchars($error_contents) : '';
991 return false;
992 }
