Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for DN (0.27 sec)

  1. src/main/resources/fess_label_nl.properties

    labels.ldapProviderUrl=LDAP URL
    labels.ldapSecurityPrincipal=Gebruikers-DN
    labels.ldapAdminSecurityPrincipal=Bind-DN
    labels.ldapAdminSecurityCredentials=Wachtwoord
    labels.ldapBaseDn=Basis-DN
    labels.ldap_provider_url=LDAP URL
    labels.ldap_security_principal=Gebruikers-DN
    labels.ldap_admin_security_principal=Bind-DN
    labels.ldap_admin_security_credentials=Wachtwoord
    labels.ldap_base_dn=Basis-DN
    labels.ldapAccountFilter=Accountfilter
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  2. src/main/resources/fess_label_zh_CN.properties

    labels.general_storage=存储
    labels.ldapProviderUrl=LDAP URL
    labels.ldapSecurityPrincipal=用户DN
    labels.ldapAdminSecurityPrincipal=绑定DN
    labels.ldapAdminSecurityCredentials=密码
    labels.ldapBaseDn=基本DN
    labels.ldap_provider_url=LDAP URL
    labels.ldap_security_principal=用户DN
    labels.ldap_admin_security_principal=绑定DN
    labels.ldap_admin_security_credentials=密码
    labels.ldap_base_dn=基本DN
    labels.ldapAccountFilter=帐户过滤器
    labels.ldapGroupFilter=组过滤器
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.ldapProviderUrl=URL LDAP
    labels.ldapSecurityPrincipal=DN de l'utilisateur
    labels.ldapAdminSecurityPrincipal=DN de liaison
    labels.ldapAdminSecurityCredentials=Mot de passe
    labels.ldapBaseDn=DN de base
    labels.ldap_provider_url=URL LDAP
    labels.ldap_security_principal=DN de l'utilisateur
    labels.ldap_admin_security_principal=DN de liaison
    labels.ldap_admin_security_credentials=Mot de passe
    labels.ldap_base_dn=DN de base
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            }
        }
    
        public void test_throwAndCatchAsFessSystemException() {
            // Test catching as parent exception type
            String errorMessage = "LDAP bind DN is invalid";
    
            try {
                throw new LdapConfigurationException(errorMessage);
            } catch (FessSystemException e) {
                assertEquals(errorMessage, e.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ja.properties

    labels.ldapProviderUrl=LDAP URL
    labels.ldapSecurityPrincipal=User DN
    labels.ldapAdminSecurityPrincipal=Bind DN
    labels.ldapAdminSecurityCredentials=パスワード
    labels.ldapBaseDn=Base DN
    labels.ldap_provider_url=LDAP URL
    labels.ldap_security_principal=User DN
    labels.ldap_admin_security_principal=Bind DN
    labels.ldap_admin_security_credentials=パスワード
    labels.ldap_base_dn=Base DN
    labels.ldapAccountFilter=アカウントフィルタ
    labels.ldapGroupFilter=グループフィルタ
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_pt_BR.properties

    labels.ldapProviderUrl=URL do LDAP
    labels.ldapSecurityPrincipal=DN do usuário
    labels.ldapAdminSecurityPrincipal=DN de ligação
    labels.ldapAdminSecurityCredentials=Senha
    labels.ldapBaseDn=DN base
    labels.ldap_provider_url=URL do LDAP
    labels.ldap_security_principal=DN do usuário
    labels.ldap_admin_security_principal=DN de ligação
    labels.ldap_admin_security_credentials=Senha
    labels.ldap_base_dn=DN base
    labels.ldapAccountFilter=Filtro de conta
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    ldap.admin.user.filter=uid\=%s
    # Base DN for LDAP admin user.
    ldap.admin.user.base.dn=ou\=People,dc\=fess,dc\=codelibs,dc\=org
    # Object classes for LDAP admin user.
    ldap.admin.user.object.classes=organizationalPerson,top,person,inetOrgPerson
    # Role filter for LDAP admin.
    ldap.admin.role.filter=cn\=%s
    # Base DN for LDAP admin role.
    ldap.admin.role.base.dn=ou\=Role,dc\=fess,dc\=codelibs,dc\=org
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * Used in conjunction with the admin security principal.
         */
        @Size(max = 1000)
        public String ldapAdminSecurityCredentials;
    
        /**
         * LDAP base DN (Distinguished Name) for user searches.
         * Defines the root of the LDAP directory tree for user lookups.
         */
        @Size(max = 1000)
        public String ldapBaseDn;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        // LDAP Configuration Constants
        // ============================================================
    
        /** LDAP base DN configuration key. */
        public static final String LDAP_BASE_DN = "ldap.base.dn";
    
        /** LDAP security principal configuration key. */
        public static final String LDAP_SECURITY_PRINCIPAL = "ldap.security.principal";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

              throw SSLPeerUnverifiedException(
                """
                |Hostname ${address.url.host} not verified:
                |    certificate: ${CertificatePinner.pin(cert)}
                |    DN: ${cert.subjectDN.name}
                |    subjectAltNames: ${OkHostnameVerifier.allSubjectAltNames(cert)}
                """.trimMargin(),
              )
            } else {
              throw SSLPeerUnverifiedException(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top