BARANTMail/__IMAP_SEARCH.h
2022-07-08 19:30:00 -07:00

20 lines
329 B
C++

#ifndef ____IMAP_SEARCH_h__
# define ____IMAP_SEARCH_h__
# include "IMAPCommand.h"
namespace mail {
class __IMAP_SEARCH : public IMAPCommand {
int processCommand(coreutils::ZString request, IMAPSession &session) {
session.out << "250 OK" << CRLF;
return 1;
}
};
}
#endif