
org.subethamail.smtp.server.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subethasmtp-smtp Show documentation
Show all versions of subethasmtp-smtp Show documentation
A multithreaded standalone SMTP mail server implementation.
The newest version!
package org.subethamail.smtp.server;
import java.io.IOException;
/**
* Describes a SMTP command
*
* @author Jon Stevens
*/
public interface Command
{
public void execute(String commandString, ConnectionContext context) throws IOException;
public HelpMessage getHelp(String commandName) throws CommandException;
public String getName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy