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

20 lines
348 B
C++

#ifndef ____SMTP_VRFY_h__
#define ____SMTP_VRFY_h__
#include "Command.h"
namespace mail {
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