Sha256: 8d65722580a21ce4fcc31f704792c604ae0d061e160cda025c088d8c49333d14

Contents?: true

Size: 400 Bytes

Versions: 25

Compression:

Stored size: 400 Bytes

Contents

require 'casserver/authenticators/ldap'

# Slightly modified version of the LDAP authenticator for Microsoft's ActiveDirectory.
# The only difference is that the default_username_attribute for AD is 'sAMAccountName'
# rather than 'uid'.
class CASServer::Authenticators::ActiveDirectoryLDAP < CASServer::Authenticators::LDAP
  protected
  def default_username_attribute
    "sAMAccountName"
  end
end

Version data entries

25 entries across 25 versions & 8 rubygems

Version Path
brontes3d-rubycas-server-0.8.0.20090812 lib/casserver/authenticators/active_directory_ldap.rb
rubycas-server-0.6.0 lib/casserver/authenticators/active_directory_ldap.rb
rubycas-server-0.7.1.1 lib/casserver/authenticators/active_directory_ldap.rb
rubycas-server-0.7.0 lib/casserver/authenticators/active_directory_ldap.rb
rubycas-server-0.7.1 lib/casserver/authenticators/active_directory_ldap.rb