20 lines
348 B
C++
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
|