Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            }
        }
    
        // Test sendMail method
        public void test_sendMail_withNotificationDisabled() {
            Map<String, String> infoMap = new HashMap<>();
            infoMap.put("TestKey", "TestValue");
    
            // Should not throw exception when notification is disabled
            try {
                crawler.sendMail(infoMap);
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

                }
                if (logger.isInfoEnabled()) {
                    logger.info("[CRAWL INFO] {}", buf);
                }
    
                // notification
                try {
                    crawler.sendMail(infoMap);
                } catch (final Exception e) {
                    logger.warn("Failed to send a mail.", e);
                }
    
            }
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

         *
         * @param form the mail form containing notification settings
         * @return HTML response after sending test mail
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse sendmail(final MailForm form) {
            validate(form, messages -> {}, () -> asHtml(path_AdminGeneral_AdminGeneralJsp));
    
            final String[] toAddresses = form.notificationTo.split(",");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                    <button type="submit" class="btn btn-default ${f:h(editableClass)}"
                                                            name="sendmail" value="test">
                                                        <la:message key="labels.send_testmail"/>
                                                    </button>
                                                </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  5. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    *.pg
    *.platformsh.site
    *.private.repost.aws
    *.privatelink.snowflake.app
    *.quipelements.com
    *.r.appspot.com
    *.run.app
    *.s.brave.io
    *.sa-east-1.airflow.amazonaws.com
    *.sapporo.jp
    *.sch.uk
    *.sendai.jp
    *.services.clever-cloud.com
    *.snowflake.app
    *.spectrum.myjino.ru
    *.statics.cloud
    *.stg-builder.code.com
    *.stg.dev
    *.stgstage.dev
    *.stolos.io
    *.svc.firenet.ch
    *.sys.qcx.io
    *.telebit.xyz
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
Back to top