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);
}