
org.subethamail.smtp.command.NoopCommand Maven / Gradle / Ivy
package org.subethamail.smtp.command;
import java.io.IOException;
import org.subethamail.smtp.server.BaseCommand;
import org.subethamail.smtp.server.Session;
/**
* @author Ian McFarland <[email protected]>
* @author Jon Stevens
* @author Jeff Schnitzer
*/
public class NoopCommand extends BaseCommand
{
/** */
public NoopCommand()
{
super("NOOP", "The noop command");
}
/** */
@Override
public void execute(String commandString, Session sess) throws IOException
{
sess.sendResponse("250 Ok");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy