1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.commons.mail.settings;
17
18 /**
19 * @since 1.0
20 * @author Eric Pugh
21 * @version $Revision: 240033 $ $Date: 2005-08-25 12:03:05 +0200 (Thu, 25 Aug 2005) $
22 */
23 public final class EmailConfiguration
24 {
25 /** */
26 public static final String MAIL_SERVER = "localhost";
27 /** */
28 public static final int MAIL_SERVER_PORT = 2500;
29 /** */
30 public static final String TEST_FROM = "test_from@apache.org";
31 /** */
32 public static final String TEST_TO = "test_to@apache.org";
33 /** */
34 public static final String TEST_USER = "user";
35 /** */
36 public static final String TEST_PASSWD = "passwd";
37 /** */
38 public static final String TEST_URL = EmailConfiguration.class
39 .getResource("/images/asf_logo_wide.gif")
40 .toExternalForm();
41 /** Amount of time to wait for Dumbster to start up */
42 public static final int TIME_OUT = 500;
43 }