Commit 427b47b4 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

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
parent c2220cff
......@@ -70,7 +70,7 @@ private
def initialize_ldap_con(ldap_user, ldap_password)
Net::LDAP.new( {:host => self.host,
: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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment