2011-10-07 16:22:05 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
|
|
|
// Copyright (C) 2010-2011 Uwe Steinmann
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
include("../inc/inc.Settings.php");
|
2013-01-29 13:11:39 +00:00
|
|
|
include("../inc/inc.LogInit.php");
|
2011-10-07 16:22:05 +00:00
|
|
|
include("../inc/inc.Utils.php");
|
|
|
|
include("../inc/inc.Language.php");
|
|
|
|
include("../inc/inc.ClassSession.php");
|
|
|
|
include("../inc/inc.DBInit.php");
|
|
|
|
include("../inc/inc.ClassUI.php");
|
2015-11-25 15:49:09 +00:00
|
|
|
include("../inc/inc.ClassEmailUtils.php");
|
2011-10-07 16:22:05 +00:00
|
|
|
|
2013-01-29 13:11:39 +00:00
|
|
|
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
|
|
|
|
2011-10-07 16:22:05 +00:00
|
|
|
function _printMessage($heading, $message) {
|
|
|
|
|
|
|
|
UI::htmlStartPage($heading, "password");
|
|
|
|
UI::globalBanner();
|
|
|
|
UI::pageNavigation($heading);
|
2012-02-27 19:30:55 +00:00
|
|
|
UI::contentContainer($message."<p><a href=\"../out/out.Login.php\">" . getMLText("login") . "</a></p>\n");
|
2011-10-07 16:22:05 +00:00
|
|
|
UI::htmlEndPage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST["email"])) {
|
2011-12-01 21:30:11 +00:00
|
|
|
$email = $_POST["email"];
|
2011-10-07 16:22:05 +00:00
|
|
|
}
|
|
|
|
if (isset($_POST["login"])) {
|
2011-12-01 21:30:11 +00:00
|
|
|
$login = $_POST["login"];
|
2011-10-07 16:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($email) || empty($login)) {
|
2014-04-01 15:14:57 +00:00
|
|
|
UI::exitError(getMLText("password_forgotten"),getMLText("no_email_or_login"));
|
2011-10-07 16:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$user = $dms->getUserByLogin($login, $email);
|
|
|
|
if($user) {
|
2013-01-29 13:11:39 +00:00
|
|
|
if($hash = $dms->createPasswordRequest($user)) {
|
2015-11-25 15:49:09 +00:00
|
|
|
$emailobj = new SeedDMS_EmailUtils();
|
2013-01-29 13:11:39 +00:00
|
|
|
$subject = "###SITENAME###: ".getMLText("password_forgotten_email_subject");
|
|
|
|
$message = str_replace('###HASH###', $hash, getMLText("password_forgotten_email_body"));
|
|
|
|
|
2015-11-25 15:49:09 +00:00
|
|
|
$emailobj->sendPassword($settings->_smtpSendFrom, $user, $subject, $message);
|
2013-01-29 13:11:39 +00:00
|
|
|
}
|
2011-10-07 16:22:05 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 15:14:57 +00:00
|
|
|
header('Location: ../out/out.PasswordSend.php');
|
2011-10-07 16:22:05 +00:00
|
|
|
exit;
|
|
|
|
?>
|