Questions tagged [outlook-redemption]

Outlook Redemption is a library which works around the security limitations introduced in Outlook 2002. It also provides some additional features which are not accessible using the Outlook object model.

515 questions
1
vote
1 answer

COMException: Exception from HRESULT: 0x80040305

We have an applicaton which exports the content from exchange server(using outlook) to the XML, we used Redemption for this purpose and everything seems to be fine. But currently we are encountering a COMException as follow: COMException: Error in…
StartCoding
  • 394
  • 5
  • 16
1
vote
1 answer

Is it possible to render the exact same HTML as Outlook does when displaying HTML Body of .msg files?

We are displaying HTML body extracted from .MSG files exported from Outlook. To display the HTML body, one needs to decompress RTF from PR_RTF_Compressed field and then decode the RTF to HTML (outlook actually encodes HTML to RTF when exporting MSG…
Marek
  • 10,307
  • 8
  • 70
  • 106
1
vote
1 answer

Outlook Redemption With Embedded Image

I use outlook Redemption dll for creating outlook message template with c# language. Below is my code: RedemptionLoader.DllLocation64Bit = Server.MapPath("~/bin/dlls/Redemption64.dll"); RedemptionLoader.DllLocation32Bit =…
Hiren
  • 1,381
  • 5
  • 24
  • 41
1
vote
1 answer

Outlook Redemption 1st Step Problems

I am trying to work with Outlook Redemption using Python. Currently I am hitting an error just trying to get things working. import win32com.client session = win32com.client.Dispatch("Redemption.RDOSession") However, I am getting this…
1
vote
3 answers

How to refresh reading pane content in Outlook 2010

We use redemption tools to populate stub-mails with real content. After calling RDOMail.Import(...) on the selected item, we close and reopen the preview (reading) pane in outlook using m_Explorer.ShowPane(MSOutlook.OlPane.olPreview,…
user1261537
1
vote
1 answer

Forward RDOMail from original mail address by using Outlook Redemption

I'm currently developing an application that handles mail for mailboxes automatically. We use the tool Outlook Redemption and connect with one service account to multiple Exchange mailboxes. Case The problem we face is forwarding mail from the…
Herman Cordes
  • 4,628
  • 9
  • 51
  • 87
1
vote
2 answers

Creating a pst file using Redemption

I'm working on a project in C# that involves parsing .pst files and my group has chosen to use the Redemption library to do so. We have successfully parsed the email files in to RDOMail objects, however now we want to write a subset of those emails…
tbdavis
  • 13
  • 1
  • 3
1
vote
1 answer

Use an Outlook message file (msg) as a template

I wonder if it's possible with the .net framework or Microsoft.Office.Interop.Outlook to load an email message (*.msg), do a search and replace and send it from C#. It's all happening on the server so Outlook cannot be installed. What I've…
buckley
  • 13,690
  • 3
  • 53
  • 61
1
vote
1 answer

Why do the windows of my Outlook mail items become unusable after my application terminates?

I have a VB6 application which creates and displays mail items in Outlook using Redemption's RDO. Everything works except after my application terminates the window of every mail item originally created and displayed by my application becomes…
Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
1
vote
1 answer

How to tell what permissions a user has to an additional Outlook mailbox

What is the best way to determine if a user has full mailbox rights to an additional Outlook mailbox? I am using Redemption to use the Search Folders on a mailbox the user has access to. If they only have editor rights to certain folders they cannot…
Catherine
  • 148
  • 9
1
vote
0 answers

Get MailItem Recipient using Redemption.ISafeMailItem object

I am writing simple Outlook program in C# which records MailItem’s Recipients for sent mail. To build that I am hooking into Outlook Mailitem Send event to get Recipient collection. Also to avoid Outlook security prompt I am using Redemption…
apdev
  • 115
  • 2
  • 10
1
vote
0 answers

How to bypass the security patch using Outlook Redemption to save an Outlook Item

I am currently working on an application that can extract items from PST files and save it to a specified location. Right now I am using provided Microsoft.Office.Outlook.Interop to do this. Here is some code that I use to save a contact Item. The…
1
vote
1 answer

Redemption give exception in m/c do not have outlook or have outlook express

I have created an application that access Exchange Server using Redemption.It works fine in my machine ( I have outlook 2007 at my machine) but when I run same application in other system containing outlook express it gives me the following…
simon
  • 86
  • 3
  • 9
1
vote
1 answer

Could not resolve in GAL

I am using Redemption to work with outlook 2003. I want to access folder on sharedMailBox and code is failing: RDOSession session = new RDOSession(); session.LogonExchangeMailbox(Constants.UserName,Constants.ExchangeServerName); …
AlexSolovyov
  • 487
  • 2
  • 7
  • 22
1
vote
1 answer

Working with Outlook Redemption in Python

Okay, so here is my current problem which can be broken down into several parts, and any advice on any part would be greatly appreciated! Overview of general problem: I have several PST files in which every email contained within the PST files has…