
org.subethamail.smtp.command.VerifyCommand Maven / Gradle / Ivy
package org.subethamail.smtp.command;
import java.io.IOException;
import org.subethamail.smtp.server.BaseCommand;
import org.subethamail.smtp.server.ConnectionContext;
/**
* @author Ian McFarland <[email protected]>
* @author Jon Stevens
*/
public class VerifyCommand extends BaseCommand
{
public VerifyCommand()
{
super("VRFY", "The vrfy command.");
}
@Override
public void execute(String commandString, ConnectionContext context) throws IOException
{
context.sendResponse("502 VRFY command is disabled");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy