PC Review


Reply
Thread Tools Rate Thread

Getting Around Outlook Security

 
 
TomT
Guest
Posts: n/a
 
      9th Nov 2003
Quite some time ago, I looked into ways around the
Outlook security warning when a program is trying to
access it (via VVBA). At that time it appeared there was
no way around this, except to use another method to send
mail.

I've moved much of this functionality over to SMTP using
CDOSYS, however there are still some cases where users
want to see and edit Outlook email generated from our
Access front end, and have them in their Sent Items.

I was wondering if there currently exists a way to
disable the security warning, in, e.g. Outlook 2002 or
2003, perhaps by digital signatures and certificates.
Users are living with the warning, but don't like it
much. We actually delayed applying service paks to
Outlook 2000 to avoid the issue, but have had to finally
give in and apply them.

Any help would be greatly appreciated.

Thanks
 
Reply With Quote
 
 
 
 
Cheryl Fischer
Guest
Posts: n/a
 
      9th Nov 2003
According to Outlook MVP Sue Mosher:

" ... Outlook 2003 does not show security prompts on three specific types of
applications:

-- VBScript code in published, non-oneoff Outlook forms

-- Outlook VBA code that uses the intrinsic Application object

-- Outlook COM add-ins properly constructed to derive all objects from
the Application object passed by the OnConnection event"

For more details, see her WebSite:
http://www.slipstick.com/outlook/esecup.htm#autosec.


--
Cheryl Fischer
Law/Sys Associates
Houston, TX

"TomT" <(E-Mail Removed)> wrote in message
news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
> Quite some time ago, I looked into ways around the
> Outlook security warning when a program is trying to
> access it (via VVBA). At that time it appeared there was
> no way around this, except to use another method to send
> mail.
>
> I've moved much of this functionality over to SMTP using
> CDOSYS, however there are still some cases where users
> want to see and edit Outlook email generated from our
> Access front end, and have them in their Sent Items.
>
> I was wondering if there currently exists a way to
> disable the security warning, in, e.g. Outlook 2002 or
> 2003, perhaps by digital signatures and certificates.
> Users are living with the warning, but don't like it
> much. We actually delayed applying service paks to
> Outlook 2000 to avoid the issue, but have had to finally
> give in and apply them.
>
> Any help would be greatly appreciated.
>
> Thanks



 
Reply With Quote
 
TomT
Guest
Posts: n/a
 
      9th Nov 2003
Cheryl,

Thanks very much for your reply. I checked the site you
mentioned, but (and I may be getting old and blind) I
didn't see any references to Outlook 2003.

Could you elaborate, please on the second type you
mentioned "Outlook VBA code that uses the intrinsic
Application object"?

Thanks for your kind assistance.

>-----Original Message-----
>According to Outlook MVP Sue Mosher:
>
>" ... Outlook 2003 does not show security prompts on

three specific types of
>applications:
>
> -- VBScript code in published, non-oneoff Outlook

forms
>
> -- Outlook VBA code that uses the intrinsic

Application object
>
> -- Outlook COM add-ins properly constructed to derive

all objects from
>the Application object passed by the OnConnection event"
>
>For more details, see her WebSite:
>http://www.slipstick.com/outlook/esecup.htm#autosec.
>
>
>--
>Cheryl Fischer
>Law/Sys Associates
>Houston, TX
>
>"TomT" <(E-Mail Removed)> wrote in message
>news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
>> Quite some time ago, I looked into ways around the
>> Outlook security warning when a program is trying to
>> access it (via VVBA). At that time it appeared there

was
>> no way around this, except to use another method to

send
>> mail.
>>
>> I've moved much of this functionality over to SMTP

using
>> CDOSYS, however there are still some cases where users
>> want to see and edit Outlook email generated from our
>> Access front end, and have them in their Sent Items.
>>
>> I was wondering if there currently exists a way to
>> disable the security warning, in, e.g. Outlook 2002 or
>> 2003, perhaps by digital signatures and certificates.
>> Users are living with the warning, but don't like it
>> much. We actually delayed applying service paks to
>> Outlook 2000 to avoid the issue, but have had to

