Hi

> An: Hermann Himmelbauer
> Cc: zope3-users@zope.org
> Betreff: Re: [Zope3-Users] PAU / credentials / authentication

[...]

> # My event subscriber will be passed a reference to the site 
> object # from which we can get the sitemanager sitemanager = 
> event.object.getSiteManager() pau = PluggableAuthentication() 
> sitemanager['PAU'] = pau sitemanager.registerUtility(pau, 
> IAuthentication) # Tell the PAU which sort of credentials we 
> want to use pau.credentialsPlugins = (u'Session Credentials') 

make sure this is a tuple:
pau.credentialsPlugins = (u'Session Credentials',)

or even better, never override it:
pau.credentialsPlugins += (u'Session Credentials',)


Regards
Roger Ineichen
_____________________________
END OF MESSAGE

_______________________________________________
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users

Reply via email to