diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 00:17:46 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 00:17:46 -0400 |
commit | 302bf1b523012e11b60425d6eee1221ebc2724eb (patch) | |
tree | b191a895f8716efcbe42f454f37597a545a6f421 /mailnews/mapi/mapiDll | |
parent | 21b3f6247403c06f85e1f45d219f87549862198f (diff) | |
download | UXP-302bf1b523012e11b60425d6eee1221ebc2724eb.tar UXP-302bf1b523012e11b60425d6eee1221ebc2724eb.tar.gz UXP-302bf1b523012e11b60425d6eee1221ebc2724eb.tar.lz UXP-302bf1b523012e11b60425d6eee1221ebc2724eb.tar.xz UXP-302bf1b523012e11b60425d6eee1221ebc2724eb.zip |
Issue #1258 - Part 1: Import mailnews, ldap, and mork from comm-esr52.9.1
Diffstat (limited to 'mailnews/mapi/mapiDll')
-rw-r--r-- | mailnews/mapi/mapiDll/Makefile.in | 6 | ||||
-rw-r--r-- | mailnews/mapi/mapiDll/Mapi32.DEF | 21 | ||||
-rw-r--r-- | mailnews/mapi/mapiDll/MapiDll.cpp | 513 | ||||
-rw-r--r-- | mailnews/mapi/mapiDll/module.ver | 7 | ||||
-rw-r--r-- | mailnews/mapi/mapiDll/moz.build | 24 |
5 files changed, 571 insertions, 0 deletions
diff --git a/mailnews/mapi/mapiDll/Makefile.in b/mailnews/mapi/mapiDll/Makefile.in new file mode 100644 index 000000000..b6769e314 --- /dev/null +++ b/mailnews/mapi/mapiDll/Makefile.in @@ -0,0 +1,6 @@ +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +EMBED_MANIFEST_AT = 2 diff --git a/mailnews/mapi/mapiDll/Mapi32.DEF b/mailnews/mapi/mapiDll/Mapi32.DEF new file mode 100644 index 000000000..5e95396b0 --- /dev/null +++ b/mailnews/mapi/mapiDll/Mapi32.DEF @@ -0,0 +1,21 @@ +; This Source Code Form is subject to the terms of the Mozilla Public +; License, v. 2.0. If a copy of the MPL was not distributed with this +; file, You can obtain one at http://mozilla.org/MPL/2.0/. + +LIBRARY mozMapi32.dll + +EXPORTS + MAPILogon + MAPILogoff + MAPISendMail + MAPISendDocuments + MAPIFindNext + MAPIReadMail + MAPISaveMail + MAPIDeleteMail + MAPIAddress + MAPIDetails + MAPIResolveName + MAPIFreeBuffer + GetMapiDllVersion + diff --git a/mailnews/mapi/mapiDll/MapiDll.cpp b/mailnews/mapi/mapiDll/MapiDll.cpp new file mode 100644 index 000000000..b6b6ddbf7 --- /dev/null +++ b/mailnews/mapi/mapiDll/MapiDll.cpp @@ -0,0 +1,513 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#pragma warning (disable : 4996) // MAPILogoff is deprecated + +#include <windows.h> +#include <tchar.h> +#include <mapidefs.h> +#include <mapi.h> +#include "msgMapi.h" + +#define MAX_RECIPS 2000 +#define MAX_FILES 100 + + +#define MAX_NAME_LEN 256 +#define MAX_PW_LEN 256 +#define MAX_MSGINFO_LEN 512 +#define MAX_POINTERS 32 + +const CLSID CLSID_CMapiImp = {0x29f458be, 0x8866, 0x11d5, + {0xa3, 0xdd, 0x0, 0xb0, 0xd0, 0xf3, 0xba, 0xa7}}; +const IID IID_nsIMapi = {0x6EDCD38E,0x8861,0x11d5, + {0xA3,0xDD,0x00,0xB0,0xD0,0xF3,0xBA,0xA7}}; + +DWORD tId = 0; + +#define MAPI_MESSAGE_TYPE 0 +#define MAPI_RECIPIENT_TYPE 1 + +typedef struct { + LPVOID lpMem; + UCHAR memType; +} memTrackerType; + + +// this can't be right. +memTrackerType memArray[MAX_POINTERS]; + +// +// For remembering memory...how ironic. +// +void +SetPointerArray(LPVOID ptr, BYTE type) +{ +int i; + + for (i=0; i<MAX_POINTERS; i++) + { + if (memArray[i].lpMem == NULL) + { + memArray[i].lpMem = ptr; + memArray[i].memType = type; + break; + } + } +} + + +BOOL WINAPI DllMain(HINSTANCE aInstance, DWORD aReason, LPVOID aReserved) +{ + switch (aReason) + { + case DLL_PROCESS_ATTACH : tId = TlsAlloc(); + if (tId == 0xFFFFFFFF) + return FALSE; + break; + + case DLL_PROCESS_DETACH : TlsFree(tId); + break; + } + return TRUE; +} + +BOOL InitMozillaReference(nsIMapi **aRetValue) +{ + // Check whether this thread has a valid Interface + // by looking into thread-specific-data variable + + *aRetValue = (nsIMapi *)TlsGetValue(tId); + + // Check whether the pointer actually resolves to + // a valid method call; otherwise mozilla is not running + + if ((*aRetValue) && (*aRetValue)->IsValid() == S_OK) + return TRUE; + + HRESULT hRes = ::CoInitialize(NULL) ; + + hRes = ::CoCreateInstance(CLSID_CMapiImp, NULL, CLSCTX_LOCAL_SERVER, + IID_nsIMapi, (LPVOID *)aRetValue); + + if (hRes == S_OK && (*aRetValue)->Initialize() == S_OK) + if (TlsSetValue(tId, (LPVOID)(*aRetValue))) + return TRUE; + + // Either CoCreate or TlsSetValue failed; so return FALSE + + if ((*aRetValue)) + (*aRetValue)->Release(); + + ::CoUninitialize(); + return FALSE; +} + +//////////////////////////////////////////////////////////////////////////////////////// +// The MAPILogon function begins a Simple MAPI session, loading the default message //// +// store and address book providers //// +//////////////////////////////////////////////////////////////////////////////////////// + +ULONG FAR PASCAL MAPILogon(ULONG aUIParam, LPTSTR aProfileName, + LPTSTR aPassword, FLAGS aFlags, + ULONG aReserved, LPLHANDLE aSession) +{ + HRESULT hr = 0; + ULONG nSessionId = 0; + nsIMapi *pNsMapi = NULL; + + if (!InitMozillaReference(&pNsMapi)) + return MAPI_E_FAILURE; + + if (!(aFlags & MAPI_UNICODE)) + { + // Need to convert the parameters to Unicode. + + char *pUserName = (char *) aProfileName; + char *pPassWord = (char *) aPassword; + + TCHAR ProfileName[MAX_NAME_LEN] = {0}; + TCHAR PassWord[MAX_PW_LEN] = {0}; + + if (pUserName != NULL) + { + if (!MultiByteToWideChar(CP_ACP, 0, pUserName, -1, ProfileName, + MAX_NAME_LEN)) + return MAPI_E_FAILURE; + } + + if (pPassWord != NULL) + { + if (!MultiByteToWideChar(CP_ACP, 0, pPassWord, -1, PassWord, + MAX_NAME_LEN)) + return MAPI_E_FAILURE; + } + + hr = pNsMapi->Login(aUIParam, ProfileName, PassWord, aFlags, + &nSessionId); + } + else + hr = pNsMapi->Login(aUIParam, aProfileName, aPassword, + aFlags, &nSessionId); + if (hr == S_OK) + (*aSession) = (LHANDLE) nSessionId; + else + return nSessionId; + + return SUCCESS_SUCCESS; +} + +ULONG FAR PASCAL MAPILogoff (LHANDLE aSession, ULONG aUIParam, + FLAGS aFlags, ULONG aReserved) +{ + nsIMapi *pNsMapi = (nsIMapi *)TlsGetValue(tId); + if (pNsMapi != NULL) + { + if (pNsMapi->Logoff((ULONG) aSession) == S_OK) + pNsMapi->Release(); + pNsMapi = NULL; + } + + TlsSetValue(tId, NULL); + + ::CoUninitialize(); + + return SUCCESS_SUCCESS; +} + +ULONG FAR PASCAL MAPISendMail (LHANDLE lhSession, ULONG ulUIParam, nsMapiMessage *lpMessage, + FLAGS flFlags, ULONG ulReserved ) +{ + HRESULT hr = 0; + BOOL bTempSession = FALSE ; + nsIMapi *pNsMapi = NULL; + + if (!InitMozillaReference(&pNsMapi)) + return MAPI_E_FAILURE; + + if (lpMessage->nRecipCount > MAX_RECIPS) + return MAPI_E_TOO_MANY_RECIPIENTS ; + + if (lpMessage->nFileCount > MAX_FILES) + return MAPI_E_TOO_MANY_FILES ; + + if ( (!(flFlags & MAPI_DIALOG)) && (lpMessage->lpRecips == NULL) ) + return MAPI_E_UNKNOWN_RECIPIENT ; + + if (!lhSession || pNsMapi->IsValidSession(lhSession) != S_OK) + { + FLAGS LoginFlag ; + if ( (flFlags & MAPI_LOGON_UI) && (flFlags & MAPI_NEW_SESSION) ) + LoginFlag = MAPI_LOGON_UI | MAPI_NEW_SESSION ; + else if (flFlags & MAPI_LOGON_UI) + LoginFlag = MAPI_LOGON_UI ; + + hr = MAPILogon (ulUIParam, (LPTSTR) NULL, (LPTSTR) NULL, LoginFlag, 0, &lhSession) ; + if (hr != SUCCESS_SUCCESS) + return MAPI_E_LOGIN_FAILURE ; + bTempSession = TRUE ; + } + + // we need to deal with null data passed in by MAPI clients, specially when MAPI_DIALOG is set. + // The MS COM type lib code generated by MIDL for the MS COM interfaces checks for these parameters + // to be non null, although null is a valid value for them here. + nsMapiRecipDesc * lpRecips ; + nsMapiFileDesc * lpFiles ; + + nsMapiMessage Message ; + memset (&Message, 0, sizeof (nsMapiMessage) ) ; + nsMapiRecipDesc Recipient ; + memset (&Recipient, 0, sizeof (nsMapiRecipDesc) ); + nsMapiFileDesc Files ; + memset (&Files, 0, sizeof (nsMapiFileDesc) ) ; + + if(!lpMessage) + { + lpMessage = &Message ; + } + if(!lpMessage->lpRecips) + { + lpRecips = &Recipient ; + } + else + lpRecips = lpMessage->lpRecips ; + if(!lpMessage->lpFiles) + { + lpFiles = &Files ; + } + else + lpFiles = lpMessage->lpFiles ; + + hr = pNsMapi->SendMail (lhSession, lpMessage, + (short) lpMessage->nRecipCount, lpRecips, + (short) lpMessage->nFileCount, lpFiles, + flFlags, ulReserved); + + // we are seeing a problem when using Word, although we return success from the MAPI support + // MS COM interface in mozilla, we are getting this error here. This is a temporary hack !! + if (hr == 0x800703e6) + hr = SUCCESS_SUCCESS; + + if (bTempSession) + MAPILogoff (lhSession, ulUIParam, 0,0) ; + + return hr ; +} + + +ULONG FAR PASCAL MAPISendDocuments(ULONG ulUIParam, LPTSTR lpszDelimChar, LPTSTR lpszFilePaths, + LPTSTR lpszFileNames, ULONG ulReserved) +{ + LHANDLE lhSession ; + nsIMapi *pNsMapi = NULL; + + if (!InitMozillaReference(&pNsMapi)) + return MAPI_E_FAILURE; + + unsigned long result = MAPILogon (ulUIParam, (LPTSTR) NULL, (LPTSTR) NULL, MAPI_LOGON_UI, 0, &lhSession) ; + if (result != SUCCESS_SUCCESS) + return MAPI_E_LOGIN_FAILURE ; + + HRESULT hr; + + hr = pNsMapi->SendDocuments(lhSession, (LPTSTR) lpszDelimChar, (LPTSTR) lpszFilePaths, + (LPTSTR) lpszFileNames, ulReserved) ; + + MAPILogoff (lhSession, ulUIParam, 0,0) ; + + return hr ; +} + +ULONG FAR PASCAL MAPIFindNext(LHANDLE lhSession, ULONG ulUIParam, LPTSTR lpszMessageType, + LPTSTR lpszSeedMessageID, FLAGS flFlags, ULONG ulReserved, + unsigned char lpszMessageID[64]) +{ + nsIMapi *pNsMapi = NULL; + + if (!InitMozillaReference(&pNsMapi)) + return MAPI_E_FAILURE; + + if (lhSession == 0) + return MAPI_E_INVALID_SESSION; + + if (!lpszMessageType) + lpszMessageType = L""; + + if (!lpszSeedMessageID) + lpszSeedMessageID = L""; + + return pNsMapi->FindNext(lhSession, ulUIParam, lpszMessageType, + lpszSeedMessageID, flFlags, ulReserved, + lpszMessageID) ; +} + + +ULONG FAR PASCAL MAPIReadMail(LHANDLE lhSession, ULONG ulUIParam, LPTSTR lpszMessageID, + FLAGS flFlags, ULONG ulReserved, nsMapiMessage **lppMessage) +{ + nsIMapi *pNsMapi = NULL; + + if (!InitMozillaReference(&pNsMapi)) + return MAPI_E_FAILURE; + + if (lhSession == 0) + return MAPI_E_INVALID_SESSION; + + return pNsMapi->ReadMail(lhSession, ulUIParam, + lpszMessageID, flFlags, ulReserved, + lppMessage) ; + +} + +ULONG FAR PASCAL MAPISaveMail(LHANDLE lhSession, ULONG ulUIParam, lpnsMapiMessage lpMessage, + FLAGS flFlags, ULONG ulReserved, LPTSTR lpszMessageID) +{ + nsIMapi *pNsMapi = NULL; + + if (lhSession == 0) + return MAPI_E_INVALID_SESSION; + + if (!InitMozillaReference(&pNsMapi)) + return MAPI_E_FAILURE; + + return MAPI_E_FAILURE; +} + +ULONG FAR PASCAL MAPIDeleteMail(LHANDLE lhSession, ULONG ulUIParam, LPTSTR lpszMessageID, + FLAGS flFlags, ULONG ulReserved) +{ + nsIMapi *pNsMapi = NULL; + + if (lhSession == 0) + return MAPI_E_INVALID_SESSION; + + if (!InitMozillaReference(&pNsMapi)) + return MAPI_E_FAILURE; + + return pNsMapi->DeleteMail(lhSession, ulUIParam, + lpszMessageID, flFlags, ulReserved) ; +} + +ULONG FAR PASCAL MAPIAddress(LHANDLE lhSession, ULONG ulUIParam, LPTSTR lpszCaption, + ULONG nEditFields, LPTSTR lpszLabels, ULONG nRecips, + lpMapiRecipDesc lpRecips, FLAGS flFlags, + ULONG ulReserved, LPULONG lpnNewRecips, + lpMapiRecipDesc FAR *lppNewRecips) +{ + return MAPI_E_NOT_SUPPORTED; +} + +ULONG FAR PASCAL MAPIDetails(LHANDLE lhSession, ULONG ulUIParam, lpMapiRecipDesc lpRecip, + FLAGS flFlags, ULONG ulReserved) +{ + return MAPI_E_NOT_SUPPORTED; +} + +ULONG FAR PASCAL MAPIResolveName(LHANDLE lhSession, ULONG ulUIParam, LPTSTR lpszName, + FLAGS flFlags, ULONG ulReserved, lpMapiRecipDesc FAR *lppRecip) +{ + char* lpszRecipName = new char[(strlen((const char*)lpszName) + 1)]; + if (lpszRecipName == NULL) + return MAPI_E_INSUFFICIENT_MEMORY; + char* lpszRecipAddress = new char[(strlen((const char*)lpszName) + 6)]; + if (!lpszRecipAddress) { + delete[] lpszRecipName; + return MAPI_E_INSUFFICIENT_MEMORY; + } + strcpy(lpszRecipName, (const char*)lpszName); + strcpy(lpszRecipAddress, (const char*)lpszName); + (*lppRecip) = (lpMapiRecipDesc FAR)malloc(sizeof(MapiRecipDesc)); + if (!(*lppRecip)) { + delete[] lpszRecipName; + delete[] lpszRecipAddress; + return MAPI_E_INSUFFICIENT_MEMORY; + } + (*lppRecip)->ulRecipClass = 1; + (*lppRecip)->lpszName = lpszRecipName; + (*lppRecip)->lpszAddress = lpszRecipAddress; + (*lppRecip)->ulEIDSize = 0; + (*lppRecip)->lpEntryID = 0; + return SUCCESS_SUCCESS; +} + +void FreeMAPIRecipient(lpMapiRecipDesc pv); +void FreeMAPIMessage(lpMapiMessage pv); + +ULONG FAR PASCAL MAPIFreeBuffer(LPVOID pv) +{ + int i; + + if (!pv) + return S_OK; + + for (i=0; i<MAX_POINTERS; i++) + { + if (pv == memArray[i].lpMem) + { + if (memArray[i].memType == MAPI_MESSAGE_TYPE) + { + FreeMAPIMessage((MapiMessage *)pv); + memArray[i].lpMem = NULL; + } + else if (memArray[i].memType == MAPI_RECIPIENT_TYPE) + { + FreeMAPIRecipient((MapiRecipDesc *)pv); + memArray[i].lpMem = NULL; + } + } + } + + pv = NULL; + return S_OK; +} + +ULONG FAR PASCAL GetMapiDllVersion() +{ + return 94; +} + +void +FreeMAPIFile(lpMapiFileDesc pv) +{ + if (!pv) + return; + + if (pv->lpszPathName != NULL) + free(pv->lpszPathName); + + if (pv->lpszFileName != NULL) + free(pv->lpszFileName); +} + +void +FreeMAPIMessage(lpMapiMessage pv) +{ + ULONG i; + + if (!pv) + return; + + if (pv->lpszSubject != NULL) + free(pv->lpszSubject); + + if (pv->lpszNoteText) + free(pv->lpszNoteText); + + if (pv->lpszMessageType) + free(pv->lpszMessageType); + + if (pv->lpszDateReceived) + free(pv->lpszDateReceived); + + if (pv->lpszConversationID) + free(pv->lpszConversationID); + + if (pv->lpOriginator) + FreeMAPIRecipient(pv->lpOriginator); + + for (i=0; i<pv->nRecipCount; i++) + { + if (&(pv->lpRecips[i]) != NULL) + { + FreeMAPIRecipient(&(pv->lpRecips[i])); + } + } + + if (pv->lpRecips != NULL) + { + free(pv->lpRecips); + } + + for (i=0; i<pv->nFileCount; i++) + { + if (&(pv->lpFiles[i]) != NULL) + { + FreeMAPIFile(&(pv->lpFiles[i])); + } + } + + if (pv->lpFiles != NULL) + { + free(pv->lpFiles); + } + + free(pv); + pv = NULL; +} + +void +FreeMAPIRecipient(lpMapiRecipDesc pv) +{ + if (!pv) + return; + + if (pv->lpszName != NULL) + free(pv->lpszName); + + if (pv->lpszAddress != NULL) + free(pv->lpszAddress); + + if (pv->lpEntryID != NULL) + free(pv->lpEntryID); +} diff --git a/mailnews/mapi/mapiDll/module.ver b/mailnews/mapi/mapiDll/module.ver new file mode 100644 index 000000000..d62b9e99c --- /dev/null +++ b/mailnews/mapi/mapiDll/module.ver @@ -0,0 +1,7 @@ +WIN32_MODULE_FILEVERSION=0,8,0,0 +WIN32_MODULE_FILEVERSION_STRING=0.8 +WIN32_MODULE_COPYRIGHT=ŠThunderbird and Mozilla Developers, according to the MPL 1.1/GPL 2.0/LGPL 2.1 licenses, as applicable. +WIN32_MODULE_COMPANYNAME=Mozilla.org +WIN32_MODULE_TRADEMARKS=Mozilla +WIN32_MODULE_COMMENT=Mozilla Thunderbird MAPI Dll + diff --git a/mailnews/mapi/mapiDll/moz.build b/mailnews/mapi/mapiDll/moz.build new file mode 100644 index 000000000..d501c2308 --- /dev/null +++ b/mailnews/mapi/mapiDll/moz.build @@ -0,0 +1,24 @@ +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +# Statically link against the CRT, so that we don't go hunting around for it +# and not find it when we're loaded into explorer.exe or similar +GeckoSharedLibrary('mozMapi32', msvcrt='static', linkage=None) + +SOURCES += [ + 'MapiDll.cpp', +] + +OS_LIBS += [ + 'ole32', +] + +DEFINES['UNICODE'] = True +DEFINES['_UNICODE'] = True + +if not CONFIG['MOZ_INCOMPLETE_EXTERNAL_LINKAGE']: + DEFINES['MOZILLA_INTERNAL_API'] = True + +DEFFILE = SRCDIR + '/Mapi32.def' |