21 lines
367 B
C++
21 lines
367 B
C++
#ifndef ____POP3_DELE_h__
|
|
# define ____POP3_DELE_h__
|
|
|
|
# include "POP3Command.h"
|
|
# include "POP3Session.h"
|
|
|
|
namespace mail {
|
|
|
|
class __POP3_DELE : public POP3Command {
|
|
|
|
int processCommand(coreutils::PString request, POP3Session &session, std::stringstream &data) {
|
|
data << "250 OK" << CRLF;
|
|
return 1;
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|