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
|
2016-08-09 05:34:30 +00:00
|
|
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
2011-10-07 16:22:05 +00:00
|
|
|
//
|
|
|
|
// 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");
|
2014-12-08 13:47:32 +00:00
|
|
|
include("../inc/inc.Init.php");
|
|
|
|
include("../inc/inc.Extension.php");
|
2011-10-07 16:22:05 +00:00
|
|
|
include("../inc/inc.DBInit.php");
|
2014-12-08 13:47:32 +00:00
|
|
|
include("../inc/inc.ClassSession.php");
|
2011-10-07 16:22:05 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
2016-02-22 09:15:55 +00:00
|
|
|
include("../inc/inc.ClassEmailNotify.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)) {
|
2016-03-09 17:03:34 +00:00
|
|
|
$emailobj = new SeedDMS_EmailNotify($dms, $settings->_smtpSendFrom, $settings->_smtpServer, $settings->_smtpPort, $settings->_smtpUser, $settings->_smtpPassword);
|
2013-09-13 13:01:02 +00:00
|
|
|
$subject = "password_forgotten_email_subject";
|
|
|
|
$message = "password_forgotten_email_body";
|
|
|
|
$params = array();
|
|
|
|
$params['sitename'] = $settings->_siteName;
|
2016-02-22 09:15:55 +00:00
|
|
|
$params['http_root'] = $settings->_httpRoot;
|
2013-09-13 13:01:02 +00:00
|
|
|
$params['hash'] = $hash;
|
|
|
|
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ChangePassword.php?hash=".$hash;
|
2016-02-22 09:40:57 +00:00
|
|
|
$params['url_prefix'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot;
|
2016-02-22 09:15:55 +00:00
|
|
|
$emailobj->toIndividual($settings->_smtpSendFrom, $user, $subject, $message, $params);
|
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;
|
|
|
|
?>
|