if (count($pop3server) == 2) { $pop3port = $pop3server[1]; $pop3server = $pop3server[0]; } else { $pop3server = trim($_REQUEST["pop3server"]); $pop3port = 110; } $message = <<<EOF <html><body>Hello,<br> <br> This is the Single Sign-On (SSO) Server installer test e-mail.<br> <br> Thank you for using SSO Server. </body></html> EOF; $headers = SMTP::GetUserAgent("Thunderbird"); $smtpsent = false; if ($smtpserver != "" && $_REQUEST["from"] != "" && $_REQUEST["to"] != "") { $smtpoptions = array("headers" => $headers, "textmessage" => strip_tags($message), "htmlmessage" => $message, "server" => $smtpserver, "port" => $smtpport, "secure" => $smtpport == 465, "username" => $_REQUEST["user"], "password" => $_REQUEST["pass"]); $result = SMTP::SendEmail($_REQUEST["from"], $_REQUEST["to"], "[SSO Server] Installer Test Message", $smtpoptions); if (!$result["success"]) { echo "<span class=\"error\">Failed to connect to the SMTP server. " . htmlspecialchars($result["error"]) . (isset($result["info"]) ? " (" . htmlspecialchars($result["info"]) . ")" : "") . "</span><br />"; } else { echo "<span class=\"success\">Successfully connected to the SMTP server and sent the test message.</span><br />"; $smtpsent = true; } } else { if ($smtpserver == "") { echo "<span class=\"error\">SMTP: 'SMTP Server' field not filled in.</span><br />"; } else { if ($_REQUEST["from"] == "") {
function SSO_SendEmail($fromaddr, $toaddr, $subject, $htmlmsg, $textmsg) { if (!class_exists("SMTP")) { define("CS_TRANSLATE_FUNC", "BB_Translate"); require_once SSO_ROOT_PATH . "/" . SSO_SUPPORT_PATH . "/smtp.php"; } $headers = SMTP::GetUserAgent("Thunderbird"); $smtpoptions = array("headers" => $headers, "htmlmessage" => $htmlmsg, "textmessage" => $textmsg, "server" => SSO_SMTP_SERVER, "port" => SSO_SMTP_PORT, "secure" => SSO_SMTP_PORT == 465, "username" => SSO_SMTPPOP3_USER, "password" => SSO_SMTPPOP3_PASS); $result = SMTP::SendEmail($fromaddr, $toaddr, $subject, $smtpoptions); if (!$result["success"] && SSO_POP3_SERVER != "") { // Try POP-before-SMTP. require_once SSO_ROOT_PATH . "/" . SSO_SUPPORT_PATH . "/pop3.php"; $pop3options = array("server" => SSO_POP3_SERVER, "port" => SSO_POP3_PORT, "secure" => SSO_POP3_PORT == 995); $temppop3 = new POP3(); $result = $temppop3->Connect(SSO_SMTPPOP3_USER, SSO_SMTPPOP3_PASS, $pop3options); if ($result["success"]) { $temppop3->Disconnect(); $result = SMTP::SendEmail($fromaddr, $toaddr, $subject, $smtpoptions); } } return $result; }