#ifndef __IMAPSession_h__ #define __IMAPSession_h__ namespace mail { class IMAPSession : public core::TCPSession { public: std::string clientDomainName; std::string userName; std::string password; AuthState authstate = USER_UNKNOWN; bool relay = false; }; } #endif