1 /* 2 * Copyright 2001-2005 The Apache Software Foundation 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 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 /** */ 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 }