12 lines
253 B
C++
12 lines
253 B
C++
#include "__SMTP_VRFY.h"
|
|
|
|
namespace mail {
|
|
|
|
int __SMTP_VRFY::processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) {
|
|
session.out << "252 You must know who the mail is for" << CRLF;
|
|
return 1;
|
|
}
|
|
|
|
}
|
|
|