<?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/"
	>

<channel>
	<title>D&#039;Arcy Norman dot net &#187; spam</title>
	<atom:link href="http://www.darcynorman.net/tag/spam/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darcynorman.net</link>
	<description>apparently much happier in person</description>
	<lastBuildDate>Fri, 20 Nov 2009 03:52:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Stopping Spamblog Registration in WordPress MultiUser</title>
		<link>http://www.darcynorman.net/2009/05/20/stopping-spamblog-registration-in-wordpress-multiuser/</link>
		<comments>http://www.darcynorman.net/2009/05/20/stopping-spamblog-registration-in-wordpress-multiuser/#comments</comments>
		<pubDate>Wed, 20 May 2009 18:57:57 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=3127</guid>
		<description><![CDATA[I&#8217;ve been running a copy of WordPress MultiUser for over a year now. Comment spam hasn&#8217;t been much of a problem, thanks to Akismet, but if I leave site registration open (so students and faculty can create new accounts and blogs), the evil spammers find it and start sending their bots en masse.
I tried a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/dnorman/541512/" title="Comment Spammers Burn In Hell... by D'Arcy Norman, on Flickr"><img style="float: right; margin: 0 0 10px 10px;" src="http://www.darcynorman.net/wp-content/uploads/2009/05/commentspammers.jpg" width="240" height="178" alt="Comment Spammers Burn In Hell..." /></a>I&#8217;ve been running a copy of WordPress MultiUser for over a year now. Comment spam hasn&#8217;t been much of a problem, thanks to Akismet, but if I leave site registration open (so students and faculty can create new accounts and blogs), the evil spammers find it and start sending their bots en masse.</p>
<p>I tried a few plugins, with varying levels of success. There&#8217;s an interesting one that attempts to <a href="http://wpmudev.org/project/Limit-Country-Signups">limit registrations to a specific country</a>, but it falsely reported some valid users as not being in Canada. Captchas work, but also block some valid users (and the signup captcha plugin I&#8217;d been using is possibly abandoned).</p>
<p>So, I did some quick googling, and came across the page on the <a href="http://codex.wordpress.org/Combating_Comment_Spam/Denying_Access#Deny_Access_to_No_Referrer_Requests">WordPress Codex about using .htaccess files to stop comment spam</a>. I made some modifications to the technique, and am now running it on UCalgaryBlogs.ca with apparent success. The apache logs show the bot attacks are still in full force, but not a single one has gotten through in order to register. And valid users have been able to get through. That&#8217;s pretty promising.</p>
<p><span id="more-3127"></span></p>
<p>Here&#8217;s the technique &#8211; just drop a modified version of this into your <code>.htaccess</code> file for your WPMU server:</p>
<pre><code># BEGIN ANTISPAMBLOG REGISTRATION
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-signup\.php*
RewriteCond %{HTTP_REFERER} !.*ucalgaryblogs.ca.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://die-spammers.com/ [R=301,L]
# END ANTISPAMBLOG REGISTRATION</code></pre>
<p>I put that block above the WPSuperCache block in my <code>.htaccess</code> file.</p>
<p>Modify the part that says &#8220;<code>ucalgaryblogs.ca</code>&#8221; to be whatever your WPMU server is (you may need to do more if you run multiple domains&#8230;), and modify the <code>die-spammers.com</code> part to point to wherever you want to send suspected evil spammers. I <a href="http://ucalgaryblogs.ca/contact/spam-prevention/">send them here</a>.</p>
<p>What it does is detect any POST requests (submitting a form) for wp-signup.php, that haven&#8217;t been sent from a web page on the WPMU site or have an empty user agent string (identifying the software making the request), and sends them to a page that apologizes for any false positives (and provides a contact to get around it for valid users that somehow got sent there) and scolds evil spammers for being evil spammers.</p>
<p>The beauty of it is that it doesn&#8217;t require anything from WordPress. No plugins. No mu-plugins. No hacking core files. Nothing. Apache steps in and kicks spammers out before they get in at all.</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=3127" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2009/05/20/stopping-spamblog-registration-in-wordpress-multiuser/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Trying WP-SpamFree</title>
		<link>http://www.darcynorman.net/2009/04/27/trying-wp-spamfree/</link>
		<comments>http://www.darcynorman.net/2009/04/27/trying-wp-spamfree/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 03:27:11 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-spamfree]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=3090</guid>
		<description><![CDATA[Thanks to a tip from David Esrati (who I&#8217;m not going to link to from this post because I&#8217;m taunting spammers and don&#8217;t want to inflict collateral damage on him), I&#8217;m testing out WP-SpamFree which is a really interesting antispam plugin for WordPress. I&#8217;ve used Akismet and Mollom before, and I&#8217;ve always been uncomfortable with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.darcynorman.net/wp-content/uploads/2009/04/end-blog-spam-button-01-black.jpg"><img src="http://www.darcynorman.net/wp-content/uploads/2009/04/end-blog-spam-button-01-black.jpg" alt="end-blog-spam-button-01-black" title="end-blog-spam-button-01-black" width="140" height="66" class="alignright size-full wp-image-3089" /></a>Thanks to a tip from David Esrati (who I&#8217;m not going to link to from this post because I&#8217;m taunting spammers and don&#8217;t want to inflict collateral damage on him), I&#8217;m testing out <a href="http://www.hybrid6.com/webgeek/plugins/wp-spamfree">WP-SpamFree</a> which is a really interesting antispam plugin for WordPress. I&#8217;ve used Akismet and Mollom before, and I&#8217;ve always been uncomfortable with externally hosted antispam systems. For some reason, I&#8217;m just not completely comfortable with relying on another server for this. I&#8217;d used Spam Karma 2 with great success, but since that went defunct I abandoned it as well.</p>
<p>Now, WP-SpamFree seems to offer an intelligent antispam system without relying on external servers or blacklists. I&#8217;m giving it a shot. So far, it&#8217;s been pretty successful.</p>
<p>Let&#8217;s see how well it does. Bring it.</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=3090" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2009/04/27/trying-wp-spamfree/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>on battling spam</title>
		<link>http://www.darcynorman.net/2009/01/21/on-battling-spam/</link>
		<comments>http://www.darcynorman.net/2009/01/21/on-battling-spam/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 18:32:29 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2721</guid>
		<description><![CDATA[The evil spammers have websites listing blogs that are ripe targets for their filthy spam, so it&#8217;s only fair that we also share ways to successfully beat them back into submission. I&#8217;ve been using Akismet pretty much exclusively on my blog since switching back to WordPress. It&#8217;s been pretty good, but sometimes goes into &#8220;large-bore [...]]]></description>
			<content:encoded><![CDATA[<p>The evil spammers have <a rel="nofollow" href="http://www.raznoblog.com/seo/2009/01/12/100-dofollow-blogs/">websites listing blogs</a> that are ripe targets for their filthy spam, so it&#8217;s only fair that we also share ways to successfully beat them back into submission. I&#8217;ve been using <a href="http://akismet.com">Akismet</a> pretty much exclusively on my blog since switching back to WordPress. It&#8217;s been pretty good, but sometimes goes into &#8220;large-bore sieve mode&#8221; and lets in gobs of nastiness. I&#8217;d tried <a href="http://mollom.com/">Mollom</a>, and while it&#8217;s interesting, it didn&#8217;t have much luck against the particular flavours of spiced ham that get thrown at my blog.</p>
<p>But, I&#8217;ve found the combination of <a href="http://akismet.com">Akismet</a> and <a href="http://tantannoodles.com/toolkit/spam-filter/">TanTan&#8217;s Simple Spam Filter plugin</a> to be extremely effective. Here&#8217;s my Akismet spam history graph. See if you can tell when I activated Simple Spam Filter&#8230;</p>
<p><a href="http://www.darcynorman.net/wp-content/uploads/2009/01/akismet_history_jan2009.png"><img src="http://www.darcynorman.net/wp-content/uploads/2009/01/akismet_history_jan2009-700x152.png" alt="akismet_history_jan2009" title="akismet_history_jan2009" width="700" height="152" class="aligncenter size-large wp-image-2722" /></a></p>
<p>November 13, 2008.</p>
<p>The graph doesn&#8217;t show spam that got published, only spam that Akismet had to nuke. The number of spamments that were successful is quite minimal.</p>
<p>With the two working together, the amount of spam that actually gets through to be (temporarily) published on my blog is almost zero. Maybe one or two per day (sometimes slightly higher, sometimes none at all).</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2721" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2009/01/21/on-battling-spam/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>UCalgaryBlogs.ca now protected by Akismet</title>
		<link>http://www.darcynorman.net/2008/11/03/ucalgaryblogsca-now-protected-by-akismet/</link>
		<comments>http://www.darcynorman.net/2008/11/03/ucalgaryblogsca-now-protected-by-akismet/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 18:31:24 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[ucalgaryblogs.ca]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2500</guid>
		<description><![CDATA[I got word back from Akismet that using it on UCalgaryBlogs.ca to protect all of the blogs hosted there falls under the free license, despite the wording on their website that suggests it&#8217;s an enterprise use. This means I&#8217;m now able to protect all blogs on the service with Akismet, without requiring a Captcha challenge.
The [...]]]></description>
			<content:encoded><![CDATA[<p>I got word back from <a href="http://akismet.com">Akismet</a> that using it on UCalgaryBlogs.ca to protect all of the blogs hosted there falls under the free license, despite the wording on their website that suggests it&#8217;s an enterprise use. This means I&#8217;m <a href="http://ucalgaryblogs.ca/2008/11/03/new-antispam-software/">now able to protect all blogs on the service with Akismet,</a> without requiring a Captcha challenge.</p>
<p>The current version of the <a href="http://akismet.com/download/">Akismet plugin for WordPress</a> installs just fine in the mu-plugins directory, meaning each blog automatically gets protected, without any configuration or setup. The Akismet key can be hardcoded into the plugin file, and when that is done, all configuration interface magically disappears from the wp-admin interface. Easy peasy.</p>
<p>All that was required by Akismet was that I provide a link from each blog to Akismet.com to give credit for the spam protection. I wrote up a <a href="http://www.darcynorman.net/wordpress/akismet-credit-inserter/">VERY simple mu-plugin</a> to automatically insert the text and link in the footer of each blog on UCalgaryBlogs.ca.</p>
<p>I&#8217;m curious to see how well Akismet functions on some of the topics of conversation &#8211; some post colonial courses commonly use language that trips up word filters pretty readily&#8230;</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2500" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/11/03/ucalgaryblogsca-now-protected-by-akismet/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>akismet for ucalgaryblogs.ca</title>
		<link>http://www.darcynorman.net/2008/11/02/akismet-for-ucalgaryblogsca/</link>
		<comments>http://www.darcynorman.net/2008/11/02/akismet-for-ucalgaryblogsca/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 15:34:29 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[aside]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[ucalgaryblogs.ca]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2491</guid>
		<description><![CDATA[I just got confirmation from Akismet that I can use the antispam service for free on UCalgaryBlogs.ca &#8211; early next week I&#8217;ll figure out how to mu-plugin ify it, and hardcode the keys and links so everyone&#8217;s covered automatically by Akismet. Sweet.
 ]]></description>
			<content:encoded><![CDATA[<p>I just got confirmation from Akismet that I can use the antispam service for free on UCalgaryBlogs.ca &#8211; early next week I&#8217;ll figure out how to mu-plugin ify it, and hardcode the keys and links so everyone&#8217;s covered automatically by Akismet. Sweet.</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2491" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/11/02/akismet-for-ucalgaryblogsca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>blogging has officially jumped the shark</title>
		<link>http://www.darcynorman.net/2008/10/29/blogging-has-officially-jumped-the-shark/</link>
		<comments>http://www.darcynorman.net/2008/10/29/blogging-has-officially-jumped-the-shark/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 14:26:10 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[awards]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[weblogs]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2472</guid>
		<description><![CDATA[I was just invited to enter an entirely reputable &#8220;blog awards&#8221; contest, for the low, low entry fee of only $195 &#8211; but ACT NOW! The entry fee goes up to $275 in January!

I can&#8217;t wait to be invited to attend the Nigerian Dead Relatives Blog Directory Awards&#8230;
 ]]></description>
			<content:encoded><![CDATA[<p>I was just invited to enter an entirely reputable &#8220;blog awards&#8221; contest, for the low, low entry fee of only $195 &#8211; but ACT NOW! The entry fee goes up to $275 in January!</p>
<p><a href="http://www.darcynorman.net/wp-content/uploads/2008/10/blogawards.png"><img class="alignnone size-full wp-image-2473" title="blogawards" src="http://www.darcynorman.net/wp-content/uploads/2008/10/blogawards.png" alt="" width="500" height="463" /></a></p>
<p>I can&#8217;t wait to be invited to attend the Nigerian Dead Relatives Blog Directory Awards&#8230;</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2472" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/10/29/blogging-has-officially-jumped-the-shark/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>overzealous antispam and campus blogging</title>
		<link>http://www.darcynorman.net/2008/10/26/overzealous-antispam-and-campus-blogging/</link>
		<comments>http://www.darcynorman.net/2008/10/26/overzealous-antispam-and-campus-blogging/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 17:28:06 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[ucalgaryblogs.ca]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2449</guid>
		<description><![CDATA[I just had to uninstall the TanTanNoodles Simple Spam Filter from UCalgaryBlogs.ca &#8211; it&#8217;s a simple plugin that uses a dictionary lookup to try to detect what it thinks are REALLY obvious spam comment attempts. But it was a bit overzealous. Instead of just modifying the dictionary to remove some valid words (which words are [...]]]></description>
			<content:encoded><![CDATA[<p>I just had to uninstall the <a href="http://tantannoodles.com/toolkit/spam-filter/">TanTanNoodles Simple Spam Filter</a> from UCalgaryBlogs.ca &#8211; it&#8217;s a simple plugin that uses a dictionary lookup to try to detect what it thinks are REALLY obvious spam comment attempts. But it was a bit overzealous. Instead of just modifying the dictionary to remove some valid words (which words are valid? who gets to decide that? in which contexts?), I decided to just delete the plugin outright so that comments can be posted without censorship.</p>
<p>The problem showed up when a student tried to write a comment on a blog post, and used the word &#8220;rape&#8221; in the text of the comment. Simple Spam Filter threw a flag on the play, and the comment evaporated. Not cool. The student is now suspicious of the blog service, and is wondering if we&#8217;re censoring or filtering their conversations. Totally the WRONG feeling for a productive and engaging blog community. I&#8217;ve deleted the plugin, and hopefully assured the student that there was no intention of censoring their conversation.</p>
<p>Fun with antispam. Thanks again, Google, for making this such a wonderful problem to have to keep dealing with. It&#8217;s so thoroughly rewarding, having to battle spammers and work to make sure valid content gets around the filters that have to be constructed to prevent spammers from gaming Googlejuice.</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2449" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/10/26/overzealous-antispam-and-campus-blogging/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>spam-o-rama</title>
		<link>http://www.darcynorman.net/2008/10/20/spam-o-rama/</link>
		<comments>http://www.darcynorman.net/2008/10/20/spam-o-rama/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 04:58:43 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2384</guid>
		<description><![CDATA[I&#8217;d missed the news, but the latest version of the Akismet plugin for WordPress includes some tasty stats. As with all things statistical, there&#8217;s a few ways to read the numbers, and there are some anomalies (ferinstance, it claims I had a few days of over 1000 ham i.e., valid comments per day and that&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d missed the news, but the latest version of the Akismet plugin for WordPress includes some tasty stats. As with all things statistical, there&#8217;s a few ways to read the numbers, and there are some anomalies (ferinstance, it claims I had a few days of over 1000 ham i.e., valid comments per day and that&#8217;s just plain wrong) but the spam stats feel roughly right. They&#8217;re not dramatically different from what I was seeing under Mollom, except nobody gets inflicted with Captcha using Akismet.</p>
<div id="attachment_2385" class="wp-caption aligncenter" style="width: 650px"><a href="http://www.darcynorman.net/wp-content/uploads/2008/10/akismet_history_graph.png"><img src="http://www.darcynorman.net/wp-content/uploads/2008/10/akismet_history_graph-640x273.png" alt="Akismet history graph" title="akismet_history_graph" width="640" height="273" class="size-medium wp-image-2385" /></a><p class="wp-caption-text">Akismet history graph</p></div>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2384" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/10/20/spam-o-rama/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>trying the latest wp-mollom</title>
		<link>http://www.darcynorman.net/2008/08/26/trying-the-latest-wp-mollom/</link>
		<comments>http://www.darcynorman.net/2008/08/26/trying-the-latest-wp-mollom/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 18:34:41 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[mollom]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2202</guid>
		<description><![CDATA[I just upgraded to wp-mollom 0.6.0 and it has a bunch of additions and fixes. If anyone has problems with it, please let me know asap.
 ]]></description>
			<content:encoded><![CDATA[<p>I just upgraded to <a href="http://wordpress.org/extend/plugins/wp-mollom/">wp-mollom 0.6.0</a> and it has a bunch of additions and fixes. If anyone has problems with it, <a href="mailto:contact@darcynorman.net">please let me know asap</a>.</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2202" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/08/26/trying-the-latest-wp-mollom/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>mollom just got punted</title>
		<link>http://www.darcynorman.net/2008/08/19/mollom-just-got-punted/</link>
		<comments>http://www.darcynorman.net/2008/08/19/mollom-just-got-punted/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 18:04:48 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[mollom]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.darcynorman.net/?p=2187</guid>
		<description><![CDATA[Mollom&#8217;s been doing a simply outstanding job of blocking spam lately, after the warm-up period. Unfortunately, it appears to be doing a bang-up job of blocking legitimate, breathing humans who are trying (and failing) to comment. I&#8217;m moving antispam back to Akismet for awhile, and am hoping it&#8217;s just a growing pain for Mollom &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mollom.com">Mollom</a>&#8217;s been doing a simply outstanding job of blocking spam lately, after the warm-up period. Unfortunately, it appears to be doing a bang-up job of blocking legitimate, breathing humans who are trying (and failing) to comment. I&#8217;m moving antispam back to Akismet for awhile, and am hoping it&#8217;s just a growing pain for Mollom &#8211; I really like the system and design, but can&#8217;t have valid people frustrated when they try to post comments. For now, it&#8217;s back to moderating comments through Akismet&#8230;</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=2187" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2008/08/19/mollom-just-got-punted/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
