Modify

Opened 11 years ago

Closed 11 years ago

#10779 closed defect (duplicate)

"forgot your password" no more working on 0.4.2

Reported by: sdegrande Owned by: Steffen Hoffmann
Priority: normal Component: AccountManagerPlugin
Severity: major Keywords: password reset
Cc: Ryan J Ollos Trac Release: 1.0

Description

I updated from 0.4dev (do not remember which rev) to 0.4.2, and the "forgot your password" feature is no more working: the 'password-reset' user's account attribute is set, the notification mail is sent, but I can not login with the autogenerated password.

The following patch seems to fix it, but I don't know if it's the right way to solve the issue:

  • acct_mgr/web_ui.py

     
    143143        return is_enabled(self.env, self.__class__) and \
    144144               self.reset_password and (self._write_check(log) != []) and \
    145145               is_enabled(self.env, self.store.__class__) and \
    146                self.store.hash_method
     146               (self.store.hash_method is not None)
    147147
    148148    reset_password_enabled = property(_reset_password_enabled)

AFAIK, the same patch would be needed on trunk.

Thanks for your great work !

Attachments (0)

Change History (2)

comment:1 Changed 11 years ago by Ryan J Ollos

Cc: Ryan J Ollos added; anonymous removed

I suspect this is a configuration issue. Could you provide the [account-manager] and [components] sections from your trac.ini?

comment:2 Changed 11 years ago by Steffen Hoffmann

Keywords: password reset added
Resolution: duplicate
Status: newclosed

I confess its somewhat hard to find, but it appeared to me immediately after reading the description, that this is a duplicate of #8927, just underlining the password store independence of this suspected issue.

Thanks for taking care to report it here, but follow-up over-there to improve focus on the issue, please.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Steffen Hoffmann.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.