<?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 for Matt Rude</title>
	<atom:link href="http://mattrude.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattrude.com</link>
	<description>Matt Rude’s Personal Website</description>
	<lastBuildDate>Wed, 16 May 2012 12:18:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-beta4-20841</generator>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Matt Rude</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-3930</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Wed, 16 May 2012 12:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-3930</guid>
		<description>Greg,
You should be able to grab &lt;a href=&quot;https://github.com/mattrude/top-posts-pages/blob/master/top_posts_n_pages.php#L57-86&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;lines 57 to 86&lt;/a&gt; of the plugin and drop them into your theme.  You will need to add the variables back in, or at least remove the &quot;if&quot; statements in the center of the code block.

I have never tested this setup so there may be odd output.

Let me know how it goes.

-Matt</description>
		<content:encoded><![CDATA[<p>Greg,<br />
You should be able to grab <a href="https://github.com/mattrude/top-posts-pages/blob/master/top_posts_n_pages.php#L57-86" target="_blank" rel="nofollow">lines 57 to 86</a> of the plugin and drop them into your theme.  You will need to add the variables back in, or at least remove the &#8220;if&#8221; statements in the center of the code block.</p>
<p>I have never tested this setup so there may be odd output.</p>
<p>Let me know how it goes.</p>
<p>-Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Greg Buchanan</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-3901</link>
		<dc:creator>Greg Buchanan</dc:creator>
		<pubDate>Sat, 12 May 2012 22:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-3901</guid>
		<description>What is the PHP code to embed this into my static homepage file?</description>
		<content:encoded><![CDATA[<p>What is the PHP code to embed this into my static homepage file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Dunc</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-3863</link>
		<dc:creator>Dunc</dc:creator>
		<pubDate>Wed, 09 May 2012 06:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-3863</guid>
		<description>Here&#039;s what I used to insert a random large from all categories.

&lt;code&gt;// Generate random image
function random_image() {

    $riw_cat_id = &quot;-1&quot;;
    global $wpdb;

    $args = array(
        &#039;post_type&#039; =&gt; &#039;attachment&#039;,
        &#039;post_mime_type&#039; =&gt; &#039;image&#039;,
        &#039;numberposts&#039; =&gt; -1,
        &#039;post_status&#039; =&gt; null,
        &#039;post_parent&#039; =&gt; $post-&gt;ID,
        &#039;orderby&#039; =&gt; &#039;rand&#039;
    );

    $attachments = get_posts($args);
    $noimages = count($attachments);
    if ($attachments) {
        foreach ($attachments as $attachment) {
            if ( $riw_cat_id !== &quot;-1&quot; ) {
                $albumid = $attachment-&gt;post_parent;
            } else {
                $albumid = $attachment-&gt;post_parent;
                foreach((get_the_category($albumid)) as $category) {
                    $riw_cat_id = $category-&gt;cat_ID;
                }
            }
    
            if (in_category($riw_cat_id, $albumid)) {
                $imgid = $attachment-&gt;ID;
        
                // construct the image
				echo &quot;&quot;;
                echo wp_get_attachment_image($imgid, &#039;large&#039;);
				echo &quot;&quot;;
                break;
            }
        }
    }
}
random_image();&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Here&#8217;s what I used to insert a random large from all categories.</p>
<p><code>// Generate random image<br />
function random_image() {</p>
<p>    $riw_cat_id = "-1";<br />
    global $wpdb;</p>
<p>    $args = array(<br />
        'post_type' =&gt; 'attachment',<br />
        'post_mime_type' =&gt; 'image',<br />
        'numberposts' =&gt; -1,<br />
        'post_status' =&gt; null,<br />
        'post_parent' =&gt; $post-&gt;ID,<br />
        'orderby' =&gt; 'rand'<br />
    );</p>
<p>    $attachments = get_posts($args);<br />
    $noimages = count($attachments);<br />
    if ($attachments) {<br />
        foreach ($attachments as $attachment) {<br />
            if ( $riw_cat_id !== "-1" ) {<br />
                $albumid = $attachment-&gt;post_parent;<br />
            } else {<br />
                $albumid = $attachment-&gt;post_parent;<br />
                foreach((get_the_category($albumid)) as $category) {<br />
                    $riw_cat_id = $category-&gt;cat_ID;<br />
                }<br />
            }</p>
<p>            if (in_category($riw_cat_id, $albumid)) {<br />
                $imgid = $attachment-&gt;ID;</p>
<p>                // construct the image<br />
				echo "";<br />
                echo wp_get_attachment_image($imgid, 'large');<br />
				echo "";<br />
                break;<br />
            }<br />
        }<br />
    }<br />
}<br />
random_image();</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Dunc</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-3862</link>
		<dc:creator>Dunc</dc:creator>
		<pubDate>Wed, 09 May 2012 05:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-3862</guid>
		<description>Hi Mate, don&#039;t suppose there is any chance of getting a shortcode for this?  It would be awesome if you could drop this into pages, for example a shortcode for the image with options for image size (small, med, large as per media manager).  Some sites would like this to be a main feature on a page rather than just a small part of the sidebar.

It would be great if you could specify the image size in the widget options.

Great plugin! :)</description>
		<content:encoded><![CDATA[<p>Hi Mate, don&#8217;t suppose there is any chance of getting a shortcode for this?  It would be awesome if you could drop this into pages, for example a shortcode for the image with options for image size (small, med, large as per media manager).  Some sites would like this to be a main feature on a page rather than just a small part of the sidebar.</p>
<p>It would be great if you could specify the image size in the widget options.</p>
<p>Great plugin! <img src='http://mattrude.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by abdulrahman</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-3621</link>
		<dc:creator>abdulrahman</dc:creator>
		<pubDate>Sat, 21 Apr 2012 17:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-3621</guid>
		<description>the_post_thumbnail(&#039;IMG310265&#039;, array(&#039;title&#039; =&gt; &quot;&quot;));

the code is not showing in the comment</description>
		<content:encoded><![CDATA[<p>the_post_thumbnail(&#8216;IMG310265&#8242;, array(&#8216;title&#8217; => &#8220;&#8221;));</p>
<p>the code is not showing in the comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by abdulrahman</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-3620</link>
		<dc:creator>abdulrahman</dc:creator>
		<pubDate>Sat, 21 Apr 2012 17:19:22 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-3620</guid>
		<description>I had a cod that woth wordpress give me a picture and I want to show that size...

which is 310 x 265 px

there is a function which I put it give me a thumbnail with this size.

 &quot;&quot;)); ?&gt;</description>
		<content:encoded><![CDATA[<p>I had a cod that woth wordpress give me a picture and I want to show that size&#8230;</p>
<p>which is 310 x 265 px</p>
<p>there is a function which I put it give me a thumbnail with this size.</p>
<p> &#8220;&#8221;)); ?></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Anthony</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-3500</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Fri, 13 Apr 2012 15:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-3500</guid>
		<description>I did, but it still doesn&#039;t work - Charles mentioned that he had to put it in two places in the config file so I was wondering what the other places was.

I had to create the /plugins directory as there wasn&#039;t one in the root of roundcube, then I put in your fail2ban in it&#039;s own fail2ban directory in plugins - /var/www/html/roundcube/plugins/fail2ban/fail2ban.php I then added $rcmail_config[&#039;plugins&#039;] = array(&#039;fail2ban&#039;); to main.inc.php

I did notice that there was no plugins directory defined in main.inc.php like the log directory $rcmail_config[&#039;log_dir&#039;] = &#039;logs/&#039;;
I tried $rcmail_config[&#039;plugin_dir&#039;] = &#039;plugins/&#039;; but it didn&#039;t seem to do anything

I&#039;m puzzled why there wasn&#039;t a plugins directory to begin with

Of note - I&#039;m not using fail2ban/iptables service, I&#039;m using apf and installing Brute Force Monitor since I can&#039;t find a way to use fail2ban with apf (seems to only work with iptables)

What I do want to use your plugin for is to just get the IP logging in the log file for roundcube and then maybe try to get BFM to monitor it</description>
		<content:encoded><![CDATA[<p>I did, but it still doesn&#8217;t work &#8211; Charles mentioned that he had to put it in two places in the config file so I was wondering what the other places was.</p>
<p>I had to create the /plugins directory as there wasn&#8217;t one in the root of roundcube, then I put in your fail2ban in it&#8217;s own fail2ban directory in plugins &#8211; /var/www/html/roundcube/plugins/fail2ban/fail2ban.php I then added $rcmail_config['plugins'] = array(&#8216;fail2ban&#8217;); to main.inc.php</p>
<p>I did notice that there was no plugins directory defined in main.inc.php like the log directory $rcmail_config['log_dir'] = &#8216;logs/&#8217;;<br />
I tried $rcmail_config['plugin_dir'] = &#8216;plugins/&#8217;; but it didn&#8217;t seem to do anything</p>
<p>I&#8217;m puzzled why there wasn&#8217;t a plugins directory to begin with</p>
<p>Of note &#8211; I&#8217;m not using fail2ban/iptables service, I&#8217;m using apf and installing Brute Force Monitor since I can&#8217;t find a way to use fail2ban with apf (seems to only work with iptables)</p>
<p>What I do want to use your plugin for is to just get the IP logging in the log file for roundcube and then maybe try to get BFM to monitor it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Matt Rude</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-3493</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Fri, 13 Apr 2012 01:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-3493</guid>
		<description>Yes, you need to add the &quot;fail2ban&quot; to the $rcmail_config[&#039;plugins&#039; option in your main.inc.php file, see: http://trac.roundcube.net/browser/trunk/roundcubemail/config/main.inc.php.dist#L364</description>
		<content:encoded><![CDATA[<p>Yes, you need to add the &#8220;fail2ban&#8221; to the $rcmail_config[&#8216;plugins&#8217; option in your main.inc.php file, see: <a href="http://trac.roundcube.net/browser/trunk/roundcubemail/config/main.inc.php.dist#L364" rel="nofollow">http://trac.roundcube.net/browser/trunk/roundcubemail/config/main.inc.php.dist#L364</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Anthony</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-3492</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Thu, 12 Apr 2012 23:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-3492</guid>
		<description>I can&#039;t get this to work either, where was the 2nd place you specified it?

I had to create a plugins directory because there was not one - do I have to specify the location of that in the main.inc.php file?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get this to work either, where was the 2nd place you specified it?</p>
<p>I had to create a plugins directory because there was not one &#8211; do I have to specify the location of that in the main.inc.php file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Matt Rude</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-3397</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Wed, 04 Apr 2012 01:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-3397</guid>
		<description>No, not at this time.</description>
		<content:encoded><![CDATA[<p>No, not at this time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Amber</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-3033</link>
		<dc:creator>Amber</dc:creator>
		<pubDate>Sat, 17 Mar 2012 13:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-3033</guid>
		<description>Love the way this widget works.  Is there any way to add thumbnails to the post listing?</description>
		<content:encoded><![CDATA[<p>Love the way this widget works.  Is there any way to add thumbnails to the post listing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Front Ended by Bill</title>
		<link>http://mattrude.com/2012/01/front-ended/#comment-2871</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Sun, 11 Mar 2012 13:07:18 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?p=5551#comment-2871</guid>
		<description>That really sucks some one hit your car and ran away. That happened to me a while back. Anyhow, just a word of advise you should really blur out your license plate in the photo. I am sure the dude you called the cops on is pissed and may try to find you based off of your license plate.</description>
		<content:encoded><![CDATA[<p>That really sucks some one hit your car and ran away. That happened to me a while back. Anyhow, just a word of advise you should really blur out your license plate in the photo. I am sure the dude you called the cops on is pissed and may try to find you based off of your license plate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Charles</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-2579</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Tue, 21 Feb 2012 11:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-2579</guid>
		<description>it is working... in main.inc.php there are 2 places to specify the plugins... I need to make both to &#039;fail2ban&#039; before it will load.

Thanks!</description>
		<content:encoded><![CDATA[<p>it is working&#8230; in main.inc.php there are 2 places to specify the plugins&#8230; I need to make both to &#8216;fail2ban&#8217; before it will load.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Charles</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-2578</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Tue, 21 Feb 2012 11:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-2578</guid>
		<description>No luck making it work. Followed every single step. Check and re-checked.

It seems that the plugin is not loaded.

Please advise how to check...

Thanks!</description>
		<content:encoded><![CDATA[<p>No luck making it work. Followed every single step. Check and re-checked.</p>
<p>It seems that the plugin is not loaded.</p>
<p>Please advise how to check&#8230;</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Max L</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-2347</link>
		<dc:creator>Max L</dc:creator>
		<pubDate>Fri, 20 Jan 2012 14:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-2347</guid>
		<description>Thanks Matt, I&#039;ll wait for the next V to roll out. And thanks for being a WP developer, it&#039;s a great community.</description>
		<content:encoded><![CDATA[<p>Thanks Matt, I&#8217;ll wait for the next V to roll out. And thanks for being a WP developer, it&#8217;s a great community.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Matt Rude</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-2344</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Fri, 20 Jan 2012 13:40:06 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-2344</guid>
		<description>Not at this time, but the &lt;a href=&quot;http://mattrude.com/projects/top-posts-pages-widget/#comment-2230&quot; rel=&quot;nofollow&quot;&gt;your not the only one looking for this feature&lt;/a&gt;, so I don&#039;t think it&#039;s far off.  So the question now is, how to do it?  Currently I was thinking of just having a text box that will allow you to enter post ID&#039;s you wish to filter out from showing.</description>
		<content:encoded><![CDATA[<p>Not at this time, but the <a href="http://mattrude.com/projects/top-posts-pages-widget/#comment-2230" rel="nofollow">your not the only one looking for this feature</a>, so I don&#8217;t think it&#8217;s far off.  So the question now is, how to do it?  Currently I was thinking of just having a text box that will allow you to enter post ID&#8217;s you wish to filter out from showing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Max L</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-2339</link>
		<dc:creator>Max L</dc:creator>
		<pubDate>Thu, 19 Jan 2012 22:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-2339</guid>
		<description>Excellent widget by the way!</description>
		<content:encoded><![CDATA[<p>Excellent widget by the way!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Max L</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-2338</link>
		<dc:creator>Max L</dc:creator>
		<pubDate>Thu, 19 Jan 2012 22:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-2338</guid>
		<description>Is it possible to filter pages? The home page we use on the site where I installed your widget is not the WP home page. I am wondering if there is a way I could keep it out of the list.

Thanks</description>
		<content:encoded><![CDATA[<p>Is it possible to filter pages? The home page we use on the site where I installed your widget is not the WP home page. I am wondering if there is a way I could keep it out of the list.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by LuCaSh</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-2315</link>
		<dc:creator>LuCaSh</dc:creator>
		<pubDate>Sun, 15 Jan 2012 15:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-2315</guid>
		<description>It&#039;s useful code :-) but it&#039;s not what I want. I would like count images of category which is selected in widget.</description>
		<content:encoded><![CDATA[<p>It&#8217;s useful code <img src='http://mattrude.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  but it&#8217;s not what I want. I would like count images of category which is selected in widget.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Matt Rude</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-2299</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Fri, 13 Jan 2012 03:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-2299</guid>
		<description>The count you see on this site is a function of the theme, not this plugin.  But it&#039;s not to much to add to your theme if you would like to.

The &lt;a href=&quot;https://github.com/mattrude/wp-theme-milly/blob/master/functions/gallery-index.php#L27-32&quot; rel=&quot;nofollow&quot;&gt;code im using&lt;/a&gt; is part of the gallery index, but you may put it anywhere within the post loop.

[sourcecode lang=&quot;php&quot;]
        &lt;?php $num_gallery_posts = $wpdb-&gt;get_var( &quot;SELECT COUNT(*) FROM $wpdb-&gt;posts WHERE post_parent = &#039;$post-&gt;ID&#039; AND post_type = &#039;attachment&#039;&quot; );
        if ( $num_gallery_posts &gt; 1 ) {
          ?&gt;&lt;div id=&quot;gallerypost_sub_right-&lt;?php the_ID(); ?&gt;&quot; class=&quot;gallerypost_sub_right&quot;&gt;
            &lt;small&gt;This Album contains &lt;?php echo $num_gallery_posts; ?&gt; items.&lt;/small&gt;
          &lt;/div&gt;
        &lt;?php } ?&gt;
[/sourcecode]</description>
		<content:encoded><![CDATA[<p>The count you see on this site is a function of the theme, not this plugin.  But it&#8217;s not to much to add to your theme if you would like to.</p>
<p>The <a href="https://github.com/mattrude/wp-theme-milly/blob/master/functions/gallery-index.php#L27-32" rel="nofollow">code im using</a> is part of the gallery index, but you may put it anywhere within the post loop.</p>
<pre class="brush: php; title: ; notranslate">
        &lt;?php $num_gallery_posts = $wpdb-&gt;get_var( &quot;SELECT COUNT(*) FROM $wpdb-&gt;posts WHERE post_parent = '$post-&gt;ID' AND post_type = 'attachment'&quot; );
        if ( $num_gallery_posts &gt; 1 ) {
          ?&gt;&lt;div id=&quot;gallerypost_sub_right-&lt;?php the_ID(); ?&gt;&quot; class=&quot;gallerypost_sub_right&quot;&gt;
            &lt;small&gt;This Album contains &lt;?php echo $num_gallery_posts; ?&gt; items.&lt;/small&gt;
          &lt;/div&gt;
        &lt;?php } ?&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by LuCaSh</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-2296</link>
		<dc:creator>LuCaSh</dc:creator>
		<pubDate>Fri, 13 Jan 2012 01:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-2296</guid>
		<description>Hi, thanks for this plugin.
How to show total number of images from category? In var $noimages contains only total number of all images in media library ... :(</description>
		<content:encoded><![CDATA[<p>Hi, thanks for this plugin.<br />
How to show total number of images from category? In var $noimages contains only total number of all images in media library &#8230; <img src='http://mattrude.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Ross Calloway</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-2285</link>
		<dc:creator>Ross Calloway</dc:creator>
		<pubDate>Wed, 11 Jan 2012 05:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-2285</guid>
		<description>Guess what? With a matter of a few days the Top Posts were back to normal. That subject, the Mummers Parade, is a big thing on one day a year. New Years day. So it is that around the first of the year those posts get hammered. I was concerned that it would have a lasting effect on the widget&#039;s output but now I see it isn&#039;t much of an issue for me any more.</description>
		<content:encoded><![CDATA[<p>Guess what? With a matter of a few days the Top Posts were back to normal. That subject, the Mummers Parade, is a big thing on one day a year. New Years day. So it is that around the first of the year those posts get hammered. I was concerned that it would have a lasting effect on the widget&#8217;s output but now I see it isn&#8217;t much of an issue for me any more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Matt Rude</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-2243</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Fri, 06 Jan 2012 23:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-2243</guid>
		<description>I see what you mean.

Not with the current version, but i can look into maybe allowing you to enter a list of post ID&#039;s that wont show up on the front page.</description>
		<content:encoded><![CDATA[<p>I see what you mean.</p>
<p>Not with the current version, but i can look into maybe allowing you to enter a list of post ID&#8217;s that wont show up on the front page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top Posts &amp; Pages Widget by Ross Calloway</title>
		<link>http://mattrude.com/projects/top-posts-pages-widget/#comment-2230</link>
		<dc:creator>Ross Calloway</dc:creator>
		<pubDate>Wed, 04 Jan 2012 22:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=5457#comment-2230</guid>
		<description>On the Top Posts widget, is it possible to flag certain posts to NOT appear in the listing? 

Like maybe listing the id nbr or partial quote from the post&#039;s title? 

Like in my case, look how different my listing would be if I could exempt posts with &quot;Mummers&quot;  in the title.</description>
		<content:encoded><![CDATA[<p>On the Top Posts widget, is it possible to flag certain posts to NOT appear in the listing? </p>
<p>Like maybe listing the id nbr or partial quote from the post&#8217;s title? </p>
<p>Like in my case, look how different my listing would be if I could exempt posts with &#8220;Mummers&#8221;  in the title.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Kiro</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-2216</link>
		<dc:creator>Kiro</dc:creator>
		<pubDate>Sun, 01 Jan 2012 13:51:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-2216</guid>
		<description>Many thx for this. It works like a charm !!</description>
		<content:encoded><![CDATA[<p>Many thx for this. It works like a charm !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by David</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-2081</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sat, 17 Dec 2011 17:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-2081</guid>
		<description>This is an awesome plugin and very helpful.  I have a real estate and use this plugin to display different agents on property pages.  I would also like to add a contact me button under the random picture or next to it.  Can you give me some pointers on where to insert it or any ideas?  Thanks</description>
		<content:encoded><![CDATA[<p>This is an awesome plugin and very helpful.  I have a real estate and use this plugin to display different agents on property pages.  I would also like to add a contact me button under the random picture or next to it.  Can you give me some pointers on where to insert it or any ideas?  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thanksgiving, 2011 by Thanksgiving, 2011 &#124; The Rude&#039;s</title>
		<link>http://mattrude.com/2011/11/thanksgiving-2011/#comment-2023</link>
		<dc:creator>Thanksgiving, 2011 &#124; The Rude&#039;s</dc:creator>
		<pubDate>Mon, 12 Dec 2011 02:28:39 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?p=5385#comment-2023</guid>
		<description>[...] Cross Posted from mattrude.com. [...]</description>
		<content:encoded><![CDATA[<p>[...] Cross Posted from mattrude.com. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Mic</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-1414</link>
		<dc:creator>Mic</dc:creator>
		<pubDate>Thu, 03 Nov 2011 22:42:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-1414</guid>
		<description>Matt,

Would you submit these same patterns on &lt;a href=&quot;http://www.sshguard.net/support/attacks/submit/&quot; rel=&quot;nofollow&quot;&gt;http://www.sshguard.net/support/attacks/submit/&lt;/a&gt; ? We&#039;d be happy to implement them in SSHGuard.

cheers
mic</description>
		<content:encoded><![CDATA[<p>Matt,</p>
<p>Would you submit these same patterns on <a href="http://www.sshguard.net/support/attacks/submit/" rel="nofollow">http://www.sshguard.net/support/attacks/submit/</a> ? We&#8217;d be happy to implement them in SSHGuard.</p>
<p>cheers<br />
mic</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Julien</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-414</link>
		<dc:creator>Julien</dc:creator>
		<pubDate>Thu, 01 Sep 2011 16:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-414</guid>
		<description>Very nice and elegant way to solve the case where roundcube runs on the same server thanthe IMAP service. Previous courierauth would ban the IP of the server instead of banning the attacker.

Thanks!</description>
		<content:encoded><![CDATA[<p>Very nice and elegant way to solve the case where roundcube runs on the same server thanthe IMAP service. Previous courierauth would ban the IP of the server instead of banning the attacker.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wp-Gallery2 Image Block by Andärin</title>
		<link>http://mattrude.com/projects/wp-gallery2-image-block/#comment-192</link>
		<dc:creator>Andärin</dc:creator>
		<pubDate>Mon, 15 Aug 2011 17:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=387#comment-192</guid>
		<description>Hi Matt!

First I&#039;ve gotta say I love this plugin. I&#039;ve been using it for about 6 months now, and I like how, it a completely automated way, it encourages my blog readers to check out my gallery.

I updated to wordpress 3.2.1 yesterday, and I was wondering, does all of its code work fine in WP 3.2 and above? It seems to work alright so far, but I&#039;d appreciate you taking a look at it.</description>
		<content:encoded><![CDATA[<p>Hi Matt!</p>
<p>First I&#8217;ve gotta say I love this plugin. I&#8217;ve been using it for about 6 months now, and I like how, it a completely automated way, it encourages my blog readers to check out my gallery.</p>
<p>I updated to wordpress 3.2.1 yesterday, and I was wondering, does all of its code work fine in WP 3.2 and above? It seems to work alright so far, but I&#8217;d appreciate you taking a look at it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Summer at the Cabin by Matt&#8217;s summer at the cabin &#124; The Rude&#039;s</title>
		<link>http://mattrude.com/2011/08/summer-at-the-cabin/#comment-273</link>
		<dc:creator>Matt&#8217;s summer at the cabin &#124; The Rude&#039;s</dc:creator>
		<pubDate>Wed, 03 Aug 2011 02:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?p=4424#comment-273</guid>
		<description>[...] Cross posted from Matt&#8217;s site. [...] </description>
		<content:encoded><![CDATA[<p>[...] Cross posted from Matt&#8217;s site. [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The FDA should run the banks by Adrianna Collier</title>
		<link>http://mattrude.com/2009/09/the-fda-should-run-the-banks/#comment-196</link>
		<dc:creator>Adrianna Collier</dc:creator>
		<pubDate>Wed, 27 Jul 2011 05:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?p=1197#comment-196</guid>
		<description>a book mark to this web-site was provided by Christian Dillstrom -  the mobile and social media marketing specialist, so you must be doing a cool job.</description>
		<content:encoded><![CDATA[<p>a book mark to this web-site was provided by Christian Dillstrom &#8211;  the mobile and social media marketing specialist, so you must be doing a cool job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Steve</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-267</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 15 Jul 2011 16:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-267</guid>
		<description>Thanks so much for this great plugin! I had been using Gallery2 and its related plugin but I am moving my site towards embedding images into the posts. Not having a related random image generator was a sore disappointment until I found the Random Image Block. Thanks!!</description>
		<content:encoded><![CDATA[<p>Thanks so much for this great plugin! I had been using Gallery2 and its related plugin but I am moving my site towards embedding images into the posts. Not having a related random image generator was a sore disappointment until I found the Random Image Block. Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Vidar Normann</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-164</link>
		<dc:creator>Vidar Normann</dc:creator>
		<pubDate>Sat, 25 Jun 2011 08:00:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-164</guid>
		<description>Hi bill,

I&#039;m running Roundcube 0.5.3 on Debian Squeeze and these are the changes I made:

Change the jail-definition to look in logs/errors instead of logs/userlogins and change the regexp in the filter to the following:
.*Login failed for.*. from .

And like you said, there is no need for the plugin any longer, as Roundcube now logs failed logins by default.</description>
		<content:encoded><![CDATA[<p>Hi bill,</p>
<p>I&#8217;m running Roundcube 0.5.3 on Debian Squeeze and these are the changes I made:</p>
<p>Change the jail-definition to look in logs/errors instead of logs/userlogins and change the regexp in the filter to the following:<br />
.*Login failed for.*. from .</p>
<p>And like you said, there is no need for the plugin any longer, as Roundcube now logs failed logins by default.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by barron thomas</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-163</link>
		<dc:creator>barron thomas</dc:creator>
		<pubDate>Thu, 09 Jun 2011 04:50:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-163</guid>
		<description>Woah! I&#039;m really digging the template/theme of this site. It&#039;s simple, yet effective. A lot of times it&#039;s challenging to get that &quot;perfect balance&quot; between user friendliness and visual appearance. I must say you have done a fantastic job with this. Additionally, the blog loads very fast for me on Safari. Excellent Blog!</description>
		<content:encoded><![CDATA[<p>Woah! I&#8217;m really digging the template/theme of this site. It&#8217;s simple, yet effective. A lot of times it&#8217;s challenging to get that &#8220;perfect balance&#8221; between user friendliness and visual appearance. I must say you have done a fantastic job with this. Additionally, the blog loads very fast for me on Safari. Excellent Blog!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Matt Rude</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-266</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Sun, 05 Jun 2011 18:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-266</guid>
		<description>Blogs are all use WYSIWYG editors, checkout &lt;a href=&quot;http://wordpress.com&quot; rel=&quot;nofollow&quot;&gt;http://wordpress.com&lt;/a&gt; or &lt;a href=&quot;http://wordpress.org&quot; rel=&quot;nofollow&quot;&gt;http://wordpress.org&lt;/a&gt; for more information.</description>
		<content:encoded><![CDATA[<p>Blogs are all use WYSIWYG editors, checkout <a href="http://wordpress.com" rel="nofollow">http://wordpress.com</a> or <a href="http://wordpress.org" rel="nofollow">http://wordpress.org</a> for more information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Jasper Dziduch</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-265</link>
		<dc:creator>Jasper Dziduch</dc:creator>
		<pubDate>Sun, 22 May 2011 01:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-265</guid>
		<description>Hello this is kinda of off topic but I was wanting to know if blogs use WYSIWYG editors or if you have to manually code with HTML. I&#039;m starting a blog soon but have no coding know-how so I wanted to get guidance from someone with experience. Any help would be greatly appreciated!</description>
		<content:encoded><![CDATA[<p>Hello this is kinda of off topic but I was wanting to know if blogs use WYSIWYG editors or if you have to manually code with HTML. I&#8217;m starting a blog soon but have no coding know-how so I wanted to get guidance from someone with experience. Any help would be greatly appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Peter Kasbergen</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-264</link>
		<dc:creator>Peter Kasbergen</dc:creator>
		<pubDate>Thu, 24 Mar 2011 21:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-264</guid>
		<description>Oh no! Sorry about that last comment. I figured out what was going wrong. Thanks for the GREAT plugin!

Peter</description>
		<content:encoded><![CDATA[<p>Oh no! Sorry about that last comment. I figured out what was going wrong. Thanks for the GREAT plugin!</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Peter Kasbergen</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-263</link>
		<dc:creator>Peter Kasbergen</dc:creator>
		<pubDate>Thu, 24 Mar 2011 21:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-263</guid>
		<description>Hi Matt,

Thanks for a nice plugin. However, I am experiencing some troubles with it. On static pages, it displays the same photo every time the page is loaded. On blog pages, however, it works fine.

Am I doing something wrong?

Thanks in advance for any help!
Peter</description>
		<content:encoded><![CDATA[<p>Hi Matt,</p>
<p>Thanks for a nice plugin. However, I am experiencing some troubles with it. On static pages, it displays the same photo every time the page is loaded. On blog pages, however, it works fine.</p>
<p>Am I doing something wrong?</p>
<p>Thanks in advance for any help!<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by bill</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-162</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Wed, 23 Mar 2011 07:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-162</guid>
		<description>Previously when I was using 0.3.1 on Ubuntu 9.04, I was able to get fail2ban working with roundcube without this plugin (it was actually logging the correct IP address in the normal roundcube errors log)... as I stated right at the top of this page

Now I am using 0.5 on Ubuntu 10.04, the normal errors log still works for me (ie. It shows the correct IP address of the remote system)

But.. the syntax of the log file changed and I CBF getting my regex to work cos I am not good at it... so I installed this plugin and sure enough I am getting the userlogins error log with the same IP addresses (correct ones)

I have setup fail2ban as per instructions. I can use fail2ban-regex to test my filter and it works. It finds matches in the log file. The jail is setup correctly and starts without errors.

I tested from a remote location today and was never banned after many many attempts... obviously I have done something wrong, or something has changed


&lt;strong&gt;jail.conf&lt;/strong&gt;
&lt;pre&gt;[roundcube]
enabled  = true
port     = http,https
filter   = roundcube
logpath  = /usr/share/roundcube/logs/userlogins&lt;/pre&gt;

&lt;strong&gt;filter.d/roundcube.conf&lt;/strong&gt;
&lt;pre&gt;[Definition]
failregex = FAILED login for .*. from 
ignoreregex =&lt;/pre&gt;

Like I said I have tested the regex against the log file and it finds matches. Enough matches that it should have banned (my default setting is 5 attempts in 10 minutes)

All my other jails are tested and working... just this roundcube jail doesn&#039;t work at all


As a side note, here is the output of the log files compared:

&lt;strong&gt;logs/errors&lt;/strong&gt;
&lt;pre&gt;[23-Mar-2011 07:44:12 +0900]: IMAP Error: Login failed for bantest@ictnt.com from
203.10.224.93. LOGIN: Login failed. in /usr/share/roundcube/program/include/rcube_imap.php
on line 192 (POST /webmail/?_task=login&amp;_action=login)&lt;/pre&gt;

&lt;strong&gt;logs/userlogins&lt;/strong&gt;
&lt;pre&gt;[23-Mar-2011 07:44:12 +0900]: FAILED login for bantest from 203.10.224.93&lt;/pre&gt;

If I could get a regex that works on the standard &quot;errors&quot; file, would that work?

I have also noted that both &quot;errors&quot; and &quot;userlogins&quot; have the same owner:group and permissions
&lt;pre&gt;-rw-r--r-- www-data:www-data&lt;/pre&gt;

So I can&#039;t see why the jail isn&#039;t working please help! :)</description>
		<content:encoded><![CDATA[<p>Previously when I was using 0.3.1 on Ubuntu 9.04, I was able to get fail2ban working with roundcube without this plugin (it was actually logging the correct IP address in the normal roundcube errors log)&#8230; as I stated right at the top of this page</p>
<p>Now I am using 0.5 on Ubuntu 10.04, the normal errors log still works for me (ie. It shows the correct IP address of the remote system)</p>
<p>But.. the syntax of the log file changed and I CBF getting my regex to work cos I am not good at it&#8230; so I installed this plugin and sure enough I am getting the userlogins error log with the same IP addresses (correct ones)</p>
<p>I have setup fail2ban as per instructions. I can use fail2ban-regex to test my filter and it works. It finds matches in the log file. The jail is setup correctly and starts without errors.</p>
<p>I tested from a remote location today and was never banned after many many attempts&#8230; obviously I have done something wrong, or something has changed</p>
<p><strong>jail.conf</strong></p>
<pre>[roundcube]
enabled  = true
port     = http,https
filter   = roundcube
logpath  = /usr/share/roundcube/logs/userlogins</pre>
<p><strong>filter.d/roundcube.conf</strong></p>
<pre>[Definition]
failregex = FAILED login for .*. from 
ignoreregex =</pre>
<p>Like I said I have tested the regex against the log file and it finds matches. Enough matches that it should have banned (my default setting is 5 attempts in 10 minutes)</p>
<p>All my other jails are tested and working&#8230; just this roundcube jail doesn&#8217;t work at all</p>
<p>As a side note, here is the output of the log files compared:</p>
<p><strong>logs/errors</strong></p>
<pre>[23-Mar-2011 07:44:12 +0900]: IMAP Error: Login failed for <a href="mailto:bantest@ictnt.com">bantest@ictnt.com</a> from
203.10.224.93. LOGIN: Login failed. in /usr/share/roundcube/program/include/rcube_imap.php
on line 192 (POST /webmail/?_task=login&amp;_action=login)</pre>
<p><strong>logs/userlogins</strong></p>
<pre>[23-Mar-2011 07:44:12 +0900]: FAILED login for bantest from 203.10.224.93</pre>
<p>If I could get a regex that works on the standard &#8220;errors&#8221; file, would that work?</p>
<p>I have also noted that both &#8220;errors&#8221; and &#8220;userlogins&#8221; have the same owner:group and permissions</p>
<pre>-rw-r--r-- www-data:www-data</pre>
<p>So I can&#8217;t see why the jail isn&#8217;t working please help! <img src='http://mattrude.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Chris</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-161</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 16 Feb 2011 20:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-161</guid>
		<description>After i have changed the &quot;regex&quot; in the configuration file this plugin works great.

Thanks a lot
Chris</description>
		<content:encoded><![CDATA[<p>After i have changed the &#8220;regex&#8221; in the configuration file this plugin works great.</p>
<p>Thanks a lot<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Matt Rude</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-160</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Sat, 05 Feb 2011 05:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-160</guid>
		<description>Thank you</description>
		<content:encoded><![CDATA[<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Matt Rude</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-159</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Sat, 05 Feb 2011 05:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-159</guid>
		<description>Thank you for adding this.</description>
		<content:encoded><![CDATA[<p>Thank you for adding this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Matt Rude</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-158</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Sat, 05 Feb 2011 05:23:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-158</guid>
		<description>yup, the plugins folder, but you have to follow the full install for it to work.</description>
		<content:encoded><![CDATA[<p>yup, the plugins folder, but you have to follow the full install for it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Matt Rude</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-157</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Sat, 05 Feb 2011 05:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-157</guid>
		<description>Your are free and welcome to modify the code anyway you wish :)</description>
		<content:encoded><![CDATA[<p>Your are free and welcome to modify the code anyway you wish <img src='http://mattrude.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by Matt Rude</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-156</link>
		<dc:creator>Matt Rude</dc:creator>
		<pubDate>Sat, 05 Feb 2011 05:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-156</guid>
		<description>I have no idea, I don&#039;t use Windows</description>
		<content:encoded><![CDATA[<p>I have no idea, I don&#8217;t use Windows</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The House must Know by Sandy</title>
		<link>http://mattrude.com/2011/02/the-house-must-know/#comment-272</link>
		<dc:creator>Sandy</dc:creator>
		<pubDate>Wed, 02 Feb 2011 01:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?p=4327#comment-272</guid>
		<description>I love it!  So true!</description>
		<content:encoded><![CDATA[<p>I love it!  So true!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by notafish</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-262</link>
		<dc:creator>notafish</dc:creator>
		<pubDate>Mon, 17 Jan 2011 14:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-262</guid>
		<description>Hi Matt,

I&#039;ve made three little corrections to the plugin which allow it to pass the W3C validator service, I thought I&#039;d give them to you to see if you wanted to integrate them in a new version, basically changing &#039; into &quot; and making sure those were recognized as text in output by adding anti-slash in the appropriate places in //construct the image
[code]
          // construct the image
          echo &quot;{$before_widget}{$before_title}$riw_widget_title{$after_title}&quot;;
          echo &quot;&quot;;
            if ( $riw_display_title == &quot;on&quot; ) { echo &quot;&lt;strong&gt;$attachment-&gt;post_title&lt;/strong&gt;&quot;; }
            echo &quot;&quot;;
            echo &quot;&lt;a href=&quot;.get_permalink( $riw_image_link ).&quot; rel=&quot;nofollow&quot;&gt;&quot;;
&lt;/a&gt;
[/code] </description>
		<content:encoded><![CDATA[<p>Hi Matt,</p>
<p>I&#8217;ve made three little corrections to the plugin which allow it to pass the W3C validator service, I thought I&#8217;d give them to you to see if you wanted to integrate them in a new version, basically changing &#8216; into &#8221; and making sure those were recognized as text in output by adding anti-slash in the appropriate places in //construct the image</p>
<pre class="brush: plain; title: ; notranslate">
          // construct the image
          echo &quot;{$before_widget}{$before_title}$riw_widget_title{$after_title}&quot;;
          echo &quot;&quot;;
            if ( $riw_display_title == &quot;on&quot; ) { echo &quot;&lt;strong&gt;$attachment-&amp;gt;post_title&lt;/strong&gt;&quot;; }
            echo &quot;&quot;;
            echo &quot;&lt;a href=&quot;.get_permalink( $riw_image_link ).&quot; rel=&quot;nofollow&quot;&gt;&quot;;
&lt;/a&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Image Block by Justus</title>
		<link>http://mattrude.com/projects/random-image-block/#comment-261</link>
		<dc:creator>Justus</dc:creator>
		<pubDate>Thu, 06 Jan 2011 03:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://mattrude.com/?page_id=1850#comment-261</guid>
		<description>Hey Matt, 
The plugin sound like exactly what I&#039;m looking for. I&#039;m running into a problem installing through. 
        Installing through the search for plugin feature hangs on installing plugin, although I suspect thats due to the immensely flacky ftp server I&#039;m developing the page on. 
         However, after I install manually and activate the plugin in the admin/plugin pannel.....well, it&#039;s after this that I hit a snag. I open up the widget pannel to drag random image block to my sidepannel, but instead of it dragging, it outputs a question within the widget dialog (not the sidebar dialog). There&#039;s no form or boxes, it just fills the screen with text where there shouldnt be text. Any idea if I can fix this somehow? 

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hey Matt,<br />
The plugin sound like exactly what I&#8217;m looking for. I&#8217;m running into a problem installing through.<br />
        Installing through the search for plugin feature hangs on installing plugin, although I suspect thats due to the immensely flacky ftp server I&#8217;m developing the page on.<br />
         However, after I install manually and activate the plugin in the admin/plugin pannel&#8230;..well, it&#8217;s after this that I hit a snag. I open up the widget pannel to drag random image block to my sidepannel, but instead of it dragging, it outputs a question within the widget dialog (not the sidebar dialog). There&#8217;s no form or boxes, it just fills the screen with text where there shouldnt be text. Any idea if I can fix this somehow? </p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RoundCube Fail2Ban Plugin by DmDS</title>
		<link>http://mattrude.com/projects/roundcube-fail2ban-plugin/#comment-155</link>
		<dc:creator>DmDS</dc:creator>
		<pubDate>Sat, 25 Dec 2010 12:18:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattrude.com/?page_id=346#comment-155</guid>
		<description>help please....
&quot;logpath&quot; for windows
c://logs/userlogins
is it right?</description>
		<content:encoded><![CDATA[<p>help please&#8230;.<br />
&#8220;logpath&#8221; for windows<br />
c://logs/userlogins<br />
is it right?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
