01: /*
02: * Copyright 2001-2005 The Apache Software Foundation
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
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: public static final String MAIL_SERVER = "localhost";
26: /** */
27: public static final int MAIL_SERVER_PORT = 2500;
28: /** */
29: public static final String TEST_FROM = "test_from@apache.org";
30: /** */
31: public static final String TEST_TO = "test_to@apache.org";
32: /** */
33: public static final String TEST_USER = "user";
34: /** */
35: public static final String TEST_PASSWD = "passwd";
36: /** */
37: public static final String TEST_URL = EmailConfiguration.class
38: .getResource("/images/asf_logo_wide.gif").toExternalForm();
39: /** Amount of time to wait for Dumbster to start up */
40: public static final int TIME_OUT = 500;
41: }
|