Package com.icegreen.greenmail.smtp.commands

Examples of com.icegreen.greenmail.smtp.commands.SmtpCommand


            return;
        }

        String commandName = _currentLine.substring(0, 4).toUpperCase();

        SmtpCommand command = _registry.getCommand(commandName);

        if (command == null) {
            _conn.println("500 Command not recognized");

            return;
        }

        command.execute(_conn, _state, _manager, _currentLine);
    }
View Full Code Here

TOP

Related Classes of com.icegreen.greenmail.smtp.commands.SmtpCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.