finally
>> give in and apply them.
>>
>> Any help would be greatly appreciated.
>>
>> Thanks

>
>
>.
>

 
Reply With Quote
 
Cheryl Fischer
Guest
Posts: n/a
 
      9th Nov 2003
> didn't see any references to Outlook 2003

http://www.slipstick.com/outlook/ol2003.htm discusses Outlook 2003 and has
numerous links to sub-topics.


> Could you elaborate, please on the second type you
> mentioned "Outlook VBA code that uses the intrinsic
> Application object"?


As mentioned in my reponse to your question, that is a quote from Sue in a
response to post(s) in one of the Outlook newsgroups. However, my
interpretation: it just means creating an application object via VBA, after
which all of that object's properties, methods, items, etc., are available
for your use. See:
http://msdn.microsoft.com/library/de...us/vbaol10/htm
l/olobjApplication.asp



--
Cheryl Fischer
Law/Sys Associates
Houston, TX

"TomT" <(E-Mail Removed)> wrote in message
news:018501c3a6e9$0bde88b0$(E-Mail Removed)...
> Cheryl,
>
> Thanks very much for your reply. I checked the site you
> mentioned, but (and I may be getting old and blind) I
> didn't see any references to Outlook 2003.
>
> Could you elaborate, please on the second type you
> mentioned "Outlook VBA code that uses the intrinsic
> Application object"?
>
> Thanks for your kind assistance.
>
> >-----Original Message-----
> >According to Outlook MVP Sue Mosher:
> >
> >" ... Outlook 2003 does not show security prompts on

> three specific types of
> >applications:
> >
> > -- VBScript code in published, non-oneoff Outlook

> forms
> >
> > -- Outlook VBA code that uses the intrinsic

> Application object
> >
> > -- Outlook COM add-ins properly constructed to derive

> all objects from
> >the Application object passed by the OnConnection event"
> >
> >For more details, see her WebSite:
> >http://www.slipstick.com/outlook/esecup.htm#autosec.
> >
> >
> >--
> >Cheryl Fischer
> >Law/Sys Associates
> >Houston, TX
> >
> >"TomT" <(E-Mail Removed)> wrote in message
> >news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
> >> Quite some time ago, I looked into ways around the
> >> Outlook security warning when a program is trying to
> >> access it (via VVBA). At that time it appeared there

> was
> >> no way around this, except to use another method to

> send
> >> mail.
> >>
> >> I've moved much of this functionality over to SMTP

> using
> >> CDOSYS, however there are still some cases where users
> >> want to see and edit Outlook email generated from our
> >> Access front end, and have them in their Sent Items.
> >>
> >> I was wondering if there currently exists a way to
> >> disable the security warning, in, e.g. Outlook 2002 or
> >> 2003, perhaps by digital signatures and certificates.
> >> Users are living with the warning, but don't like it
> >> much. We actually delayed applying service paks to
> >> Outlook 2000 to avoid the issue, but have had to

> finally
> >> give in and apply them.
> >>
> >> Any help would be greatly appreciated.
> >>
> >> Thanks

> >
> >
> >.
> >



 
Reply With Quote
 
Peter Russell
Guest
Posts: n/a
 
      9th Nov 2003
Well it's certainly no easier in A2002. Redemption or ExpressClickYes are
still the standard ways through.

As I understand it, without testing A2003, things are still the same for
anybody trying to automate Outlook from another product (Access/Excel
etc). The concession is that you can write code within Outlook that
doesn't trigger the alerts.

I believe MS have said things will not change for other apps because of
security issues.

Regards

Peter Russell





TomT previously wrote:

