A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Categories - Removing cat. from incoming messages before rules fir



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old April 16th 08, 02:14 PM posted to microsoft.public.outlook.program_vba
Jan
external usenet poster
 
Posts: 53
Default Categories - Removing cat. from incoming messages before rules fir

Hi

My company uses and Exchange 2007 system with OL2003 clients. I personnaly
use categories extensively to handle my mails. Unfortunately the Exchange
server forwards my categories when ever I forward/reply to a message. This
also means that I get my colleagues categories.

Hence, I would like to remove the category on all incoming messages _before_
any rules are run (I have a number of client-only rules that assign new
categories).

I have tries three methods

1. Event ItemAdd
Advantage: Simple to use
Problem: It does not always fire

2. Event NewMailEx
Advantage: It always fires
Problem: It doen not always fire before the client rules. The result is that
the categories assigned by my rules are also removed (at least my macro works)

3. VB Script executed by a rule
Advantage: None really (read on)
Problem:
A: The load proposed on the system when OL is started increases
significantly (all the rules are heawy tu run).... BUT i can actually live
with that if it was not for...
B: Even if the rule is placed as the first rule OL does not always run it
before the other rules. Again the result is that my own categories are also
removed.

Any thoughts? I am thinking of a solution where I define categories in an
XLS file and handle all removal and assignment of categories in the NewMailEx
event... but I hope there is an easier way.

BR
-Jan
  #2  
Old April 16th 08, 03:27 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Categories - Removing cat. from incoming messages before rules fir

There is no guarantee that any of the events (ItemAdd, NewMail or NewMailEx)
will fire before the rules. Actually those events usually fire and the rule
fires and they conflict. The rule is handed an item that has come in but the
event handler does something that conflicts with the rule and you get an
error. That happens a lot.

The only way to completely avoid that is to code all your rules in the event
handlers and get rid of the rules completely.

Even NewMailEx will miss items, tests have shown when a large number of
items come in at once that sometimes the list of items is missing some.
Using NewMailEx plus a timed event handler to sweep the Inbox for anything
that might have been missed previously is the only guaranteed way to ensure
that all items are always handled.

Outlook 2007 has a new rule that lets you automatically remove incoming
categories, BTW.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Jan" wrote in message
...
Hi

My company uses and Exchange 2007 system with OL2003 clients. I personnaly
use categories extensively to handle my mails. Unfortunately the Exchange
server forwards my categories when ever I forward/reply to a message. This
also means that I get my colleagues categories.

Hence, I would like to remove the category on all incoming messages
_before_
any rules are run (I have a number of client-only rules that assign new
categories).

I have tries three methods

1. Event ItemAdd
Advantage: Simple to use
Problem: It does not always fire

2. Event NewMailEx
Advantage: It always fires
Problem: It doen not always fire before the client rules. The result is
that
the categories assigned by my rules are also removed (at least my macro
works)

3. VB Script executed by a rule
Advantage: None really (read on)
Problem:
A: The load proposed on the system when OL is started increases
significantly (all the rules are heawy tu run).... BUT i can actually live
with that if it was not for...
B: Even if the rule is placed as the first rule OL does not always run it
before the other rules. Again the result is that my own categories are
also
removed.

Any thoughts? I am thinking of a solution where I define categories in an
XLS file and handle all removal and assignment of categories in the
NewMailEx
event... but I hope there is an easier way.

BR
-Jan


  #3  
Old April 17th 08, 06:58 AM posted to microsoft.public.outlook.program_vba
Jan
external usenet poster
 
Posts: 53
Default Categories - Removing cat. from incoming messages before rules

Hi

I suspected something like this as I could not find any clrear references to
the problem.

Anyway thanks a lot for the clear answer.

So I guess I will have to do the own category / timed event solution. Any
idea where I could find code for inspiration? I do not want to spend hours on
this.

BR
-Jan

"Ken Slovak - [MVP - Outlook]" wrote:

There is no guarantee that any of the events (ItemAdd, NewMail or NewMailEx)
will fire before the rules. Actually those events usually fire and the rule
fires and they conflict. The rule is handed an item that has come in but the
event handler does something that conflicts with the rule and you get an
error. That happens a lot.

The only way to completely avoid that is to code all your rules in the event
handlers and get rid of the rules completely.

Even NewMailEx will miss items, tests have shown when a large number of
items come in at once that sometimes the list of items is missing some.
Using NewMailEx plus a timed event handler to sweep the Inbox for anything
that might have been missed previously is the only guaranteed way to ensure
that all items are always handled.

Outlook 2007 has a new rule that lets you automatically remove incoming
categories, BTW.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Jan" wrote in message
...
Hi

My company uses and Exchange 2007 system with OL2003 clients. I personnaly
use categories extensively to handle my mails. Unfortunately the Exchange
server forwards my categories when ever I forward/reply to a message. This
also means that I get my colleagues categories.

Hence, I would like to remove the category on all incoming messages
_before_
any rules are run (I have a number of client-only rules that assign new
categories).

I have tries three methods

1. Event ItemAdd
Advantage: Simple to use
Problem: It does not always fire

2. Event NewMailEx
Advantage: It always fires
Problem: It doen not always fire before the client rules. The result is
that
the categories assigned by my rules are also removed (at least my macro
works)

3. VB Script executed by a rule
Advantage: None really (read on)
Problem:
A: The load proposed on the system when OL is started increases
significantly (all the rules are heawy tu run).... BUT i can actually live
with that if it was not for...
B: Even if the rule is placed as the first rule OL does not always run it
before the other rules. Again the result is that my own categories are
also
removed.

Any thoughts? I am thinking of a solution where I define categories in an
XLS file and handle all removal and assignment of categories in the
NewMailEx
event... but I hope there is an easier way.

BR
-Jan



  #4  
Old April 17th 08, 03:02 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Categories - Removing cat. from incoming messages before rules

You can hunt around at www.outlookcode.com and see if anything there can
help you get started.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Jan" wrote in message
...
Hi

I suspected something like this as I could not find any clrear references
to
the problem.

Anyway thanks a lot for the clear answer.

So I guess I will have to do the own category / timed event solution. Any
idea where I could find code for inspiration? I do not want to spend hours
on
this.

BR
-Jan


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Rules + contact categories? Sebastian Outlook - Using Contacts 1 January 26th 07 02:25 PM
Removing headers from email, replacing rules with code Tony Gravagno Add-ins for Outlook 2 November 14th 06 11:34 PM
Removing Rules per Script Markus R. Outlook - General Queries 3 August 30th 06 04:05 PM
script to clear out categories on incoming emails [email protected] Outlook and VBA 2 July 31st 06 08:17 PM
Removing Message Rules Jack Gillis Outlook Express 4 July 12th 06 11:05 PM


All times are GMT +1. The time now is 11:40 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.