20 lines
361 B
C
20 lines
361 B
C
|
|
#ifndef ____IMAP_SELECT_h__
|
||
|
|
# define ____IMAP_SELECT_h__
|
||
|
|
|
||
|
|
# include "IMAPCommand.h"
|
||
|
|
# include "IMAPSession.h"
|
||
|
|
|
||
|
|
namespace mail {
|
||
|
|
|
||
|
|
class __IMAP_SELECT : public IMAPCommand {
|
||
|
|
|
||
|
|
int processCommand(coreutils::PString request, IMAPSession &session, std::stringstream &data) {
|
||
|
|
data << "250 OK" << CRLF;
|
||
|
|
}
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|