> Cheryl,
>
> Thanks very much for your reply. I checked the site you
> mentioned, but (and I may be getting old and blind) I
> didn't see any references to Outlook 2003.
>
> Could you elaborate, please on the second type you
> mentioned "Outlook VBA code that uses the intrinsic
> Application object"?
>
> Thanks for your kind assistance.
>
> >-----Original Message-----
> >According to Outlook MVP Sue Mosher:
> >
> >" ... Outlook 2003 does not show security prompts on

> three specific types of
> >applications:
> >
> > -- VBScript code in published, non-oneoff Outlook

> forms
> >
> > -- Outlook VBA code that uses the intrinsic

> Application object
> >
> > -- Outlook COM add-ins properly constructed to derive

> all objects from
> >the Application object passed by the OnConnection event"
> >
> >For more details, see her WebSite:
> >http://www.slipstick.com/outlook/esecup.htm#autosec.
> >
> >
> >--
> >Cheryl Fischer
> >Law/Sys Associates
> >Houston, TX
> >
> >"TomT" <(E-Mail Removed)> wrote in message
> >news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
> >> Quite some time ago, I looked into ways around the
> >> Outlook security warning when a program is trying to
> >> access it (via VVBA). At that time it appeared there

> was
> >> no way around this, except to use another method to

> send
> >> mail.
> >>
> >> I've moved much of this functionality over to SMTP

> using
> >> CDOSYS, however there are still some cases where users
> >> want to see and edit Outlook email generated from our
> >> Access front end, and have them in their Sent Items.
> >>
> >> I was wondering if there currently exists a way to
> >> disable the security warning, in, e.g. Outlook 2002 or
> >> 2003, perhaps by digital signatures and certificates.
> >> Users are living with the warning, but don't like it
> >> much. We actually delayed applying service paks to
> >> Outlook 2000 to avoid the issue, but have had to

> finally
> >> give in and apply them.
> >>
> >> Any help would be greatly appreciated.
> >>
> >> Thanks

> >
> >
> >.
> >

>


 
Reply With Quote
 
Cheryl Fischer
Guest
Posts: n/a
 
      9th Nov 2003
And, here is an article with additional information:

http://www.winnetmag.com/MicrosoftEx...cleID/38375/Mi
crosoftExchangeOutlook_38375.html

--
Cheryl Fischer
Law/Sys Associates
Houston, TX

"TomT" <(E-Mail Removed)> wrote in message
news:018501c3a6e9$0bde88b0$(E-Mail Removed)...
> Cheryl,
>
> Thanks very much for your reply. I checked the site you
> mentioned, but (and I may be getting old and blind) I
> didn't see any references to Outlook 2003.
>
> Could you elaborate, please on the second type you
> mentioned "Outlook VBA code that uses the intrinsic
> Application object"?
>
> Thanks for your kind assistance.
>
> >-----Original Message-----
> >According to Outlook MVP Sue Mosher:
> >
> >" ... Outlook 2003 does not show security prompts on

> three specific types of
> >applications:
> >
> > -- VBScript code in published, non-oneoff Outlook

> forms
> >
> > -- Outlook VBA code that uses the intrinsic

> Application object
> >
> > -- Outlook COM add-ins properly constructed to derive

> all objects from
> >the Application object passed by the OnConnection event"
> >
> >For more details, see her WebSite:
> >http://www.slipstick.com/outlook/esecup.htm#autosec.
> >
> >
> >--
> >Cheryl Fischer
> >Law/Sys Associates
> >Houston, TX
> >
> >"TomT" <(E-Mail Removed)> wrote in message
> >news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
> >> Quite some time ago, I looked into ways around the
> >> Outlook security warning when a program is trying to
> >> access it (via VVBA). At that time it appeared there

> was
> >> no way around this, except to use another method to

> send
> >> mail.
> >>
> >> I've moved much of this functionality over to SMTP

> using
> >> CDOSYS, however there are still some cases where users
> >> want to see and edit Outlook email generated from our
> >> Access front end, and have them in their Sent Items.
> >>
> >> I was wondering if there currently exists a way to
> >> disable the security warning, in, e.g. Outlook 2002 or
> >> 2003, perhaps by digital signatures and certificates.
> >> Users are living with the warning, but don't like it
> >> much. We actually delayed applying service paks to
> >> Outlook 2000 to avoid the issue, but have had to

> finally
> >> give in and apply them.
> >>
> >> Any help would be greatly appreciated.
> >>
> >> Thanks

> >
> >
> >.
> >



 
Reply With Quote
 
TomT
Guest
Posts: n/a
 
      9th Nov 2003
Many thanks. I read that article to mean that using VBA
in an Access front end to open and otherwise manipulate
Outlook 2003 messages (as I'm doing now, but against
Outlook 2k), the user will no longer get the security
prompt.

Is this correct?
>-----Original Message-----
>And, here is an article with additional information:
>
>http://www.winnetmag.com/MicrosoftEx...utlook/Article

/ArticleID/38375/Mi
>crosoftExchangeOutlook_38375.html
>
>--
>Cheryl Fischer
>Law/Sys Associates
>Houston, TX
>
>"TomT" <(E-Mail Removed)> wrote in message
>news:018501c3a6e9$0bde88b0$(E-Mail Removed)...
>> Cheryl,
>>
>> Thanks very much for your reply. I checked the site you
>> mentioned, but (and I may be getting old and blind) I
>> didn't see any references to Outlook 2003.
>>
>> Could you elaborate, please on the second type you
>> mentioned "Outlook VBA code that uses the intrinsic
>> Application object"?
>>
>> Thanks for your kind assistance.
>>
>> >-----Original Message-----
>> >According to Outlook MVP Sue Mosher:
>> >
>> >" ... Outlook 2003 does not show security prompts on

>> three specific types of
>> >applications:
>> >
>> > -- VBScript code in published, non-oneoff Outlook

>> forms
>> >
>> > -- Outlook VBA code that uses the intrinsic

>> Application object
>> >
>> > -- Outlook COM add-ins properly constructed to

derive
>> all objects from
>> >the Application object passed by the OnConnection

event"
>> >
>> >For more details, see her WebSite:
>> >http://www.slipstick.com/outlook/esecup.htm#autosec.
>> >
>> >
>> >--
>> >Cheryl Fischer
>> >Law/Sys Associates
>> >Houston, TX
>> >
>> >"TomT" <(E-Mail Removed)> wrote in message
>> >news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
>> >> Quite some time ago, I looked into ways around the
>> >> Outlook security warning when a program is trying to
>> >> access it (via VVBA). At that time it appeared there

>> was
>> >> no way around this, except to use another method to

>> send
>> >> mail.
>> >>
>> >> I've moved much of this functionality over to SMTP

>> using
>> >> CDOSYS, however there are still some cases where

users
>> >> want to see and edit Outlook email generated from

our
>> >> Access front end, and have them in their Sent Items.
>> >>
>> >> I was wondering if there currently exists a way to
>> >> disable the security warning, in, e.g. Outlook 2002

or
>> >> 2003, perhaps by digital signatures and

certificates.
>> >> Users are living with the warning, but don't like it
>> >> much. We actually delayed applying service paks to
>> >> Outlook 2000 to avoid the issue, but have had to

>> finally
>> >> give in and apply them.
>> >>
>> >> Any help would be greatly appreciated.
>> >>
>> >> Thanks
>> >
>> >
>> >.
>> >

>
>
>.
>

 
Reply With Quote
 
Dan Artuso
Guest
Posts: n/a
 
      9th Nov 2003
Hi Tom,
No, any VBA code that tries to manipulate Outlook from
another program will generate the prompt:

"Users, however, continue to get Outlook security prompts in VBA code in Microsoft Word
, Excel, and other Office 2003 programs and in any programs external to Outlook that
use Outlook programming objects"

--
HTH
Dan Artuso, Access MVP


"TomT" <(E-Mail Removed)> wrote in message news:018f01c3a70b$0de3af10$(E-Mail Removed)...
> Many thanks. I read that article to mean that using VBA
> in an Access front end to open and otherwise manipulate
> Outlook 2003 messages (as I'm doing now, but against
> Outlook 2k), the user will no longer get the security
> prompt.
>
> Is this correct?
> >-----Original Message-----
> >And, here is an article with additional information:
> >
> >http://www.winnetmag.com/MicrosoftEx...utlook/Article

> /ArticleID/38375/Mi
> >crosoftExchangeOutlook_38375.html
> >
> >--
> >Cheryl Fischer
> >Law/Sys Associates
> >Houston, TX
> >
> >"TomT" <(E-Mail Removed)> wrote in message
> >news:018501c3a6e9$0bde88b0$(E-Mail Removed)...
> >> Cheryl,
> >>
> >> Thanks very much for your reply. I checked the site you
> >> mentioned, but (and I may be getting old and blind) I
> >> didn't see any references to Outlook 2003.
> >>
> >> Could you elaborate, please on the second type you
> >> mentioned "Outlook VBA code that uses the intrinsic
> >> Application object"?
> >>
> >> Thanks for your kind assistance.
> >>
> >> >-----Original Message-----
> >> >According to Outlook MVP Sue Mosher:
> >> >
> >> >" ... Outlook 2003 does not show security prompts on
> >> three specific types of
> >> >applications:
> >> >
> >> > -- VBScript code in published, non-oneoff Outlook
> >> forms
> >> >
> >> > -- Outlook VBA code that uses the intrinsic
> >> Application object
> >> >
> >> > -- Outlook COM add-ins properly constructed to

> derive
> >> all objects from
> >> >the Application object passed by the OnConnection

> event"
> >> >
> >> >For more details, see her WebSite:
> >> >http://www.slipstick.com/outlook/esecup.htm#autosec.
> >> >
> >> >
> >> >--
> >> >Cheryl Fischer
> >> >Law/Sys Associates
> >> >Houston, TX
> >> >
> >> >"TomT" <(E-Mail Removed)> wrote in message
> >> >news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
> >> >> Quite some time ago, I looked into ways around the
> >> >> Outlook security warning when a program is trying to
> >> >> access it (via VVBA). At that time it appeared there
> >> was
> >> >> no way around this, except to use another method to
> >> send
> >> >> mail.
> >> >>
> >> >> I've moved much of this functionality over to SMTP
> >> using
> >> >> CDOSYS, however there are still some cases where

> users
> >> >> want to see and edit Outlook email generated from

> our
> >> >> Access front end, and have them in their Sent Items.
> >> >>
> >> >> I was wondering if there currently exists a way to
> >> >> disable the security warning, in, e.g. Outlook 2002

> or
> >> >> 2003, perhaps by digital signatures and

> certificates.
> >> >> Users are living with the warning, but don't like it
> >> >> much. We actually delayed applying service paks to
> >> >> Outlook 2000 to avoid the issue, but have had to
> >> finally
> >> >> give in and apply them.
> >> >>
> >> >> Any help would be greatly appreciated.
> >> >>
> >> >> Thanks
> >> >
> >> >
> >> >.
> >> >

> >
> >
> >.
> >



 
Reply With Quote
 
Dan Artuso
Guest
Posts: n/a
 
      9th Nov 2003
Forgot to mention, as Peter says, Redemption is the way to go.
I've used it and it only takes slight modifications to your existing code
to work with it. It completely eliminates the security prompts.

Google on: Outlook redemption

--
HTH
Dan Artuso, Access MVP


"TomT" <(E-Mail Removed)> wrote in message news:018f01c3a70b$0de3af10$(E-Mail Removed)...
> Many thanks. I read that article to mean that using VBA
> in an Access front end to open and otherwise manipulate
> Outlook 2003 messages (as I'm doing now, but against
> Outlook 2k), the user will no longer get the security
> prompt.
>
> Is this correct?
> >-----Original Message-----
> >And, here is an article with additional information:
> >
> >http://www.winnetmag.com/MicrosoftEx...utlook/Article

