22 lines
340 B
C++
22 lines
340 B
C++
#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
|