BARANTMail/__IMAP_SELECT.h

20 lines
329 B
C
Raw Normal View History

2020-02-29 19:25:13 -08:00
#ifndef ____IMAP_SELECT_h__
# define ____IMAP_SELECT_h__
# include "IMAPCommand.h"
namespace mail {
class __IMAP_SELECT : public IMAPCommand {
2022-07-08 19:30:00 -07:00
int processCommand(coreutils::ZString request, IMAPSession &session) {
session.out << "250 OK" << CRLF;
2020-04-23 14:30:00 -07:00
return 1;
2020-02-29 19:25:13 -08:00
}
};
}
#endif