From 427b47b4d72276b5c80d79cd5f8e16c2aa31da1e Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 30 Sep 2007 18:07:23 +0000 Subject: [PATCH] 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 --- app/models/auth_source_ldap.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/auth_source_ldap.rb b/app/models/auth_source_ldap.rb index 3adca62ae..fcb8447b7 100644 --- a/app/models/auth_source_ldap.rb +++ b/app/models/auth_source_ldap.rb @@ -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