Outlook mailbox organization by Reply string elimination

  • Thread starter Thread starter brbillin
  • Start date Start date
B

brbillin

Never used VB in Outlook. Want to create a macro that will automatically
delete older messages with same content as the reply message. I'm sure this
isn't a new idea, but can't seem to find anything readily available.
 
Do you mean that you want to look for other messages that have the exact
same body content as the message you are replying to?

Where would these older messages be - in the same folder or possibly
anywhere?

--
Eric Legault [MVP - Outlook]
MCDBA, MCTS (Messaging & Collaboration, SharePoint Infrastructure, MOSS 2007
& WSS 3.0 Application Development)
President
Collaborative Innovations
-> Try Picture Attachments Wizard 2.0 For Microsoft Outlook <-
-> Take your SharePoint content offline <-
-> More info: http://www.collaborativeinnovations.ca <-
Blog: http://blogs.officezealot.com/legault
 
All messages would be in the inbox. As a new message arrives in the inbox I
would like to look through the mailbox and delete anything with the same
reply string. This could probably key off the subject (seeking other
messages with same subject and older contents).

The idea is to delete messages with the same content or reply string.
Instead of keeping 3 messages which are all sequentail replies it would only
keep the message with most complete reply thread thus clearing older 2
messages from the mailbox (since the latest relpy contains them all) and
reducing mail organization time.

The more I think about it the more complicated it seems. Further
development might include copying all attachements from previous messages
within the reply string to the current message thus not loosing any content
in previous replies and keeping a complete record of the conversation.

Eric Legault said:
Do you mean that you want to look for other messages that have the exact
same body content as the message you are replying to?

Where would these older messages be - in the same folder or possibly
anywhere?

--
Eric Legault [MVP - Outlook]
MCDBA, MCTS (Messaging & Collaboration, SharePoint Infrastructure, MOSS 2007
& WSS 3.0 Application Development)
President
Collaborative Innovations
-> Try Picture Attachments Wizard 2.0 For Microsoft Outlook <-
-> Take your SharePoint content offline <-
-> More info: http://www.collaborativeinnovations.ca <-
Blog: http://blogs.officezealot.com/legault


brbillin said:
Never used VB in Outlook. Want to create a macro that will automatically
delete older messages with same content as the reply message. I'm sure
this
isn't a new idea, but can't seem to find anything readily available.
 
Take a look at using ConversationTopic instead of the Subject line.
ConverationIndex is unique for each message in the conversation , if that's
of any help.

Anyway, use the ConversationTopic property with the Restrict method or
AdvancedSearch object to create a collection of items which meet your
criteria and delete the messages you don't want.

If you want to copy attachments between messages without first saving them
to a file, you'll have to use Redemption (http://www.dimastr.com).

--
Eric Legault [MVP - Outlook]
MCDBA, MCTS (Messaging & Collaboration, SharePoint Infrastructure, MOSS 2007
& WSS 3.0 Application Development)
President
Collaborative Innovations
-> Try Picture Attachments Wizard 2.0 For Microsoft Outlook <-
-> Take your SharePoint content offline <-
-> More info: http://www.collaborativeinnovations.ca <-
Blog: http://blogs.officezealot.com/legault


brbillin said:
All messages would be in the inbox. As a new message arrives in the inbox
I
would like to look through the mailbox and delete anything with the same
reply string. This could probably key off the subject (seeking other
messages with same subject and older contents).

The idea is to delete messages with the same content or reply string.
Instead of keeping 3 messages which are all sequentail replies it would
only
keep the message with most complete reply thread thus clearing older 2
messages from the mailbox (since the latest relpy contains them all) and
reducing mail organization time.

The more I think about it the more complicated it seems. Further
development might include copying all attachements from previous messages
within the reply string to the current message thus not loosing any
content
in previous replies and keeping a complete record of the conversation.

Eric Legault said:
Do you mean that you want to look for other messages that have the exact
same body content as the message you are replying to?

Where would these older messages be - in the same folder or possibly
anywhere?

--
Eric Legault [MVP - Outlook]
MCDBA, MCTS (Messaging & Collaboration, SharePoint Infrastructure, MOSS
2007
& WSS 3.0 Application Development)
President
Collaborative Innovations
-> Try Picture Attachments Wizard 2.0 For Microsoft Outlook <-
-> Take your SharePoint content offline <-
-> More info: http://www.collaborativeinnovations.ca <-
Blog: http://blogs.officezealot.com/legault


brbillin said:
Never used VB in Outlook. Want to create a macro that will
automatically
delete older messages with same content as the reply message. I'm sure
this
isn't a new idea, but can't seem to find anything readily available.
 
Back
Top