> /ArticleID/38375/Mi
> >crosoftExchangeOutlook_38375.html
> >
> >--
> >Cheryl Fischer
> >Law/Sys Associates
> >Houston, TX
> >
> >"TomT" <(E-Mail Removed)> wrote in message
> >news:018501c3a6e9$0bde88b0$(E-Mail Removed)...
> >> Cheryl,
> >>
> >> Thanks very much for your reply. I checked the site you
> >> mentioned, but (and I may be getting old and blind) I
> >> didn't see any references to Outlook 2003.
> >>
> >> Could you elaborate, please on the second type you
> >> mentioned "Outlook VBA code that uses the intrinsic
> >> Application object"?
> >>
> >> Thanks for your kind assistance.
> >>
> >> >-----Original Message-----
> >> >According to Outlook MVP Sue Mosher:
> >> >
> >> >" ... Outlook 2003 does not show security prompts on
> >> three specific types of
> >> >applications:
> >> >
> >> > -- VBScript code in published, non-oneoff Outlook
> >> forms
> >> >
> >> > -- Outlook VBA code that uses the intrinsic
> >> Application object
> >> >
> >> > -- Outlook COM add-ins properly constructed to

> derive
> >> all objects from
> >> >the Application object passed by the OnConnection

> event"
> >> >
> >> >For more details, see her WebSite:
> >> >http://www.slipstick.com/outlook/esecup.htm#autosec.
> >> >
> >> >
> >> >--
> >> >Cheryl Fischer
> >> >Law/Sys Associates
> >> >Houston, TX
> >> >
> >> >"TomT" <(E-Mail Removed)> wrote in message
> >> >news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
> >> >> Quite some time ago, I looked into ways around the
> >> >> Outlook security warning when a program is trying to
> >> >> access it (via VVBA). At that time it appeared there
> >> was
> >> >> no way around this, except to use another method to
> >> send
> >> >> mail.
> >> >>
> >> >> I've moved much of this functionality over to SMTP
> >> using
> >> >> CDOSYS, however there are still some cases where

> users
> >> >> want to see and edit Outlook email generated from

> our
> >> >> Access front end, and have them in their Sent Items.
> >> >>
> >> >> I was wondering if there currently exists a way to
> >> >> disable the security warning, in, e.g. Outlook 2002

> or
> >> >> 2003, perhaps by digital signatures and

> certificates.
> >> >> Users are living with the warning, but don't like it
> >> >> much. We actually delayed applying service paks to
> >> >> Outlook 2000 to avoid the issue, but have had to
> >> finally
> >> >> give in and apply them.
> >> >>
> >> >> Any help would be greatly appreciated.
> >> >>
> >> >> Thanks
> >> >
> >> >
> >> >.
> >> >

> >
> >
> >.
> >



 
Reply With Quote
 
TomT
Guest
Posts: n/a
 
      10th Nov 2003
Thanks for the clarification. I'll check into Redemption.
>-----Original Message-----
>Forgot to mention, as Peter says, Redemption is the way

to go.
>I've used it and it only takes slight modifications to

your existing code
>to work with it. It completely eliminates the security

prompts.
>
>Google on: Outlook redemption
>
>--
>HTH
>Dan Artuso, Access MVP
>
>
>"TomT" <(E-Mail Removed)> wrote in message

news:018f01c3a70b$0de3af10$(E-Mail Removed)...
>> Many thanks. I read that article to mean that using VBA
>> in an Access front end to open and otherwise manipulate
>> Outlook 2003 messages (as I'm doing now, but against
>> Outlook 2k), the user will no longer get the security
>> prompt.
>>
>> Is this correct?
>> >-----Original Message-----
>> >And, here is an article with additional information:
>> >

>>

