org.apache.james.protocols.smtp.SMTPSession Maven / Gradle / Ivy
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you under the Apache License, Version 2.0 (the *
* "License"); you may not use this file except in compliance *
* with the License. You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, *
* software distributed under the License is distributed on an *
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
****************************************************************/
package org.apache.james.protocols.smtp;
import java.util.List;
import org.apache.james.core.MailAddress;
import org.apache.james.core.MaybeSender;
import org.apache.james.protocols.api.ProtocolSession;
/**
* All the handlers access this interface to communicate with
* SMTPHandler object
*/
public interface SMTPSession extends ProtocolSession {
// Keys used to store/lookup data in the internal state hash map
/** Sender's email address */
AttachmentKey SENDER = AttachmentKey.of("SENDER_ADDRESS", MaybeSender.class);
/** The message recipients */
@SuppressWarnings("unchecked")
AttachmentKey> RCPT_LIST = AttachmentKey.of("RCPT_LIST", (Class>) (Object) List.class);
/** HELO or EHLO */
AttachmentKey CURRENT_HELO_MODE = AttachmentKey.of("CURRENT_HELO_MODE", String.class);
AttachmentKey CURRENT_HELO_NAME = AttachmentKey.of("CURRENT_HELO_NAME", String.class);
/**
* Returns the service wide configuration
*
* @return the configuration
*/
@Override
SMTPConfiguration getConfiguration();
/**
* Returns whether Relaying is allowed or not
*
* @return the relaying status
*/
boolean isRelayingAllowed();
/**
* Set if reallying is allowed
*/
void setRelayingAllowed(boolean relayingAllowed);
/**
* Returns whether Authentication is required or not
*
* @return authentication required or not
*/
boolean isAuthAnnounced();
/**
* Returns the recipient count
*
* @return recipient count
*/
int getRcptCount();
boolean supportsOAuth();
long currentMessageSize();
void setCurrentMessageSize(long increment);
boolean headerComplete();
void setHeaderComplete(boolean value);
boolean messageFailed();
void setMessageFailed(boolean value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy