How do I reapply junk filters to an Inbox?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If I already have an inbox full of messages and have changed my junk mail
filters, how do I reapply junk-filtering to the inbox?
 
When establishing a Rule, there is a check box to apply the rule to
everthing in the folder.
 
Thanks!
That helped get rid of the obvious Spam that contains the string UCE in the
subject line.

However, I was hoping to reapply the Outlook 2003 Junk (spam) filter itself
which is apparently not a Rule per se. Is there any way to do that? Even
the VBA code to do it would work for me. I am using a Windows PC with
Outlook 2003
 
In order to filter through the mail using VBA I have started with this code:

Dim mi As MailItem
For Each mi In Application.Explorers.Item(1).CurrentFolder.Items
'.... What do we do here to check messages or folder for Junk

Next mi

What code snippet will force Junk filters to be reapplied to the
CurrentFolder?
 
It is not possible to run the junk mail filters on demand either manually or
programatically.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top