>http://www.winnetmag.com/MicrosoftEx...utlook/Article
>> /ArticleID/38375/Mi
>> >crosoftExchangeOutlook_38375.html
>> >
>> >--
>> >Cheryl Fischer
>> >Law/Sys Associates
>> >Houston, TX
>> >
>> >"TomT" <(E-Mail Removed)> wrote in message
>> >news:018501c3a6e9$0bde88b0$(E-Mail Removed)...
>> >> Cheryl,
>> >>
>> >> Thanks very much for your reply. I checked the site

you
>> >> mentioned, but (and I may be getting old and blind)

I
>> >> didn't see any references to Outlook 2003.
>> >>
>> >> Could you elaborate, please on the second type you
>> >> mentioned "Outlook VBA code that uses the intrinsic
>> >> Application object"?
>> >>
>> >> Thanks for your kind assistance.
>> >>
>> >> >-----Original Message-----
>> >> >According to Outlook MVP Sue Mosher:
>> >> >
>> >> >" ... Outlook 2003 does not show security prompts

on
>> >> three specific types of
>> >> >applications:
>> >> >
>> >> > -- VBScript code in published, non-oneoff

Outlook
>> >> forms
>> >> >
>> >> > -- Outlook VBA code that uses the intrinsic
>> >> Application object
>> >> >
>> >> > -- Outlook COM add-ins properly constructed to

>> derive
>> >> all objects from
>> >> >the Application object passed by the OnConnection

>> event"
>> >> >
>> >> >For more details, see her WebSite:
>> >>

>http://www.slipstick.com/outlook/esecup.htm#autosec.
>> >> >
>> >> >
>> >> >--
>> >> >Cheryl Fischer
>> >> >Law/Sys Associates
>> >> >Houston, TX
>> >> >
>> >> >"TomT" <(E-Mail Removed)> wrote in message
>> >> >news:014001c3a6e2$3fb71a50$(E-Mail Removed)...
>> >> >> Quite some time ago, I looked into ways around

the
>> >> >> Outlook security warning when a program is

trying to
>> >> >> access it (via VVBA). At that time it appeared

there
>> >> was
>> >> >> no way around this, except to use another method

to
>> >> send
>> >> >> mail.
>> >> >>
>> >> >> I've moved much of this functionality over to

SMTP
>> >> using
>> >> >> CDOSYS, however there are still some cases where

>> users
>> >> >> want to see and edit Outlook email generated from

>> our
>> >> >> Access front end, and have them in their Sent

Items.
>> >> >>
>> >> >> I was wondering if there currently exists a way

to
>> >> >> disable the security warning, in, e.g. Outlook

2002
>> or
>> >> >> 2003, perhaps by digital signatures and

>> certificates.
>> >> >> Users are living with the warning, but don't

like it
>> >> >> much. We actually delayed applying service paks

to
>> >> >> Outlook 2000 to avoid the issue, but have had to
>> >> finally
>> >> >> give in and apply them.
>> >> >>
>> >> >> Any help would be greatly appreciated.
>> >> >>
>> >> >> Thanks
>> >> >
>> >> >
>> >> >.
>> >> >
>> >
>> >
>> >.
>> >

>
>
>.
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Customizing Outlook Security Features + Security settings cannot be saved jdr.smith@virgin.net Microsoft Outlook Discussion 3 15th Oct 2007 10:22 PM
Outlook 2003 Security Template - "The access levels on this security setting cannot be saved..." error! royalpuk@hotmail.com Microsoft Outlook 3 2nd Dec 2005 08:20 PM
Public Folder Security Settings/Outlook Security Features =?Utf-8?B?RG9ubmFQLg==?= Microsoft Outlook Discussion 1 7th Oct 2005 07:54 PM
Norton Internet Security 04 w/Outlook block Spam increase security =?Utf-8?B?SG9sbHlF?= Microsoft Outlook Installation 2 16th Jul 2004 10:29 PM
Microsoft Security Bulletin MS04-018 - Cumulative Security Update for Outlook Express (823353) Emily F [MSFT] Microsoft Windows 2000 4 14th Jul 2004 06:21 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:12 PM.