
org.subethamail.smtp.internal.command.ExpandCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subethasmtp Show documentation
Show all versions of subethasmtp Show documentation
A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.
package org.subethamail.smtp.internal.command;
import java.io.IOException;
import org.subethamail.smtp.internal.server.BaseCommand;
import org.subethamail.smtp.server.Session;
/**
*
* @author Michele Zuccala < [email protected] >
*/
public final class ExpandCommand extends BaseCommand
{
public ExpandCommand()
{
super("EXPN", "The expn command.");
}
@Override
public void execute(String commandString, Session sess) throws IOException
{
sess.sendResponse("502 EXPN command is disabled");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy