- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for Postbox (0.17 sec)
-
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
}; // Mock Postbox - no need to mock, the framework will handle it // Register components ComponentUtil.register(searchEngineClient, "searchEngineClient"); ComponentUtil.register(systemHelper, "systemHelper"); ComponentUtil.setFessConfig(fessConfig); ComponentUtil.register(notificationHelper, "notificationHelper"); // Postbox is handled by the framework
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
// Mock implementation } }; ComponentUtil.register(notificationHelper, "notificationHelper"); postbox = new Postbox() { // Mock implementation }; ComponentUtil.register(postbox, "postbox"); ComponentUtil.register(crawler, Crawler.class.getCanonicalName()); } @Override public void tearDown() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); final String toStrs = fessConfig.getNotificationTo(); final Postbox postbox = ComponentUtil.getComponent(Postbox.class); try { final String[] toAddresses; if (StringUtil.isNotBlank(toStrs)) { toAddresses = toStrs.split(",");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
dataMap.put("hostname", systemHelper.getHostname()); final FessConfig fessConfig = ComponentUtil.getFessConfig(); final Postbox postbox = ComponentUtil.getComponent(Postbox.class); try { TestmailPostcard.droppedInto(postbox, postcard -> { postcard.setFrom(fessConfig.getMailFromAddress(), fessConfig.getMailFromName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java
// =========== public static CrawlerPostcard droppedInto(Postbox postbox, MPCall<CrawlerPostcard> postcardLambda) { CrawlerPostcard postcard = new CrawlerPostcard(); postcardLambda.write(postcard); postbox.post(postcard); return postcard; } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10K bytes - Viewed (0)