BARANTMail/__SMTP_VRFY.h
2022-07-08 19:30:00 -07:00

15 lines
266 B
C++

#ifndef ____SMTP_VRFY_h__
# define ____SMTP_VRFY_h__
# include "SMTPCommand.h"
namespace mail {
class __SMTP_VRFY : public SMTPCommand {
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
};
}
#endif