From d071a97479aed0d59f2d4a8acc27cf9369c7cd61 Mon Sep 17 00:00:00 2001 From: Maciej Wycik Date: Mon, 29 Jul 2013 10:05:05 +0000 Subject: password encryption (there is no unicode support in database.h?) git-svn-id: http://svn.miranda-ng.org/main/trunk@5521 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Exchange/src/emails.cpp | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'plugins/Exchange/src/emails.cpp') diff --git a/plugins/Exchange/src/emails.cpp b/plugins/Exchange/src/emails.cpp index 03e7d719ca..96deb1bc26 100644 --- a/plugins/Exchange/src/emails.cpp +++ b/plugins/Exchange/src/emails.cpp @@ -62,6 +62,7 @@ int CExchangeServer::Connect(int bForceConnect) { TCHAR user[1024]; //lovely TCHAR password[1024]; //i know + char apassword[1024]; TCHAR server[1024]; int port; @@ -75,7 +76,9 @@ int CExchangeServer::Connect(int bForceConnect) } GetStringFromDatabase("Password", _T(""), password, _countof(password)); - CallService(MS_DB_CRYPT_DECODESTRING, sizeof(password), (LPARAM) password); + strcpy(apassword,mir_t2a(password)); + CallService(MS_DB_CRYPT_DECODESTRING, sizeof(apassword), (LPARAM) apassword); + _tcsncpy(password,mir_a2t(apassword),_countof(password)); GetStringFromDatabase("Server", _T(""), server, _countof(server)); port = db_get_dw(NULL, ModuleName, "Port", EXCHANGE_PORT); if (_tcslen(server) > 0) //only connect if there's a server to connect to @@ -339,6 +342,21 @@ int CExchangeServer::Check(int bNoEmailsNotify) } ShowMessage(buffer, count); + /*int i; + TEmailHeader emailInfo = {0}; + char sender[1024]; + char subject[1024]; + emailInfo.cbSize = sizeof(emailInfo); + emailInfo.szSender = sender; + emailInfo.szSubject = subject; + emailInfo.cSender = sizeof(sender); + emailInfo.cSubject = sizeof(subject); + for (i = 0; i < count; i++) + { + GetEmailHeader(i, &emailInfo); + sprintf(buffer, "Unread email #%d:\nSender :%s\nSubject :%s", i + 1, sender, subject); + ShowMessage(buffer); + }*/ } if (count==-1) @@ -357,7 +375,7 @@ int ShowMessage(TCHAR *message, int cUnreadEmails) return ShowPopupMessage(TranslateT("Exchange email"), message, cUnreadEmails); } else{ - return ShowMessageBoxMessage(TranslateT("Do you want to see the email headers?"), message, cUnreadEmails); + return ShowMessageBoxMessage(TranslateT("Do you want to see the email headers ?"), message, cUnreadEmails); } return 0; -- cgit v1.2.3