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

20 lines
323 B
C++

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