vote up 5 vote down star
1

I have a requirement of reading subject, sender address and message body of new message in my Outlook inbox from a C# program. But I am getting security alert 'A Program is trying to access e-mail addresses you have stored in Outlook. Do you want to allow this'.

By some googling I found few third party COM libraries to avoid this. But I am looking for a solution which don't require any third party COM library.

flag

50% accept rate

7 Answers

vote up 5 vote down check

Sorry, I have had that annoying issue in both Outlook 2003 and Outlook 2007 add-ins, and the only solution that worked was to purchase a Redemption license. In Outlook 2007 that pesky popup should only show up if your firewall is down or your anti-virus software is outdated as far as I recall.

link|flag
The unfortunate truth is that there were so many abuses of Outlook that Microsoft has it locked down and doesn't provide a way around it. I guess you could attempt replicate what Redemption does yourself, but I doubt the cost/benefit could beat the $200 license. – Godeke Oct 24 '08 at 21:49
indeed, $200 is nothing compared to the time you would need to come up with something like redemption – Kasper Oct 24 '08 at 21:56
vote up 2 vote down

"But I am looking for a solution which don't require any third party COM library."

You won't find it. Kasper already pointed out the only solution that I know of. Redemption has been the only thing that has kept the Outlook plug-ins and code to work. I have done commercial Outlook add-ins for Franklin Covey. We explored a lot things, but Redemption was the only thing that got us over this hurdle.

link|flag
Actually, I have been able to automatically "click" away this message so that the user doesn't notice it (2003 and 2007). In a commercial app. – danbystrom Sep 9 at 12:03
vote up 1 vote down

If your application is not a Outlook plug in you can look at MAPI to read data from the inbox

link|flag
vote up 1 vote down

Try this

Tools-->Macro-->Security-->Programmatic Access

Then choose Never warn me about suspicious activity.

link|flag
I go for the kiss principle. I searched stackoverflow found this thread shall we call it. Read all about the fancy solutions. Read this one. Tried it and Dang what do you know. It worked. Thats the kind of simple solution I like. I was lucky that my client was using Outlook2007. Not all earlier Outlooks have this option. – kingchris Aug 26 at 16:17
vote up 0 vote down

I ran into same issue while accessing sender email address for outlook mail item. To avoid 'security alert' do not create new Application object, instead use Globals.ThisAddIn.Application to create new mailitem.

string GetSenderEmail(Outlook.MailItem item)
    {
        string emailAddress = "";
        if (item.SenderEmailType == "EX")
        {
            Outlook.MailItem tempItem = (Outlook.MailItem)Globals.ThisAddIn.Application.CreateItem(Outlook.OlItemType.olMailItem);
            tempItem.To = item.SenderEmailAddress;
            emailAddress = tempItem.Recipients[1].AddressEntry.GetExchangeUser().PrimarySmtpAddress.Trim();

        }
        else
        {
            emailAddress = item.SenderEmailAddress.Trim();

        }

        return emailAddress;
    }
link|flag
vote up 0 vote down

We use Advanced Security for Outlook from Mapilab for this. It is free, also for commercial use, and still keeps Outlook safe (by only allowing access from approved applications). Just apposed to previously mentioned solutions that cost either money, or may compromise security.

link|flag
vote up 0 vote down

You can disable the security pop-up using Outlook's Trust Center. Check this: http://msdn.microsoft.com/en-us/library/bb226709.aspx

Thanks! Sandeep Aparajit

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.