[Zope] Case Insensitive Zope Authentication
Chris Withers
chris at simplistix.co.uk
Wed Feb 23 03:21:28 EST 2005
Remy Pinsonnault wrote:
> I installed successfully SimpleUserFolder and created the apropriate
> methods (getusers, etc.) and the authentication is ok (i can enter in
> my plone site as a manager).
>
> But it does not solve the uppercase problem... you know how?
at the start of the add/edit user scripts, and at the start of the
getUserDetails script, do the following:
name = name.lower()
if pasword is not None:
password = password.lower()
cheers,
Chris
--
Simplistix - Content Management, Zope & Python Consulting
- http://www.simplistix.co.uk
More information about the Zope
mailing list