# HG changeset patch # User Kim Alvefur # Date 1689676289 -7200 # Node ID 71c28b36923fa151e2a916e8a6275cdaabe182ca # Parent b88b3e41455024d8a71bcfc4b15ae7a0c7f1d536 mod_auth_ldap: Use enum option method diff -r b88b3e414550 -r 71c28b36923f plugins/mod_auth_ldap.lua --- a/plugins/mod_auth_ldap.lua Tue Jul 18 11:53:31 2023 +0200 +++ b/plugins/mod_auth_ldap.lua Tue Jul 18 12:31:29 2023 +0200 @@ -12,10 +12,10 @@ local ldap_rootdn = module:get_option_string("ldap_rootdn", ""); local ldap_password = module:get_option_string("ldap_password", ""); local ldap_tls = module:get_option_boolean("ldap_tls"); -local ldap_scope = module:get_option_string("ldap_scope", "subtree"); +local ldap_scope = module:get_option_enum("ldap_scope", "subtree", "base", "onelevel"); local ldap_filter = module:get_option_string("ldap_filter", "(uid=$user)"):gsub("%%s", "$user", 1); local ldap_base = assert(module:get_option_string("ldap_base"), "ldap_base is a required option for ldap"); -local ldap_mode = module:get_option_string("ldap_mode", "bind"); +local ldap_mode = module:get_option_enum("ldap_mode", "bind", "getpasswd"); local ldap_admins = module:get_option_string("ldap_admin_filter", module:get_option_string("ldap_admins")); -- COMPAT with mistake in documentation local host = ldap_filter_escape(module:get_option_string("realm", module.host));