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.
Questions tagged [outlook-redemption]
515 questions
0
votes
0 answers
Issue with reading of Appointment Attendees with using Redemption
Using redemption library we are reading appointment.
While reading we encountered an exception:
System.Runtime.InteropServices.COMException (0x8000FFFF): Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
at…

P_rnd
- 153
- 1
- 1
- 11
0
votes
2 answers
Check if mail is forwarded already in Outlook Redemption
I'm trying to check if a particular mail item has already been forwarded and if not, to forward that mail item. I'm not having having much luck unfortunately.
This is my code:
Private Sub Forward_Mail(OItem As RDOMail)
Dim oForwardMail As…

EC99
- 137
- 10
0
votes
1 answer
Convert OOM Items.Restrict to Redemption Items.Restrict
I'm trying to convert the following working powershell OOM items.restrict:
$colMail = $olFolder.Items.Restrict("[Start] > '18/03/2022'")
$colMail = $olFolder.Items.Restrict("[Subject] = 'Test'")
RDO items.restrict
$SQL = "Subject = 'Test'" # or…

Mario
- 1
- 1
0
votes
2 answers
Determine if an appointment item exists in a cached or online store
I'm attempting to determine if a appointment item exists in a cached of online mailbox store. My code runs too slowly in the online store so I'm trying to hide the ribbon button for online stores.
public bool…

Kevin Moore
- 361
- 4
- 14
0
votes
0 answers
Mail not being received after adding a ReplyRecipient
Using Outlook for Microsoft Office 365 32 bit and Delphi XE8
I am evaluation Redemption.dll as Windows 11 has blocked my application from accessing Outlook.
I have Outlook configure with multiple profiles and stores
I can open the profiles find the…

Ephraim
- 199
- 1
- 2
- 18
0
votes
1 answer
When transfering EWS item by exporItem to pst using Redemption,I got a file.The file can not be imported in mac outlook
It occured an error "file error".My code followed
When importing into windows,no error occured.But the detail is not like the detail by outlook.
When importing into mac,error named "file error" occured.
package main
import (
"encoding/base64"
…

catFly
- 59
- 7
0
votes
2 answers
Why am I receiving the 401 HTTP ERROR when calling GetSharedMailbox in Redemption?
I am using Redemption to access the shared mailboxes. The Logon method that I am using is Session.LogonExchangeMailbox.
It seems to be working fine as long as I do not try to access the shared mailbox. Once I am trying to access shared mailbox,…

Nik Ohler
- 75
- 9
0
votes
0 answers
why does LogonHostedExchangeMailbox get stuck with no error message?
We are using Redemption Library to access our e-mails. Scripts are automated on server and triggered by Task Scheduler at regular intervals. After server reboots we usually experience the problem with Session.Logon, since the user needs to log on…

Nik Ohler
- 75
- 9
0
votes
1 answer
Wrong version of operating system when using Redemption 800401FA
I am trying to run simple script that imports .eml messages to outlook. I am using Redemption developer version. The problem occurs when i create object. I get 800401FA error which from what I understand tells me that there is redemption-outlook…

Jorhanc
- 310
- 2
- 13
0
votes
1 answer
Issue with Redemption embedded in application
We use a product from Epicor, I believe developed by mProof, called Clientele ITSM. The version we are using is 2016.2. We moved to Office 365 and since then are experiencing the error that started with Windows 10 (1809). The error message we…

chris.peters
- 3
- 1
0
votes
0 answers
Redemption: Error accessing inbox when running via task scheduler
I have an .Net 4.6 app processing mail from inbox. We are migrating an old windows server to a new one. The app runs interactively or via task scheduler. App is using Redemtpion 6.0, upgraded yesterday from v4.5.
On Windows Server 2008 R2 + Outlook…

Ivan
- 1
0
votes
1 answer
Query Send as permissions from Outlook COM add-in?
From within the context of an Outlook COM add-in, what is the best way to check if the current user has Send as permissions to another account?
I'm aware of the Redemption RDOAddressEntry.Delegates (PR_EMS_AB_PUBLIC_DELEGATES) and…

SoerenH
- 3
- 1
0
votes
2 answers
Intermittent COM and MAPI errors in native application
The problem
We have a native application, that integrates with Outlook through COM/interop.
Intermittently we experience different errors relating to COM, MAPI, Redemption and the Windows Registry. And this is only at a single client…

Casper Olsen
- 1
- 1
- 5
0
votes
1 answer
Redemption versions and functions backwards compatible
My software is currently using a version of Redemption from 2015, some customers are running into freezing issues on the current version of Outlook, so I'm interested in upgrading to the latest version of Redemption. Will the latest version of…

Evan Knutson
- 11
- 2
0
votes
0 answers
Redemption: Error when using Task Scheduler
I use a self written tool that uses Outlook Redemption to do some sync between our own data and a some user's calendars on Office365. When running the tool under the admin account on a Windows server, it works perfectly. When running it as a…

Marc Corbeel
- 1
- 1