Re: [Product-Developers] [SOLVED] Retrieve external users credentials

2011-03-01 Thread Andrea Brugiolo
On Mon, Feb 28, 2011 at 12:52:12PM +0200, Vitaliy Podoba wrote: Plone doesn't store plain passwords in database. It stores it in a hashed form. That's why the only way for user that forgot his password is to reset it and pick a new one. I think you'll need to write one more PAS plugin that

Re: [Product-Developers] [SOLVED] Retrieve external users credentials

2011-03-01 Thread Mikko Ohtamaa
zagor wrote: Actually I have solved the problem storing the user password through my authentication plugin, that is what you are saying, I seem. I used the _user_passwords method of the BasePlugin class, which is the one I derive my plugin from: do you think this approach is correct?