New Post: Not able to delete IPM.Rule.Message
You should look at opening a case to investigate your inbox rule corruption.
View ArticleNew Post: Not able to delete IPM.Rule.Message
Hi Stephen, I didn't open a case. What I did to resolve the issue was export the mailbox to a pst file, delete the mailbox, create a new mailbox for the user, and then imported the pst file. During the...
View ArticleNew Post: Unable to copy all messages in purges folder to a file.
Hi Everyone, I need to find a way to copy all messages in a purges folder in mfcmapi. I can open a message just fine but I need to select all messages and have them go somewhere to open them later if I...
View ArticleNew Post: Outlook 2007 does not terminate after the MapiLogonEx
Hi, After looking at the MFCMapi code, I have written a Mapi application which reads all the contacts from address book. On couple of machines(Windows XP with Outlook 2007) I have found that I could...
View ArticleNew Post: Outlook 2007 does not terminate after the MapiLogonEx
MFCMAPI doesn't do anything in particular, but it is a windows application and as such does pump messages - MAPI needs messages to be pumped for the notification subsystem to work properly. Try pumping...
View ArticleNew Post: Outlook 2007 does not terminate after the MapiLogonEx
Thank you for your quick response. I will try the same and update you.
View ArticleNew Post: Error : Cannot open your default e-mail folders. the file...
Hi, I have written a multithreaded console application, which fetches all contacts. Sometimes(on some machines) when this MAPI application is running, and I open the outlook, I get the following...
View ArticleNew Post: Error : Cannot open your default e-mail folders. the file...
Unless you're calling into Simple MAPI, MapiLogOff isn't a MAPI function, so I assume it's something you wrote. Further, I assume in there you're calling IMAPISession::Logoff...
View ArticleNew Post: Error : Cannot open your default e-mail folders. the file...
I am calling IMAPISession::Logoff(). I did following minor code change which seemed to have solved this issue. Earlier I used to release the m_lpMsgStore just before the application termination,...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
When in MFCMAPI I set SESSION -> OPEN SESSION It will display the Profile window. But if I try to create a new profile, it does always open my own personal mailbox and does not let me to change the...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
What steps are you following to create a new profile?
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
Open MFCMAPI tool, From main view select SESSION From upper menu, LOG ON. It will prompt the Outlook profile window, you will set a display name. After OK it should come a new window where you can...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
When the profile dialog comes up, are you hitting the "New" button? It sounds like you're just picking an existing profile.
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
Open MFCMAPI tool -> Select SESSION from menu -> select LOGON -> From Choose profile select NEW PROFILE button write new displayname and press ok.After the final step should come a window...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
I have never seen the profile picker function as you describe. What version of Outlook are you running? Perhaps some screenshots would help illustrate what you're seeing?
View ArticleNew Post: How to get the EMail Address from a contact
Hi, I have written a Mapi application which would read couple of properties from a give contact. Most of the properties like PR_HOME_TELEPHONE_NUMBER , PR_HOME2_TELEPHONE_NUMBER ,...
View ArticleNew Post: How to get the EMail Address from a contact
You're looking at the property tag of a named property, which you can identify because the tag is > 0x8000. You need to be looking at the named property name. In MFCMAPI, that's a different column.
View ArticleNew Post: How to get the EMail Address from a contact
Thanks Griffin, I shall check this, and let you know Regards, Rohan
View ArticleNew Post: How to get the EMail Address from a contact
Hi Griffin, I am using following code //#define PR_EMAIL1_ORIGINAL_DISPLAY_NAME 0x8084001E void CMapiSession::GetContacts(LPMAPIFOLDER lpFolder) {HRESULT hr = S_OK; LPMAPITABLE lpContentsTable = NULL;...
View ArticleNew Post: How to get the EMail Address from a contact
You're trying to get a named property. You need to use GetIDsFromNames to map the name of the property to the property tag you can use to retrieve the property. I would study this before...
View Article