Fixed: Can not authenticate user against LDAP if its DN contains non-ascii characters.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@781 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2007-09-30 18:07:23 +00:00
parent c2220cffcf
commit 427b47b4d7
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ private
def initialize_ldap_con(ldap_user, ldap_password) def initialize_ldap_con(ldap_user, ldap_password)
Net::LDAP.new( {:host => self.host, Net::LDAP.new( {:host => self.host,
:port => self.port, :port => self.port,
:auth => { :method => :simple, :username => Iconv.new('iso-8859-15', 'utf-8').iconv(ldap_user), :password => Iconv.new('iso-8859-15', 'utf-8').iconv(ldap_password) }} :auth => { :method => :simple, :username => ldap_user, :password => ldap_password }}
) )
end end