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