<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to easily redirect an email thread in Outlook</title>
	<atom:link href="http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/</link>
	<description></description>
	<lastBuildDate>Thu, 25 Feb 2010 20:23:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: turinmachine</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-437</link>
		<dc:creator>turinmachine</dc:creator>
		<pubDate>Tue, 23 Sep 2008 16:06:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-437</guid>
		<description>Thanks a lot from your code! I modifiy it in order to forward to any person included in the &quot;To&quot; field of the original message. Now my Oracle database can send email to one account who forwards the email to any specific account. That&#039;s exactly what I need it.</description>
		<content:encoded><![CDATA[<p>Thanks a lot from your code! I modifiy it in order to forward to any person included in the &#8220;To&#8221; field of the original message. Now my Oracle database can send email to one account who forwards the email to any specific account. That&#8217;s exactly what I need it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaron</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-232</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Fri, 11 Apr 2008 20:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-232</guid>
		<description>Great point Scott, that would be the right way to do it if you&#039;re not sure what the underlying implementation is, or just want to be safe.</description>
		<content:encoded><![CDATA[<p>Great point Scott, that would be the right way to do it if you&#8217;re not sure what the underlying implementation is, or just want to be safe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-231</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 11 Apr 2008 17:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-231</guid>
		<description>I see this in your code:
      If (forward.ReplyRecipients.Count &gt; 0) Then
            For i = 1 To forward.ReplyRecipients.Count
                forward.ReplyRecipients.Remove (i)
            Next i
        End If


That&#039;s dangerous unless you know exactly how the backend structure works.  If you delete item #1, then sometimes you have a hole at item 1, and sometimes item #2 becomes item #1...meaning that there&#039;s no longer an item 2 and you throw an exception when you try to delete #2 as it&#039;s suddenly #1.  So you need to reverse your loop and delete from the largest item to the smallest (i.e. delete item #1 last)

Then you never run into isues.</description>
		<content:encoded><![CDATA[<p>I see this in your code:<br />
      If (forward.ReplyRecipients.Count &gt; 0) Then<br />
            For i = 1 To forward.ReplyRecipients.Count<br />
                forward.ReplyRecipients.Remove (i)<br />
            Next i<br />
        End If</p>
<p>That&#8217;s dangerous unless you know exactly how the backend structure works.  If you delete item #1, then sometimes you have a hole at item 1, and sometimes item #2 becomes item #1&#8230;meaning that there&#8217;s no longer an item 2 and you throw an exception when you try to delete #2 as it&#8217;s suddenly #1.  So you need to reverse your loop and delete from the largest item to the smallest (i.e. delete item #1 last)</p>
<p>Then you never run into isues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JP</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-230</link>
		<dc:creator>JP</dc:creator>
		<pubDate>Wed, 19 Dec 2007 02:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-230</guid>
		<description>Hey folks, I got a few inquiries about the OL2003 code, so I posted it on a new site I just created. Check it out and let me know how it works out for you.

http://www.codeforexcelandoutlook.com/outlook.html

Direct Link: http://www.codeforexcelandoutlook.com/RedirectMail.txt</description>
		<content:encoded><![CDATA[<p>Hey folks, I got a few inquiries about the OL2003 code, so I posted it on a new site I just created. Check it out and let me know how it works out for you.</p>
<p><a href="http://www.codeforexcelandoutlook.com/outlook.html" rel="nofollow">http://www.codeforexcelandoutlook.com/outlook.html</a></p>
<p>Direct Link: <a href="http://www.codeforexcelandoutlook.com/RedirectMail.txt" rel="nofollow">http://www.codeforexcelandoutlook.com/RedirectMail.txt</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JP</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-229</link>
		<dc:creator>JP</dc:creator>
		<pubDate>Fri, 23 Nov 2007 18:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-229</guid>
		<description>Hey great job on the code, but it only works in Outlook 2007. I adapted your code for OL2003 (should work in OL2000 and 2002 as well). If anyone wants a copy, email me at jp2112 (at) earthlink .dot. net.

Thx</description>
		<content:encoded><![CDATA[<p>Hey great job on the code, but it only works in Outlook 2007. I adapted your code for OL2003 (should work in OL2000 and 2002 as well). If anyone wants a copy, email me at jp2112 (at) earthlink .dot. net.</p>
<p>Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scauer</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-228</link>
		<dc:creator>scauer</dc:creator>
		<pubDate>Thu, 25 Oct 2007 14:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-228</guid>
		<description>If getting BCC&#039;d angers you, then clearly you just need better rules. :)

I have a rule to send all emails to the &#039;Bug Reports&#039; dist list to a subfolder. I have another rule that looks for the text &quot;To: Bug Reports&quot; or &quot;; Bug Reports&quot; which also forwards to that folder, under the assumption that &#039;Bug Reports&#039; has been BCC&#039;d off the email.</description>
		<content:encoded><![CDATA[<p>If getting BCC&#8217;d angers you, then clearly you just need better rules. <img src='http://www.aaronlerch.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have a rule to send all emails to the &#8216;Bug Reports&#8217; dist list to a subfolder. I have another rule that looks for the text &#8220;To: Bug Reports&#8221; or &#8220;; Bug Reports&#8221; which also forwards to that folder, under the assumption that &#8216;Bug Reports&#8217; has been BCC&#8217;d off the email.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-225</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Wed, 24 Oct 2007 21:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-225</guid>
		<description>Great implementation, but BCCing will get a lot of people angry at you :)

http://www.leeholmes.com/blog/ThePerilsOfBCC.aspx</description>
		<content:encoded><![CDATA[<p>Great implementation, but BCCing will get a lot of people angry at you <img src='http://www.aaronlerch.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.leeholmes.com/blog/ThePerilsOfBCC.aspx" rel="nofollow">http://www.leeholmes.com/blog/ThePerilsOfBCC.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scauer</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-227</link>
		<dc:creator>scauer</dc:creator>
		<pubDate>Wed, 24 Oct 2007 21:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-227</guid>
		<description>Brilliant idea!</description>
		<content:encoded><![CDATA[<p>Brilliant idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Hanselman</title>
		<link>http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/comment-page-1/#comment-226</link>
		<dc:creator>Scott Hanselman</dc:creator>
		<pubDate>Wed, 24 Oct 2007 21:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.aaronlerch.com/blog/2007/10/24/how-to-easily-redirect-an-email-thread-in-outlook/#comment-226</guid>
		<description>Nicely done!</description>
		<content:encoded><![CDATA[<p>Nicely done!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
