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

Attn: @acurley @gustaflindqvist I'd like to remove the openldap dependency from the test suite. This would allow us to setup on travis and greatly simplify the test suite in general....

NoMethodError (undefined method `to' for nil:NilClass): devise_ldap_authenticatable (0.8.1) lib/devise_ldap_authenticatable/model.rb:21:in`login_with' devise_ldap_authenticatable (0.8.1) lib/devise_ldap_authenticatable/model.rb:48:in `valid_ldap_authentication?' is it an issue or something is missing? I follow the tutorial thourougly i'm using this gem...

My LDAP has groups of objectType `posixGroup`, and they don't have `uniqueMember` attribute but instead `memberUid` attribute. Hence, `LDAP::Adapter.get_groups()` will fail because it had a hardcoded 'uniqueMember' filter (ldap/connection.rb line...

I've defined my own ldap_auth_password_builder as per the documentation: ``` config.ldap_auth_password_builder = Proc.new() {|new_password| Net::LDAP::Password.generate(:ssha, new_password) } ``` But when I start the server there is no such method? ```...

I'm using this gem to connect to Active Record 2012 and i was getting and error on this portion of code ``` ruby before_validation :get_ldap_email def get_ldap_email self.email = Devise::LDAP::Adapter.get_ldap_param(self.username,...

Hi, I was in need to authenticate via basic auth (for api use) through ldap. Devise has a flag http_authenticatable which when set to true, reads the HTTP Headers and...

Cross post from [Google Group](https://groups.google.com/forum/#!topic/devise_ldap_authenticatable/j-S2OYm9-HE) Hello All, I'm considering removing the functionality that checks users for specific groups and/or attributes before authenticating them. In my mind, authorization is out of...

`slapd` is really complicated to set up and configured properly. It'd be a modest undertaking to change around the stubs. Also, there's some additional satisfaction in the full stack LDAP...

Testing

Hi, I was able to get the authentication working against a user in ldap but then I wanted to also verify the user is part of a particular group. I...

Feature

hi, it would be nice if the user could change between sha1 and md5, should not be a big change because the net-ldap function you use, does already support it....

Feature