aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar DINH Viet Hoa <hoa@sprw.me>2013-01-21 13:29:25 -0800
committerGravatar DINH Viet Hoa <hoa@sprw.me>2013-01-21 13:29:25 -0800
commitd998016c04cb1e1dfc9fcf608639bfb5a4147439 (patch)
tree204bf5b6c71f49e0bdec9b76a19e51c29c58de0b /src
parentb5e3dc5f8920550a34b0702764e2c8752401dd23 (diff)
fixed init of async imap session, fixed xcode project
Diffstat (limited to 'src')
-rw-r--r--src/async/imap/MCIMAPAsyncSession.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/async/imap/MCIMAPAsyncSession.cpp b/src/async/imap/MCIMAPAsyncSession.cpp
index a6389bc7..b5640087 100644
--- a/src/async/imap/MCIMAPAsyncSession.cpp
+++ b/src/async/imap/MCIMAPAsyncSession.cpp
@@ -20,6 +20,18 @@ IMAPAsyncSession::IMAPAsyncSession()
mSessions = new Array();
mMaximumConnections = DEFAULT_MAX_CONNECTIONS;
mAllowsFolderConcurrentAccessEnabled = true;
+
+ mHostname = NULL;
+ mPort = 0;
+ mUsername = NULL;
+ mPassword = NULL;
+ mAuthType = AuthTypeSASLNone;
+ mConnectionType = ConnectionTypeClear;
+ mCheckCertificateEnabled = true;
+ mVoIPEnabled = true;
+ mDelimiter = 0;
+ mDefaultNamespace = NULL;
+ mTimeout = 30.;
}
IMAPAsyncSession::~IMAPAsyncSession()