1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<?php // $Id: lostpass.php,v 1.9.6.10.2.1 2005/09/18 13:54:17 mithyt2 Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // // <http://www.xoops.org/> // // ------------------------------------------------------------------------ // // 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. // // // // You may not change or alter any portion of this comment or credits // // of supporting developers from this source code or any supporting // // source code which is considered copyrighted (c) material of the // // original comment or credit authors. // // // // 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------ // $xoopsOption['pagetype'] = "user"; include "mainfile.php"; $email = isset($_REQUEST['email']) ? trim($_REQUEST['email']) : ''; if (!isset($_REQUEST['email']) || trim($_REQUEST['email']) == "") { redirect_header(XOOPS_URL,2,_US_SORRYNOTFOUND); exit(); }
$myts =& MyTextSanitizer::getInstance(); $member_handler =& xoops_gethandler('member'); $getuser =& $member_handler->getUsers(new Criteria('email', $myts->addSlashes($email))); if (count($getuser) == 0) { redirect_header("user.php",2,_US_SORRYNOTFOUND); exit(); } else { $code = isset($_GET['code']) ? trim($_GET['code']) : ''; $areyou = substr($getuser[0]->getVar("pass"), 0, 5);
$xoopsMailer =& getMailer(); $xoopsMailer->useMail(); $xoopsMailer->assign("SITENAME", $xoopsConfig['sitename']); $xoopsMailer->assign("ADMINMAIL", $xoopsConfig['adminmail']); $xoopsMailer->assign("SITEURL", XOOPS_URL."/"); $xoopsMailer->assign("IP", $_SERVER['REMOTE_ADDR']); $xoopsMailer->setToUsers($getuser[0]); $xoopsMailer->setFromEmail($xoopsConfig['adminmail']); $xoopsMailer->setFromName($xoopsConfig['sitename']); $xoopsMailer->setSubject(sprintf(_US_NEWPWDREQ,$xoopsConfig['sitename'])); if ($code != '' && $areyou == $code) { $newpass = xoops_makepass(); $xoopsMailer->setTemplate("lostpass2.tpl"); $xoopsMailer->assign("NEWPWD", $newpass); $xoopsMailer->assign("LOGINNAME", $getuser[0]->getVar('loginname')); if ( !$xoopsMailer->send() ) { echo $xoopsMailer->getErrors(); }
$getuser[0]->setVar('pass', md5($newpass)); if (!$member_handler->insertUser($getuser[0], true)) { include XOOPS_ROOT_PATH."/header.php"; echo _US_MAILPWDNG; include XOOPS_ROOT_PATH."/footer.php"; exit(); } redirect_header("user.php", 3, sprintf(_US_PWDMAILED,$getuser[0]->getVar("uname")), false); exit(); // If no Code, send it } else { if (!$GLOBALS['xoopsSecurity']->check(true, $_REQUEST['t'])) { redirect_header(XOOPS_URL."/user.php", 3, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); } $xoopsMailer->setTemplate("lostpass1.tpl"); $xoopsMailer->assign("NEWPWD_LINK", XOOPS_URL."/lostpass.php?email=".$email."&code=".$areyou);
include XOOPS_ROOT_PATH."/header.php"; if ( !$xoopsMailer->send() ) { echo $xoopsMailer->getErrors(); } echo "<h4>"; printf(_US_CONFMAIL,$getuser[0]->getVar("uname")); echo "</h4>"; include XOOPS_ROOT_PATH."/footer.php"; } } ?>
|