diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-07-14 13:05:48 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-07-14 13:05:48 +0200 |
commit | 1d5856cfe64e778c70fece0d08d36f153be16600 (patch) | |
tree | 0d13fa843fd2693cd5c9c0a5d97865f5a92cdb1f /conf/dokuwiki.php | |
parent | 75e487e9d106f5e0a60b5b66552c332c79637442 (diff) | |
download | rpg-1d5856cfe64e778c70fece0d08d36f153be16600.tar.gz rpg-1d5856cfe64e778c70fece0d08d36f153be16600.tar.bz2 |
two-stage password reset
This patch changes the password reset function to a two-stage process.
After requesting a new password a confirmation email is sent first, only
if the link contained in this mail is used the password is changed for real.
This makes sure malicious people can't reset passwords for other users.
darcs-hash:20060714110548-7ad00-c1e23fd51cc2d2f16473914421ebe0f9c3b2ba8c.gz
Diffstat (limited to 'conf/dokuwiki.php')
-rw-r--r-- | conf/dokuwiki.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php index dbba11efc..48f33a940 100644 --- a/conf/dokuwiki.php +++ b/conf/dokuwiki.php @@ -59,7 +59,7 @@ $conf['passcrypt'] = 'smd5'; //Used crypt method (smd5,md5,sha1,ssha $conf['defaultgroup']= 'user'; //Default groups new Users are added to $conf['superuser'] = '!!not set!!'; //The admin can be user or @group $conf['profileconfirm'] = '1'; //Require current password to confirm changes to user profile -$conf['disableactions'] = 'resendpwd'; //comma separated list of actions to disable +$conf['disableactions'] = ''; //comma separated list of actions to disable /* Advanced Options */ $conf['userewrite'] = 0; //this makes nice URLs: 0: off 1: .htaccess 2: internal |