001    /*
002     * Licensed to the Apache Software Foundation (ASF) under one or more
003     * contributor license agreements.  See the NOTICE file distributed with
004     * this work for additional information regarding copyright ownership.
005     * The ASF licenses this file to You under the Apache License, Version 2.0
006     * (the "License"); you may not use this file except in compliance with
007     * the License.  You may obtain a copy of the License at
008     *
009     *     http://www.apache.org/licenses/LICENSE-2.0
010     *
011     * Unless required by applicable law or agreed to in writing, software
012     * distributed under the License is distributed on an "AS IS" BASIS,
013     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014     * See the License for the specific language governing permissions and
015     * limitations under the License.
016     */
017    package org.apache.commons.mail.settings;
018    
019    /**
020     * @since 1.0
021     * @author Eric Pugh
022     * @version $Revision: 480401 $ $Date: 2006-11-28 20:40:04 -0800 (Tue, 28 Nov 2006) $
023     */
024    public final class EmailConfiguration
025    {
026        /** */
027        public static final String MAIL_SERVER = "localhost";
028        /** */
029        public static final int MAIL_SERVER_PORT = 2500;
030        /** */
031        public static final String TEST_FROM = "test_from@apache.org";
032        /** */
033        public static final String TEST_TO = "test_to@apache.org";
034        /** */
035        public static final String TEST_USER = "user";
036        /** */
037        public static final String TEST_PASSWD = "passwd";
038        /** */
039        public static final String TEST_URL = EmailConfiguration.class
040            .getResource("/images/asf_logo_wide.gif")
041            .toExternalForm();
042        /** Amount of time to wait for Dumbster to start up */
043        public static final int TIME_OUT = 500;
044    }