BARANTMail/__SMTP_VRFY.cpp
Brad Arant 6c844983d9 sync
2022-06-29 13:34:49 -07:00

13 lines
258 B
C++

#include "__SMTP_VRFY.h"
#define CRLF "\r\n"
namespace mail {
int __SMTP_VRFY::processCommand(coreutils::ZString &request, core::TCPSession &session) {
session.out << "252 You must know who the mail is for" << CRLF;
return 1;
}
}