18 lines
303 B
C++
18 lines
303 B
C++
#ifndef ____SMTP_VRFY_h__
|
|
# define ____SMTP_VRFY_h__
|
|
|
|
# include "SMTPCommand.h"
|
|
# include "PString.h"
|
|
|
|
namespace mail {
|
|
|
|
class __SMTP_VRFY : public SMTPCommand {
|
|
|
|
int processCommand(coreutils::PString request, SMTPSession &session, std::stringstream &data);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|