Re: [Zope-dev] storing passwords

2003-06-18 Thread Markus Bengts
On Mon, 16 Jun 2003, Chris Withers wrote: [EMAIL PROTECTED] wrote: Or SimpleUserFolder: create a user folder class in a Zope product that subclasses both SimpleUserFolder and OFS.Folder. Then put ZSQL methods and a few TTW python scripts in the folder contents of an instance of this

Re: [Zope-dev] storing passwords

2003-06-18 Thread Markus Bengts
Sorry to keep spamming this list. I just want to present a solution if someone browses the archives. I installed exUserFolder. And in pgAuthSource.py defined def remoteAuthMethod(self, username, password): to use a Z SQL Method instead of remoteAuthMethod=None It works. //Markus On

Re: [Zope-dev] storing passwords

2003-06-16 Thread Chris Withers
Markus Bengts wrote: I want to use the same usernames and passwords in Zope and some other servers. The usernames and password digests are stored in a PostgreSQL database, and a given username and password -pair can be checked with a simple SQL-query. SimpleUserFolder will let you do this with

Re: [Zope-dev] storing passwords

2003-06-16 Thread Chris Withers
[EMAIL PROTECTED] wrote: Or SimpleUserFolder: create a user folder class in a Zope product that subclasses both SimpleUserFolder and OFS.Folder. Then put ZSQL methods and a few TTW python scripts in the folder contents of an instance of this class to make it work. I've done something similar to

[Zope-dev] storing passwords

2003-06-15 Thread Markus Bengts
Hello, I want to use the same usernames and passwords in Zope and some other servers. The usernames and password digests are stored in a PostgreSQL database, and a given username and password -pair can be checked with a simple SQL-query. I need to modify Zope to look up and to save passwords in

Re: [Zope-dev] storing passwords

2003-06-15 Thread Andreas Jung
exUserFolder is your friend. -aj --On Sonntag, 15. Juni 2003 23:28 Uhr +0300 Markus Bengts [EMAIL PROTECTED] wrote: Hello, I want to use the same usernames and passwords in Zope and some other servers. The usernames and password digests are stored in a PostgreSQL database, and a given

RE: [Zope-dev] storing passwords

2003-06-15 Thread sean . upton
success. Sean -Original Message- From: Andreas Jung [mailto:[EMAIL PROTECTED] Sent: Sunday, June 15, 2003 1:34 PM To: Markus Bengts; [EMAIL PROTECTED] Subject: Re: [Zope-dev] storing passwords exUserFolder is your friend. -aj --On Sonntag, 15. Juni 2003 23:28 Uhr +0300 Markus

RE: [Zope-dev] storing passwords

2003-06-15 Thread Markus Bengts
-Original Message- From: Andreas Jung [mailto:[EMAIL PROTECTED] Sent: Sunday, June 15, 2003 1:34 PM To: Markus Bengts; [EMAIL PROTECTED] Subject: Re: [Zope-dev] storing passwords exUserFolder is your friend. -aj --On Sonntag, 15. Juni 2003 23:28 Uhr +0300 Markus Bengts

RE: [Zope-dev] storing passwords

2003-06-15 Thread sean . upton
-your-own user folders). Sean -Original Message- From: Markus Bengts [mailto:[EMAIL PROTECTED] Sent: Sunday, June 15, 2003 2:22 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [Zope-dev] storing passwords Thank you! I am still trying to find out