Projects
Kolab:3.4
pykolab
8bit-passwords.patch
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 8bit-passwords.patch of Package pykolab (Revision 52)
Currently displaying revision
52
,
Show latest
commit 36fff715e218311dc08d3d464317f376f8c196e1 Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Date: Fri Jan 10 14:49:40 2014 +0100 Circumvent decoding errors in log messages from causing authentication to fail diff --git a/pykolab/auth/ldap/__init__.py b/pykolab/auth/ldap/__init__.py index f597dfd..54d667c 100644 --- a/pykolab/auth/ldap/__init__.py +++ b/pykolab/auth/ldap/__init__.py @@ -214,7 +214,7 @@ class LDAP(pykolab.base.Base): try: log.debug(_("Binding with user_dn %s and password %s") - % (entry_dn, login[1])) + % (entry_dn, '*' * len(login[1]))) # Needs to be synchronous or succeeds and continues setting retval # to True!! @@ -238,7 +238,7 @@ class LDAP(pykolab.base.Base): else: try: log.debug(_("Binding with user_dn %s and password %s") - % (entry_dn, login[1])) + % (entry_dn, '*' * len(login[1]))) # Needs to be synchronous or succeeds and continues setting retval # to True!!
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.