You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
391 B
12 lines
391 B
require 'simple_ldap_authenticator'
|
|
|
|
DOMAIN = 'artcode'
|
|
TLD = 're'
|
|
|
|
SimpleLdapAuthenticator.servers = ['127.0.0.1']
|
|
SimpleLdapAuthenticator.port = 1389
|
|
SimpleLdapAuthenticator.use_ssl = false
|
|
# SimpleLdapAuthenticator.login_format = '%s@mydomain.com'
|
|
SimpleLdapAuthenticator.login_format = "uid=%s,ou=Users,dc=#{DOMAIN},dc=#{TLD}"
|
|
|
|
p SimpleLdapAuthenticator.valid?('admin', 'adminpassword')
|