aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Viet Hoa Dinh <dinh.viet.hoa@gmail.com>2016-07-06 11:16:02 -0700
committerGravatar Viet Hoa Dinh <dinh.viet.hoa@gmail.com>2016-07-06 11:16:02 -0700
commitbb4ce179df4991c4630d2d1df72318c60105fe54 (patch)
treef712ec93affdf7698b041737da302ee270d025b2
parentc16b4730cf8db0816a1cac25ee8a2da3e7fbd86d (diff)
Fixed outlook server initial value
-rw-r--r--src/core/smtp/MCSMTPSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/smtp/MCSMTPSession.cpp b/src/core/smtp/MCSMTPSession.cpp
index 63cffaf3..2da04d97 100644
--- a/src/core/smtp/MCSMTPSession.cpp
+++ b/src/core/smtp/MCSMTPSession.cpp
@@ -54,7 +54,7 @@ void SMTPSession::init()
pthread_mutex_init(&mCancelLock, NULL);
pthread_mutex_init(&mCanCancelLock, NULL);
- mOutlookServer = true;
+ mOutlookServer = false;
}
SMTPSession::SMTPSession()