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
|
<?php
/**
* $Header: /cvsroot/bitweaver/_bit_users/remind_password.php,v 1.8 2006/03/01 18:35:20 spiderr Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
* Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
* $Id: remind_password.php,v 1.8 2006/03/01 18:35:20 spiderr Exp $
* @package users
* @subpackage functions
*/
/**
* required setup
*/
require_once( '../bit_setup_inc.php' );
if ($forgot_pass != 'y') {
$gBitSmarty->assign('msg', tra("This feature is disabled").": forgot_pass");
$gBitSystem->display( 'error.tpl' );
die;
} elseif( $gBitUser->isRegistered() ) {
header( 'Location: '.BIT_ROOT_URL );
die;
} elseif (isset($_REQUEST["remind"])) {
$userInfo = '';
$pLogin = trim( $_REQUEST["username"] );
if ( strlen ( $pLogin ) ) {
$loginCol = strpos( $pLogin, '@' ) ? 'email' : 'login';
$userInfo = $gBitUser->getUserInfo( array( $loginCol => $pLogin ) );
}
if( $userInfo ) {
if ( $gBitSystem->isFeatureActive( 'clear_passwords' ) && !empty($userInfo['password']) ) {
$pass = $userInfo['password'];
$tmp['success'] = tra("A password reminder email has been sent ");
} else {
$pass = $gBitUser->renew_user_password($_REQUEST["username"]);
$tmp['success'] = tra("A new password has been sent ");
}
$tmp['success'] .= tra("to the registered email address for")." " . $_REQUEST["username"] . ".";
$gBitSmarty->assign('mail_site', $_SERVER["REMOTE_ADDR"]);
$gBitSmarty->assign('mail_user', $userInfo[$loginCol]);
$gBitSmarty->assign('mail_same', $gBitSystem->isFeatureActive( 'clear_passwords' ));
$gBitSmarty->assign('mail_pass', $pass);
$mail_data = $gBitSmarty->fetch('bitpackage:users/password_reminder.tpl');
$subject = "Your password for ".$gBitSystem->getConfig( 'site_title', $_SERVER['HTTP_HOST'] );
mail( $userInfo['email'], $subject, $mail_data, "From: ".$gBitSystem->getConfig( 'sender_email' )."\r\nContent-type: text/plain;charset=utf-8\r\n");
// Just show "success" message and no form
} else {
// Show error message (and leave form visible so user can fix problem)
$gBitSmarty->assign('showmsg', 'e');
$tmp['error'] = tra("Invalid or unknown username").": ".$_REQUEST["username"];
}
$gBitSmarty->assign('msg', $tmp);
}
// Display the template
$gBitSystem->display( 'bitpackage:users/remind_password.tpl');
?>
|