devise_ldap_authenticatable icon indicating copy to clipboard operation
devise_ldap_authenticatable copied to clipboard

Devise Module for LDAP

Results 53 devise_ldap_authenticatable issues
Sort by recently updated
recently updated
newest added

this config not working on 0.8.5. In 0.8.4 this config working

I'm trying to monkey patch the `LdapConnect` class to return multiple attributes, given the param is an array, but not making headway. I've looked over issue 69, and [this tutorial](https://fairwaytech.com/2013/10/a-beginners-guide-to-querying-ldap-with-ruby-also-spaceballs/)...but...

On a clean Rails 4 install I am testing out Devise with devise_ldap_authenticatable. With config.ldap_create_user = true set in the Devise initializer, when I signup a new user no entry...

What if I want to get a bunch of stuff back from my LDAP query? Currently, I have to do: ``` self.email = Devise::LDAP::Adapter.get_ldap_param(self.username,"mail").first.to_s self.first_name = Devise::LDAP::Adapter.get_ldap_param(self.username,"givenName").first.to_s self.last_name = Devise::LDAP::Adapter.get_ldap_param(self.username,"sn").first.to_s...

I just checked out from master and got these errors when running the test suite: ``` Failures: 1) Users With default settings change a LDAP password should change password Failure/Error:...

I have my current configuration working as shown below. But is it possible to also add a "backup/alternate" server for it to switch to if the first one goes down?...

I have upgraded rails version 4.0.12 to 4.1.14. While running test cases(or validating object through rails console), I could see same validation message twice for an email and password. Failure:...

I recently had a case where a user had a rather short password (don't ask why. He's been told to change it). When he logged in via devise_ldap_authenticatable, he just...

I'm trying to create multipleldap domains auth form for my app. I was added new text_filed in my auth form for new paramter ":company". Also I have two default params...

**Here's WEBrick output:** ``` ruby LDAP: LDAP dn lookup: uid=my_name LDAP: LDAP search for login: uid=my_name LDAP: LDAP search yielded 2 matches LDAP: Authorizing user uid=my_name,cn=users,cn=accounts,dc=aws,dc=company,dc=net LDAP: Not authorized because...