<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ant Drewery &#187; Mailsweeper</title>
	<atom:link href="http://blog.drewery.net/category/mailsweeper/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.drewery.net</link>
	<description>IT infrastructure, support and strategy</description>
	<lastBuildDate>Thu, 24 Sep 2009 11:13:28 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='blog.drewery.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7a7aa06a893b7db9ae4152550fd5c30e?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ant Drewery &#187; Mailsweeper</title>
		<link>http://blog.drewery.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.drewery.net/osd.xml" title="Ant Drewery" />
	<atom:link rel='hub' href='http://blog.drewery.net/?pushpress=hub'/>
		<item>
		<title>Using Telnet to troubleshoot SMTP connectivity</title>
		<link>http://blog.drewery.net/2006/03/10/using-telnet-to-troubleshoot-smtp-connectivity/</link>
		<comments>http://blog.drewery.net/2006/03/10/using-telnet-to-troubleshoot-smtp-connectivity/#comments</comments>
		<pubDate>Fri, 10 Mar 2006 09:12:44 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Mailsweeper]]></category>

		<guid isPermaLink="false">http://www.drewery.net/blog/2006/03/10/using-telnet-to-troubleshoot-smtp-connectivity/</guid>
		<description><![CDATA[There are situations where you may want to manually test SMTP connectivity. Some of the common ones for me are:

When messages are queuing for delivery to or being rejected from a particular domain.
When I have an application that uses SMTP for notifications but none are being sent.
Running a basic open relay test.

In the case of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=71&subd=antdrewery&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>There are situations where you may want to manually test SMTP connectivity. Some of the common ones for me are:</p>
<ul>
<li>When messages are queuing for delivery to or being rejected from a particular domain.</li>
<li>When I have an application that uses SMTP for notifications but none are being sent.</li>
<li>Running a basic open relay test.</li>
</ul>
<p>In the case of queued/rejected messages I&#8217;ll first check the MX records for the problem domain via <a target="_blank" href="http://www.dnsstuff.com">www.dnsstuff.com</a>. For small companies you often see the primary MX record pointing to their server and a secondary record pointing to their ISP. It&#8217;s been my experience that the ISP&#8217;s mail server is often not configured to store and forward for the domain and instead rejects the message as a relay attempt. This becomes an issue when the primary MX record is unavailable (perhaps the company&#8217;s server or Internet connection is down).</p>
<p>So here&#8217;s my troubleshooting process in detail:</p>
<ul>
<li>Check the MX records for the problem domain via <a target="_blank" href="http://www.dnsstuff.com">www.dnsstuff.com</a>.</li>
<li>From the mail server that connects to the destination server (in our case a MailSweeper box) open a command prompt.</li>
<li>Type <strong>telnet mailhost 25</strong><em> </em>(Mailhost is the host name found in the MX record e.g. myserver.mydomain.com)</li>
<li>If the mailhost is available you should get a response similar to &#8220;220 mydomain.com&#8221; followed by some text that identifies the email server software. It is also possible that you get a simpler response designed not to give away any information to potential hackers. If you telnet to my company&#8217;s external mail servers you&#8217;ll simply get &#8220;220 SMTP Relay&#8221;.</li>
<li>If the connection fails you may want to take some additional troubleshooting steps like verifying that the mailhost resolves to an IP address. If you still cannot connect then try the next MX record in order of priority as this is what your mail server would do.</li>
<li>Once you get a response you need to say hello by typing <strong>helo</strong><em>.</em></li>
<li>The receiving server should respond with &#8220;250 mydomain.com yourIPaddress&#8221; or something similar.</li>
<li>Now you have to simulate sending a message from your domain. To do this first type <strong>mail from:youremailaddress</strong><em> </em>e.g. mail from:ant@mycompany.com.</li>
<li>You should see a response similar to &#8220;250 Sender OK&#8221;. If you get a rejection it will hopefully give you some additional information to identify why.</li>
<li>Now enter the destination email address by typing <strong>rcpt to:destinationemailaddress</strong><em>.</em></li>
<li>You should get a response like &#8220;250 desinationemailaddress&#8221; although this is often the point where you&#8217;ll get an &#8220;unable to relay&#8221; message if there&#8217;s a configuration issue or if you are genuinely trying to relay a message through a closed server.</li>
<li>Next we need to enter the subject and body text so type the command <strong>data</strong> which should respond with something like &#8220;354 Start mail input; end with .&#8221;</li>
<li>To add a subject you need to type <strong>Subject:my_subject_text</strong><em> </em>followed by a carriage return.</li>
<li>You can then type the body text. When you are finished start a new line type a full stop then hit return.</li>
<li>You&#8217;ll see something like &#8220;250 message queued for delivery&#8221;.</li>
</ul>
<p>Following this process through allows me to see at which point it fails and hopefully to obtain a clue as to why.</p>
<p>If I&#8217;m troubleshooting an application that should be sending SMTP notifications I would run the commands on the same box as the application and telnet to the SMTP server used in the application settings.</p>
<p>If I&#8217;m testing one of my boxes to ensure it&#8217;s not an open relay I would telnet to it but use an external email address for both the From address and the To address. I would expect to see a rejection after the RCPT TO: command.</p>
<p>[tags]Exchange, SMTP, telnet[/tags]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/antdrewery.wordpress.com/71/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/antdrewery.wordpress.com/71/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=71&subd=antdrewery&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2006/03/10/using-telnet-to-troubleshoot-smtp-connectivity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
		<item>
		<title>Customise Exchange 2003 NDRs?</title>
		<link>http://blog.drewery.net/2006/02/21/customise-exchange-2003-ndrs/</link>
		<comments>http://blog.drewery.net/2006/02/21/customise-exchange-2003-ndrs/#comments</comments>
		<pubDate>Tue, 21 Feb 2006 13:59:02 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Mailsweeper]]></category>

		<guid isPermaLink="false">http://www.drewery.net/blog/2006/02/21/customise-exchange-2003-ndrs/</guid>
		<description><![CDATA[I was asked today if it&#8217;s possible to customise the text in the non-delivery reports that Exchange 2003 sends. To the best of my knowledge this can&#8217;t be done if you are just using Exchange. However, if you run a product like MailSweeper you could intercept outbound NDRs that match a particular criteria then modify [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=61&subd=antdrewery&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I was asked today if it&#8217;s possible to customise the text in the non-delivery reports that Exchange 2003 sends. To the best of my knowledge this can&#8217;t be done if you are just using Exchange. However, if you run a product like <a target="_blank" href="http://www.mailsweeper.com/">MailSweeper</a> you could intercept outbound NDRs that match a particular criteria then modify the content before allowing to be delivered. That&#8217;s how I would tackle it if we had the requirement in our organisation.<br />
[tags]Exchange, NDR, Mailsweeper[/tags]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/antdrewery.wordpress.com/61/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/antdrewery.wordpress.com/61/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=61&subd=antdrewery&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2006/02/21/customise-exchange-2003-ndrs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
		<item>
		<title>Real-time Black Lists</title>
		<link>http://blog.drewery.net/2005/12/13/real-time-black-lists/</link>
		<comments>http://blog.drewery.net/2005/12/13/real-time-black-lists/#comments</comments>
		<pubDate>Tue, 13 Dec 2005 16:09:06 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[Anti-Spam]]></category>
		<category><![CDATA[Anti-Virus]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Mailsweeper]]></category>

		<guid isPermaLink="false">http://www.drewery.net/blog/?p=27</guid>
		<description><![CDATA[It&#8217;s official, I hate RBLs. For sometime I&#8217;ve tolerated and indeed used well run and respected lists like SURBL but then SURBL works differently to the rest. SURBL does not block listed hosts but rather allows you to block messages based on the URIs that they contain. It works well in conjunction with our MailSweeper [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=27&subd=antdrewery&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s official, I hate RBLs. For sometime I&#8217;ve tolerated and indeed used well run and respected lists like <a href="http://www.surbl.org/">SURBL</a> but then SURBL works differently to the rest. SURBL does not block listed hosts but rather allows you to block messages based on the URIs that they contain. It works well in conjunction with our MailSweeper servers.</p>
<p>The main problem with these types of service is that no one governs them. I could set one up tomorrow and list whoever I liked. Of course, you&#8217;d have to chose to use my list with your systems.</p>
<p>Most of these services make it fairly painless to be removed so although inconvenient  it&#8217;s not the end of the world if you are listed in error, and indeed if you are an open relay then it can be a justified kick up the backside. However, there are some real cowboys out there.</p>
<p>Today we&#8217;ve found one of our gateways listed with such a cowboy <a href="http://www.us.sorbs.net/">http://www.us.sorbs.net/</a>. I&#8217;ve scanned the box for Trojans and viruses with 2 different products and have thrown every relay test I know against it.  Nada. So how did it get listed? SORBS claim that our box sent an email (not a spam, just a regular email) to one of its honey trap addresses. That&#8217;s just plain crazy. It could have been an NDR or virus notification in response to a message that spoofed the SORBS address. To make things worse SORBS want a fine to have our box de-listed. This fine is in the form of a donation which I guess gets them round any extortion charges. What a joke.</p>
<p>I&#8217;m even more shocked to find a company like Vodafone uses this list as part of their anti-spam measures. Their admins should be shot.</p>
<p>That&#8217;s my rant over for now. I need to get back to getting de-listed.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/antdrewery.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/antdrewery.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=27&subd=antdrewery&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2005/12/13/real-time-black-lists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
		<item>
		<title>Layers of defence</title>
		<link>http://blog.drewery.net/2005/11/23/layers-of-defence/</link>
		<comments>http://blog.drewery.net/2005/11/23/layers-of-defence/#comments</comments>
		<pubDate>Wed, 23 Nov 2005 12:17:38 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[Anti-Virus]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Mailsweeper]]></category>

		<guid isPermaLink="false">http://www.drewery.net/blog/?p=21</guid>
		<description><![CDATA[Due to the critical nature of our email usage a major virus outbreak on our Exchange servers would probably cost me my job. So to help me sleep easier at night I use layers of defence. We run one anti-virus product on our MailSweeper gateway servers and a product from a different vendor on all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=21&subd=antdrewery&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Due to the critical nature of our email usage a major virus outbreak on our Exchange servers would probably cost me my job. So to help me sleep easier at night I use layers of defence. We run one anti-virus product on our MailSweeper gateway servers and a product from a different vendor on all of our internal Exchange servers. The concept of using different products is if one vendor doesn&#8217;t have a definition available to detect a certain virus the other vendor might. This layered approach gives us a fighting chance if a virus gets past MailSweeper or hits us from the inside via a webmail service.</p>
<p>As additional precaution we set the automatic definition updates to be as frequent as possible and also block any executable attachments (internal &amp; external).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/antdrewery.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/antdrewery.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=21&subd=antdrewery&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2005/11/23/layers-of-defence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
		<item>
		<title>Increase in virus traffic</title>
		<link>http://blog.drewery.net/2005/11/23/increase-in-virus-traffic/</link>
		<comments>http://blog.drewery.net/2005/11/23/increase-in-virus-traffic/#comments</comments>
		<pubDate>Wed, 23 Nov 2005 12:00:54 +0000</pubDate>
		<dc:creator>Anthony Drewery</dc:creator>
				<category><![CDATA[Anti-Virus]]></category>
		<category><![CDATA[Mailsweeper]]></category>

		<guid isPermaLink="false">http://www.drewery.net/blog/?p=20</guid>
		<description><![CDATA[We saw a sharp increase in the amount of viruses caught by our MailSweeper servers yesterday, double the usual volume. Here are the top 10 viruses that we&#8217;ve caught so far this month:
1 &#8211; W32/NetSky.P@mm
2 &#8211; Email-Worm.Win32.NetSky.q
3 &#8211; Exploit.HTML.Iframe.FileDownload
4 &#8211; Email-Worm.Win32.Sober.y
5 &#8211; HTML/IFrame@expl(exact)
6 &#8211; Net-Worm.Win32.Mytob.cg
7 &#8211; Net-Worm.Win32.Mytob.c
8 &#8211; Trojan-Spy.HTML.Bayfraud.hn
9 &#8211; Email-Worm.Win32.NetSky.r
10 &#8211; Net-Worm.Win32.Mytob.ab
   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=20&subd=antdrewery&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>We saw a sharp increase in the amount of viruses caught by our MailSweeper servers yesterday, double the usual volume. Here are the top 10 viruses that we&#8217;ve caught so far this month:</p>
<p>1 &#8211; W32/NetSky.P@mm<br />
2 &#8211; Email-Worm.Win32.NetSky.q<br />
3 &#8211; Exploit.HTML.Iframe.FileDownload<br />
4 &#8211; Email-Worm.Win32.Sober.y<br />
5 &#8211; HTML/IFrame@expl(exact)<br />
6 &#8211; Net-Worm.Win32.Mytob.cg<br />
7 &#8211; Net-Worm.Win32.Mytob.c<br />
8 &#8211; Trojan-Spy.HTML.Bayfraud.hn<br />
9 &#8211; Email-Worm.Win32.NetSky.r<br />
10 &#8211; Net-Worm.Win32.Mytob.ab</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/antdrewery.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/antdrewery.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antdrewery.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antdrewery.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antdrewery.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antdrewery.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antdrewery.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antdrewery.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antdrewery.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antdrewery.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antdrewery.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antdrewery.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.drewery.net&blog=6502410&post=20&subd=antdrewery&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.drewery.net/2005/11/23/increase-in-virus-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ac112d149b667282aee5e6cc74ecf5a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ant</media:title>
		</media:content>
	</item>
	</channel>
</rss>