#ifndef ____SMTP_VRFY_h__ #define ____SMTP_VRFY_h__ #include "Command.h" namespace http { class __SMTP_VRFY : public core::Command { int processCommand(std::string request, Session *session, std::stringstream &data) { data << "252 You must know who the mail is for" << CRLF; return 0; } }; } #endif