22 lines
393 B
C++
22 lines
393 B
C++
#ifndef ____SMTP_RCPT_h__
|
|
# define ____SMTP_RCPT_h__
|
|
|
|
# include "SMTPCommand.h"
|
|
# include "MailFileSystem.h"
|
|
# include "SMTPSession.h"
|
|
|
|
namespace mail {
|
|
|
|
class SMTPServer;
|
|
|
|
class __SMTP_RCPT : public SMTPCommand {
|
|
|
|
public:
|
|
int processCommand(coreutils::PString request, SMTPSession &session, SMTPServer &server, std::stringstream &data);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|