21 lines
342 B
C++
21 lines
342 B
C++
#ifndef ____SMTP_RSET_h__
|
|
#define ____SMTP_RSET_h__
|
|
|
|
#include "Command.h"
|
|
|
|
namespace mail {
|
|
|
|
class __SMTP_RSET : public core::Command {
|
|
|
|
int processCommand(std::string request, Session *session, std::stringstream &data);
|
|
state = "READY";
|
|
data << "250 OK" << CRLF;
|
|
return 0;
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|