Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 26 for ntlm (0.02 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

            } else if (Constants.DIGEST.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.DIGEST);
            } else if (Constants.NTLM.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.NTLM);
                // Pass jcifs.* properties via formParameters for NTLM configuration
                final Map<String, String> jcifsParams = new HashMap<>();
                getWebConfig().getConfigParameterMap(ConfigName.CONFIG)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

            } else if (Constants.DIGEST.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.DIGEST);
            } else if (Constants.NTLM.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.NTLM);
                // Pass jcifs.* properties via formParameters for NTLM configuration
                final Map<String, String> jcifsParams = paramMap.entrySet()
                        .stream()
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        public static final String BASIC = "BASIC";
    
        /** Digest authentication type identifier. */
        public static final String DIGEST = "DIGEST";
    
        /** NTLM authentication type identifier. */
        public static final String NTLM = "NTLM";
    
        /** Form-based authentication type identifier. */
        public static final String FORM = "FORM";
    
        /** Samba authentication type identifier. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
  4. src/main/resources/fess_label_en.properties

    labels.webauth_password=Password
    labels.webauth_parameters=Parameters
    labels.webauth_web_crawling_config=Web Config
    labels.webauth_scheme_basic=Basic
    labels.webauth_scheme_digest=Digest
    labels.webauth_scheme_ntlm=NTLM
    labels.webauth_scheme_form=Form
    labels.log_configuration=Log Files
    labels.log_file_name=File Name
    labels.log_file_date=Timestamp
    labels.labeltype_configuration=Label
    labels.labeltype_title_details=Label
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String spnegoAllowBasic;
    
        /** Enable or disable SPNEGO unsecure basic authentication. */
        @Size(max = 10)
        public String spnegoAllowUnsecureBasic;
    
        /** Enable or disable SPNEGO NTLM prompt. */
        @Size(max = 10)
        public String spnegoPromptNtlm;
    
        /** Enable or disable SPNEGO localhost authentication. */
        @Size(max = 10)
        public String spnegoAllowLocalhost;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_ALLOW_LOCALHOST = "spnego.allow.localhost";
    
        /** Configuration key for prompting NTLM authentication. */
        protected static final String SPNEGO_PROMPT_NTLM = "spnego.prompt.ntlm";
    
        /** Configuration key for allowing unsecure basic authentication. */
        protected static final String SPNEGO_ALLOW_UNSECURE_BASIC = "spnego.allow.unsecure.basic";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  7. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

                return entity;
            });
        }
    
        /**
         * Registers available protocol scheme items for web authentication forms.
         * Includes Basic, Digest, NTLM, and Form authentication schemes.
         *
         * @param data the render data to register the protocol scheme items with
         */
        protected void registerProtocolSchemeItems(final RenderData data) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 19.7K bytes
    - Click Count (0)
  8. src/main/resources/fess_label.properties

    labels.webauth_password=Password
    labels.webauth_parameters=Parameters
    labels.webauth_web_crawling_config=Web Config
    labels.webauth_scheme_basic=Basic
    labels.webauth_scheme_digest=Digest
    labels.webauth_scheme_ntlm=NTLM
    labels.webauth_scheme_form=Form
    labels.log_configuration=Log Files
    labels.log_file_name=File Name
    labels.log_file_date=Timestamp
    labels.labeltype_configuration=Label
    labels.labeltype_title_details=Label
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setSystemProperty("spnego.allow.unsecure.basic", String.valueOf(isCheckboxEnabled(form.spnegoAllowUnsecureBasic)));
            fessConfig.setSystemProperty("spnego.prompt.ntlm", String.valueOf(isCheckboxEnabled(form.spnegoPromptNtlm)));
            fessConfig.setSystemProperty("spnego.allow.localhost", String.valueOf(isCheckboxEnabled(form.spnegoAllowLocalhost)));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_zh_TW.properties

    labels.webauth_username=使用者名稱
    labels.webauth_password=密碼
    labels.webauth_parameters=參數
    labels.webauth_web_crawling_config=Web配置
    labels.webauth_scheme_basic=基本
    labels.webauth_scheme_digest=摘要
    labels.webauth_scheme_ntlm=NTLM
    labels.webauth_scheme_form=表單
    labels.log_configuration=日誌檔案
    labels.log_file_name=檔案名稱
    labels.log_file_date=時間戳記
    labels.labeltype_configuration=標籤
    labels.labeltype_title_details=標籤
    labels.labeltype_name=名稱
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.5K bytes
    - Click Count (0)
Back to Top