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

20 lines
335 B
C++

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