Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for oldMap (0.03 sec)

  1. src/main/resources/fess_config.properties

    ldap.role.search.role.enabled=true
    
    # LDAP attribute for surname.
    ldap.attr.surname=sn
    # LDAP attribute for given name.
    ldap.attr.givenName=givenName
    # LDAP attribute for employee number.
    ldap.attr.employeeNumber=employeeNumber
    # LDAP attribute for mail.
    ldap.attr.mail=mail
    # LDAP attribute for telephone number.
    ldap.attr.telephoneNumber=telephoneNumber
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    fessConfig.getLdapAdminSecurityCredentials());
        }
    
        /**
         * Updates the LDAP configuration.
         */
        public void updateConfig() {
            isBind = false;
        }
    
        /**
         * Validates the LDAP connection.
         *
         * @return True if the LDAP connection is valid, otherwise false.
         */
        protected boolean validate() {
            if (!isBind) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_ru.properties

    labels.general_menu_suggest=Предложения
    labels.general_menu_ldap=LDAP
    labels.general_menu_notification=Уведомление
    labels.general_storage=Хранилище
    labels.ldapProviderUrl=URL-адрес LDAP
    labels.ldapSecurityPrincipal=DN пользователя
    labels.ldapAdminSecurityPrincipal=DN привязки
    labels.ldapAdminSecurityCredentials=Пароль
    labels.ldapBaseDn=Базовый DN
    labels.ldap_provider_url=URL-адрес LDAP
    labels.ldap_security_principal=DN пользователя
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 55.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            setSystemProperty(Constants.LDAP_INITIAL_CONTEXT_FACTORY, value);
        }
    
        default String getLdapInitialContextFactory() {
            return getSystemProperty(Constants.LDAP_INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
        }
    
        default void setLdapSecurityAuthentication(final String value) {
            setSystemProperty(Constants.LDAP_SECURITY_AUTHENTICATION, value);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    return queryParser;
                }
            };
            File file = File.createTempFile("test", ".properties");
            file.deleteOnExit();
            FileUtil.writeBytes(file.getAbsolutePath(), "ldap.security.principal=******@****.***".getBytes("UTF-8"));
            DynamicProperties systemProps = new DynamicProperties(file);
            ComponentUtil.register(systemProps, "systemProperties");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top