BARANTMail/__SMTP_NOOP.h
2019-09-13 10:34:10 -07:00

13 lines
279 B
C++

#ifndef ____SMTP_NOOP_h__
#define ____SMTP_NOOP_h__
#include "Command.h"
namespace mail {
class __SMTP_NOOP : public core::Command {
int processCommand(std::string request, Session *session, std::stringstream &data);
data << "250 OK" << CRLF;
}