- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getMailFromName (0.12 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java
private static final long serialVersionUID = 1L; @Override public String getMailFromName() { return name; } }); assertEquals(name, ComponentUtil.getFessConfig().getMailFromName()); } } // Test with different from addresses public void test_differentFromAddresses() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.4K 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); }));
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/test/java/org/codelibs/fess/exec/CrawlerTest.java
} @Override public String getMailFromAddress() { return "******@****.***"; } @Override public String getMailFromName() { return "Fess Crawler"; } @Override public String getMailReturnPath() { return "******@****.***"; }
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/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
} @Override public String getMailFromAddress() { return "******@****.***"; } @Override public String getMailFromName() { return "Fess System"; } @Override public String getMailReturnPath() { return "******@****.***"; } }
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/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) {
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/mylasta/direction/FessConfig.java
* comment: Name to display in the From field of emails. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getMailFromName(); /** * Get the value for the key 'mail.from.address'. <br> * The value is, e.g. root@localhost <br> * comment: Email address to use in the From field.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2)