- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getMailSmtpServerMainHostAndPort (0.1 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
// Test getMailSendMock and isMailSendMock assertEquals("true", fessEnv.getMailSendMock()); assertTrue(fessEnv.isMailSendMock()); // Test getMailSmtpServerMainHostAndPort assertEquals("localhost:25", fessEnv.getMailSmtpServerMainHostAndPort()); // Test getMailSubjectTestPrefix assertEquals("[Test]", fessEnv.getMailSubjectTestPrefix()); // Test getMailReturnPath
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
* comment: SMTP server settings for main: host:port * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getMailSmtpServerMainHostAndPort(); /** * Get the value for the key 'mail.subject.test.prefix'. <br> * The value is, e.g. [Test] <br> * comment: The prefix of subject to show test environment or not
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java
final SMailPostalParkingLot parkingLot = new SMailPostalParkingLot(); final SMailPostalMotorbike motorbike = new SMailPostalMotorbike(); final String hostAndPort = fessConfig.getMailSmtpServerMainHostAndPort(); final List<String> hostPortList = DfStringUtil.splitListTrimmed(hostAndPort, ":"); motorbike.registerConnectionInfo(hostPortList.get(0), Integer.parseInt(hostPortList.get(1)));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0)