BARANTMail/__IMAP_STARTTLS.h

21 lines
379 B
C++

#ifndef ____IMAP_STARTTLS_h__
# define ____IMAP_STARTTLS_h__
# include "IMAPCommand.h"
# include "IMAPSession.h"
namespace mail {
class __IMAP_STARTTLS : public IMAPCommand {
int processCommand(coreutils::PString request, IMAPSession &session, std::stringstream &data) {
data << "250 OK" << CRLF;
return 1;
}
};
}
#endif