- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getMailReturnPath (0.09 sec)
-
src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java
EsStatusPostcard.droppedInto(postbox, postcard -> { postcard.setFrom(fessConfig.getMailFromAddress(), fessConfig.getMailFromName()); postcard.addReplyTo(fessConfig.getMailReturnPath()); if (toAddresses.length > 0) { stream(toAddresses).of(stream -> stream.map(String::trim).forEach(address -> { postcard.addTo(address);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
* The value is, e.g. root@localhost <br> * comment: The common return path of all mail * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getMailReturnPath(); /** * The simple implementation for configuration. * @author FreeGen */ public static class SimpleImpl extends ObjectiveConfig implements FessEnv {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java
motorbike.registerConnectionInfo(hostPortList.get(0), Integer.parseInt(hostPortList.get(1))); motorbike.registerReturnPath(fessConfig.getMailReturnPath()); parkingLot.registerMotorbikeAsMain(motorbike); return parkingLot; } // ----------------------------------------------------- // Postal Personnel
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
try { TestmailPostcard.droppedInto(postbox, postcard -> { postcard.setFrom(fessConfig.getMailFromAddress(), fessConfig.getMailFromName()); postcard.addReplyTo(fessConfig.getMailReturnPath()); stream(toAddresses).of(stream -> stream.forEach(address -> { postcard.addTo(address); })); BeanUtil.copyMapToBean(dataMap, postcard);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
CrawlerPostcard.droppedInto(postbox, postcard -> { postcard.setFrom(fessConfig.getMailFromAddress(), fessConfig.getMailFromName()); postcard.addReplyTo(fessConfig.getMailReturnPath()); if (toAddresses.length > 0) { stream(toAddresses).of(stream -> stream.map(String::trim).forEach(address -> { postcard.addTo(address);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0)