Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for addresses (0.15 sec)

  1. src/main/java/org/codelibs/fess/util/SystemUtil.java

        public static String getSearchEngineHttpAddress() {
            final String value = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
            if (value != null) {
                return value;
            }
            return System.getProperty(Constants.FESS_ES_HTTP_ADDRESS);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/CrawlerEngineClient.java

    public class CrawlerEngineClient extends FesenClient {
        @Override
        protected Client createClient() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String[] hosts =
                    split(address, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n]));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                }
            }
    
            final String httpAddress = SystemUtil.getSearchEngineHttpAddress();
            if (StringUtil.isNotBlank(httpAddress)) {
                System.setProperty(FesenClient.HTTP_ADDRESS, httpAddress);
            }
    
            TimeoutTask systemMonitorTask = null;
            int exitCode;
            try {
                SingletonLaContainerFactory.setConfigPath("app.xml");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                            postcard.addReplyTo(fessConfig.getMailReturnPath());
                            if (toAddresses.length > 0) {
                                stream(toAddresses).of(stream -> stream.map(String::trim).forEach(address -> {
                                    postcard.addTo(address);
                                }));
                            } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                    postcard.setFrom(fessConfig.getMailFromAddress(), fessConfig.getMailFromName());
                    postcard.addReplyTo(fessConfig.getMailReturnPath());
                    stream(toAddresses).of(stream -> stream.forEach(address -> {
                        postcard.addTo(address);
                    }));
                    BeanUtil.copyMapToBean(dataMap, postcard);
                });
                saveInfo(messages -> messages.addSuccessSendTestmail(GLOBAL));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java

        //                                                                    ================
        // -----------------------------------------------------
        //                                          Mail Address
        //                                          ------------
        public void setFrom(String from, String personal) {
            doSetFrom(from, personal);
        }
    
        public void addTo(String to) {
            doAddTo(to);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/Crawler.java

                        postcard.addReplyTo(fessConfig.getMailReturnPath());
                        if (toAddresses.length > 0) {
                            stream(toAddresses).of(stream -> stream.map(String::trim).forEach(address -> {
                                postcard.addTo(address);
                            }));
                        } else {
                            postcard.addTo(fessConfig.getMailFromAddress());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. Administrator */
        String MAIL_FROM_NAME = "mail.from.name";
    
        /** The key of the configuration. e.g. root@localhost */
        String MAIL_FROM_ADDRESS = "mail.from.address";
    
        /** The key of the configuration. e.g.  */
        String MAIL_HOSTNAME = "mail.hostname";
    
        /** The key of the configuration. e.g.  */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} is invalid {type} barcode. */
        public static final String CONSTRAINTS_EAN_MESSAGE = "{constraints.EAN.message}";
    
        /** The key of the message: {item} is not a well-formed email address. */
        public static final String CONSTRAINTS_Email_MESSAGE = "{constraints.Email.message}";
    
        /** The key of the message: Length of {item} must be between {min} and {max}. */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.contacts.technical.email_address", "******@****.***");
            defaultSettings.put("onelogin.saml2.contacts.support.given_name", "Support Guy");
            defaultSettings.put("onelogin.saml2.contacts.support.email_address", "support@@example.com");
        }
    
        protected Saml2Settings getSettings() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.2K bytes
    - Viewed (0)
Back to top