* * -------------------------------------------- * * 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. * \**************************************************************************/ /* $Id$ */ $phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True); $phpgw_info["flags"]["currentapp"] = "preferences"; include("../header.inc.php"); if (!$phpgw->acl->check("changepassword", 1)){ Header("Location: index.php"); exit; } if (! $submit) { $phpgw->common->phpgw_header(); $phpgw->common->navbar(); ?>
">
">

" . lang("note: This feature does *not* change your email password. This will " . "need to be done manually.") . ""; } $phpgw->common->phpgw_footer(); } else { if ($n_passwd != $n_passwd_2) $error = lang("the two passwords are not the same"); if (! $n_passwd) $error = lang("you must enter a password"); if ($error) { $phpgw->common->navbar(); echo "


$error

"; exit; } if ($phpgw_info["server"]["auth_type"] == "sql") { $phpgw->db->query("update accounts set account_pwd='" . md5($n_passwd) . "' " . "where account_lid='" . $phpgw_info["user"]["userid"] . "'",__LINE__,__FILE__); } if ($phpgw_info["server"]["auth_type"] == "ldap") { $ldap = ldap_connect($phpgw_info["server"]["ldap_host"]); if (! @ldap_bind($ldap, $phpgw_info["server"]["ldap_root_dn"], $phpgw_info["server"]["ldap_root_pw"])) { echo "

Error binding to LDAP server. Check your config"; exit; } $entry["userpassword"] = $phpgw->common->encrypt_password($n_passwd); $entry["phpgw_lastpasswd_change"] = time(); $dn = $phpgw_info["user"]["account_dn"]; @ldap_modify($ldap, $dn, $entry); } // Update there last password change $phpgw->db->query("update accounts set account_lastpwd_change='" . time() . "' where account_id='" . $phpgw_info["user"]["account_id"] . "'",__LINE__,__FILE__); $phpgw_info["user"]["passwd"] = $n_passwd; $phpgw->accounts->sync(); Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/preferences/","cd=18")); } ?>