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
2 answers
C# Image attachment isn't shown inline on redemption
I use the following code to add an image to an RDOMessage and try to show this image inside the HTMLBody...
_message.BodyFormat = 2;
_message.HTMLBody = MailHelper.GetHtmlMessage(MailBody, "utf-8");
if (ImageSource != null &&…

Marcel Grüger
- 885
- 1
- 9
- 25
0
votes
1 answer
Outlook ask for Pwd on Redemption - LogonHostedExchangeMailbox
Working with Redemption Dll version 6.3.0.6164
When I try to send a mail from a program, always appears a popup from Outlook asking for the password.
And if i enter the pwd, they ask again, and again, and again ...
Here is the code i use :
Dim…

user21371589
- 1
- 1
0
votes
0 answers
Attempt to read or write to protected memory in Redemption.RDOSessionClass.LogonHostedExchangeMailbox
I am having problems to connect with a Outlook 365.
When i try to do the LogonHostedExchangeMailbox ( "xxx@xxx.com", "xxx@xxx.com", "pwd" ) i always have the same error "Attempt to read or write to protected memory"
Anyone knows why can it be?
We…

user21371589
- 1
- 1
0
votes
1 answer
"Redemption Helper Outlook Extension" add-in that cannot be loaded
I'm facing troubles migrating some mailboxes from Exchange 2010 to Exchange 2016 because they are still used by an old application as part of some B2B flows. The application uses an old version of the Redemption.dll library (5.0.0.2174) to access…

MrOperator
- 1
- 3
0
votes
1 answer
Redemption "Error: Microsoft Exchange is not available" after moving mailboxes to Exchange 2016
I'm facing troubles migrating some mailboxes from Exchange 2010 to Exchange 2016 because they are still used by an old application as part of some B2B flows. The application uses an old version of the Redemption.dll library (5.0.0.2174) to access…

MrOperator
- 1
- 3
0
votes
0 answers
Why cannot CDO Object for SMTP accept Mail.Sender.SMTPAddress object as .to property?
I am reading senduser emails with Redemption library and trying to send the email through SMTP CDO.Object.
I have been receiving following error, as long as I get the email for "EX" senderEmailType through Mail.Sender.SMTPAddress: CDO.Message.1: The…

Nik Ohler
- 75
- 9
0
votes
0 answers
Redemption with O365 and Creating New Profiles
I'm so glad to see Redemption has survived into the 2020s! I used to use redemption many many years ago & LOVED it. I'm curious, how does it go with profile creation on Win11 / Outlook 365?
I need to push new profiles to a bunch of machines…
0
votes
0 answers
Outlook Redemption - add-in Control throws IAccessible.accDoDefaultAction error only when user locked
We have an add-in that is intended to be used when a user is remotely logged into a server. They open outlook, start a process with the add-in, then leave their session logged in but disconnect their session. The server is setup to never go to…

DasAmigo
- 333
- 3
- 12
0
votes
1 answer
How to enable SSL usage when using local XML autodiscover file?
I use the Redemption library and I encountered a problem I can not solve by myself.
In my project, I use a local XML file to login to the Exchange server (Autodiscover service is disabled on the server and can not be enabled). For this purpose, I…

CarolineP
- 1
- 1
0
votes
1 answer
Choose Reply Signature
I have manually created a signature in outlook with name “Microsoft”.
I need to change Reply Signature to cited one.
I have installed Redemption and used the below code ,But I got Type Mismatch at this line Account.ReplySignature = "Microsoft"
Sub…

Leedo
- 439
- 5
- 18
0
votes
1 answer
win32com.client.dispatch("Redemption.RDOSession") to use dll from a specific directory
I am currently attempting to create an email using redemption in python. I am able to complete the creation with redemption installed on my machine, but on the virtual sessions where this will be used, the redemption dll is in a different directory.…
0
votes
2 answers
Looking for a way to export O365 mailbox to .pst file
I do not think there is an EASY, right click -> export to PST for a mailbox, if you know of one, please let me know.
Since I can't find an easy way, I am going to attempt the code route.
I am looking to write some code to export an O365 mailbox to a…

thinkjohn
- 33
- 8
0
votes
1 answer
RDOOutOfOfficeAssistant object does not work with Outlook 365
I wrote a VSTO add-in for outlook. I am in a Microsoft Exchange environment in my company. I use the RDOOutOfOfficeAssistant object to set an OOF message (StartTime, OutOfOfficeTextInternal, ...). Everything works fine on my PC with MS Outlook 2013…

adi63
- 17
- 4
0
votes
1 answer
getting preferences for ReadReceiptRequested and OriginatorDeliveryReportRequested from MailItem without triggering Outlook Security Patch
I would like to use Redemption library (currently on version 5.27.0.6916) to get preferences for properties ReadReceiptRequested and OriginatorDeliveryReportRequested by creating a new MailItem in Inbox Folder and reading them.
Accessing them via…

ENOTTY
- 394
- 5
- 18
0
votes
2 answers
Outlook default categories are adding to category list when trying to add custom categories using redemption
I have a outlook plugin that add custom categories to outlook when add-in startup completes.
public void CreateCategories()
{
RDOCategories categories = null;
RDOCategory category = null;
…

shashika nirmani
- 37
- 5