<?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>Dotdeb &#187; spam</title>
	<atom:link href="http://www.dotdeb.org/tag/spam/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotdeb.org</link>
	<description>The repository for Debian-based LAMP servers</description>
	<lastBuildDate>Fri, 03 Feb 2012 01:25:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Qmailadmin 1.2.11 updated</title>
		<link>http://www.dotdeb.org/2008/09/29/qmailadmin-1211-updated/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qmailadmin-1211-updated</link>
		<comments>http://www.dotdeb.org/2008/09/29/qmailadmin-1211-updated/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 11:59:05 +0000</pubDate>
		<dc:creator>Guillaume Plessis</dc:creator>
				<category><![CDATA[Mail]]></category>
		<category><![CDATA[qmail]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.dotdeb.org/?p=133</guid>
		<description><![CDATA[I just updated Qmailadmin 1.2.11 for Etch amd64/i386 to include some changes : instead of a checkbox to enable/disable spam filtering on pop accounts, there is now a list to chose what to do (no filtering, marking spams, deleting spams, learn spam, learn ham). This allow anyone to easily train your bayesian filters. Spamassassin is [...]]]></description>
			<content:encoded><![CDATA[<p>I just updated Qmailadmin 1.2.11 for Etch amd64/i386 to include some changes :</p>
<ul>
<li>instead of a checkbox to enable/disable spam filtering on pop accounts, there is now a list to chose what to do (no filtering, marking spams, deleting spams, learn spam, learn ham). This allow anyone to easily train your bayesian filters.</li>
<li>Spamassassin is now recommanded and will replace bogofilter in a near future</li>
<li>Clamassassin replaces clamfilter.pl due to performance issues. Please DO update the <em>/etc/procmailrc-*</em> files during the upgrade to ensure virus are scanned.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dotdeb.org/2008/09/29/qmailadmin-1211-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable greylisting on your Qmail server</title>
		<link>http://www.dotdeb.org/2008/08/24/how-to-enable-greylisting-on-your-qmail-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-enable-greylisting-on-your-qmail-server</link>
		<comments>http://www.dotdeb.org/2008/08/24/how-to-enable-greylisting-on-your-qmail-server/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 18:26:52 +0000</pubDate>
		<dc:creator>Guillaume Plessis</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[greylisting]]></category>
		<category><![CDATA[qmail]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.dotdeb.org/?p=75</guid>
		<description><![CDATA[Greylisting is very useful to avoid most of the incoming spam on your mail server. The Qmail packages shipped on Dotdeb have built-in MySQL-based greylisting. Here is how to enable it&#8230; Installation First of all, be sure to have Qmail installed from Dotdeb with a version number greater than 1.03-37.dotdeb.1. Then, since we&#8217;ll use a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Greylisting">Greylisting</a> is very useful to avoid most of the incoming spam on your mail server. The Qmail packages shipped on Dotdeb have built-in MySQL-based greylisting. Here is how to enable it&#8230;</p>
<p><strong>Installation</strong></p>
<p>First of all, be sure to have Qmail installed from Dotdeb with a version number greater than 1.03-37.dotdeb.1.<br />
Then, since we&#8217;ll use a MySQL backend to share the greylisting database between several servers, be sure to have MySQL installed somewhere on your boxes.</p>
<p>In our example, we&#8217;ll create the database (we&#8217;ll name it <strong>relaydelay</strong>) and grant access to <strong>user</strong>@<strong>host</strong> with the password &#8220;<strong>password</strong>&#8220;. You&#8217;re free to change these values to fit your needs&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">DATABASE</span> relaydelay<span style="color: #000033;">;</span>
<span style="color: #990099; font-weight: bold;">GRANT</span> <span style="color: #990099; font-weight: bold;">ALL</span> <span style="color: #990099; font-weight: bold;">PRIVILEGES</span> <span style="color: #990099; font-weight: bold;">ON</span> <span style="color: #008000;">`relaydelay`</span>.<span style="color: #CC0099;">*</span> <span style="color: #990099; font-weight: bold;">TO</span> <span style="color: #008000;">'user'</span>@<span style="color: #008000;">'localhost'</span> IDENTIFIED BY <span style="color: #008000;">'password'</span><span style="color: #000033;">;</span></pre></div></div>

<p>Then, we create the needed tables :</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> relaytofrom
<span style="color: #FF00FF;">&#40;</span>
  id              <span style="color: #999900; font-weight: bold;">bigint</span>          <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span>        <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
  relay_ip        <span style="color: #000099;">char</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">16</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  mail_from       <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  rcpt_to         <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  block_expires   <span style="color: #999900; font-weight: bold;">datetime</span>        <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
&nbsp;
  record_expires  <span style="color: #999900; font-weight: bold;">datetime</span>        <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  blocked_count   <span style="color: #999900; font-weight: bold;">bigint</span>          <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008080;">0</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  passed_count    <span style="color: #999900; font-weight: bold;">bigint</span>          <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008080;">0</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  aborted_count   <span style="color: #999900; font-weight: bold;">bigint</span>          <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008080;">0</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  origin_type     <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">&quot;MANUAL&quot;</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;AUTO&quot;</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  create_time     <span style="color: #999900; font-weight: bold;">datetime</span>        <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  last_update     <span style="color: #999900; font-weight: bold;">timestamp</span>       <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
&nbsp;
  <span style="color: #990099; font-weight: bold;">primary key</span><span style="color: #FF00FF;">&#40;</span>id<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">key</span><span style="color: #FF00FF;">&#40;</span>relay_ip<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">key</span><span style="color: #FF00FF;">&#40;</span>mail_from<span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">key</span><span style="color: #FF00FF;">&#40;</span>rcpt_to<span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span>
&nbsp;
<span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> dns_name
<span style="color: #FF00FF;">&#40;</span>
  relay_ip      <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">18</span><span style="color: #FF00FF;">&#41;</span>       <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  relay_name    <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span>      <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  last_update   <span style="color: #999900; font-weight: bold;">timestamp</span>         <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">primary key</span><span style="color: #FF00FF;">&#40;</span>relay_ip<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">key</span><span style="color: #FF00FF;">&#40;</span>relay_name<span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span>
&nbsp;
<span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> mail_log
<span style="color: #FF00FF;">&#40;</span>
  id              <span style="color: #999900; font-weight: bold;">bigint</span>          <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span>        <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
  relay_ip        <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">16</span><span style="color: #FF00FF;">&#41;</span>     <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  relay_name      <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  dns_mismatch    <span style="color: #999900; font-weight: bold;">bool</span>            <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  mail_from       <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span>    <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  rcpt_to         <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span>    <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  rcpt_host       <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">80</span><span style="color: #FF00FF;">&#41;</span>     <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
  create_time     <span style="color: #999900; font-weight: bold;">datetime</span>        <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
&nbsp;
  <span style="color: #990099; font-weight: bold;">primary key</span><span style="color: #FF00FF;">&#40;</span>id<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">key</span><span style="color: #FF00FF;">&#40;</span>relay_ip<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">key</span><span style="color: #FF00FF;">&#40;</span>mail_from<span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
  <span style="color: #990099; font-weight: bold;">key</span><span style="color: #FF00FF;">&#40;</span>rcpt_to<span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span></pre></div></div>

<p>We now have to put the appropriate settings in the <em>/etc/init.d/qmail</em> init script&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">MYSQLHOST</span>=<span style="color: #ff0000;">&quot;localhost&quot;</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">MYSQLUSER</span>=<span style="color: #ff0000;">&quot;user&quot;</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">MYSQLPASS</span>=<span style="color: #ff0000;">&quot;password&quot;</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">MYSQLDB</span>=<span style="color: #ff0000;">&quot;relaydelay&quot;</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">BLOCK_EXPIRE</span>=<span style="color: #000000;">5</span>           <span style="color: #666666; font-style: italic;"># minutes until email is accepted</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">RECORD_EXPIRE</span>=<span style="color: #000000;">600</span>        <span style="color: #666666; font-style: italic;"># minutes until record expires</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">RECORD_EXPIRE_GOOD</span>=<span style="color: #000000;">36</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">LOCAL_SCAN_DEBUG</span>=<span style="color: #000000;">0</span></pre></div></div>

<p>and in the <em>/usr/sbin/greylisting-delete-expired</em> :</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">MYSQLHOST</span>=<span style="color: #ff0000;">&quot;localhost&quot;</span>
<span style="color: #007800;">MYSQLUSER</span>=<span style="color: #ff0000;">&quot;user&quot;</span>
<span style="color: #007800;">MYSQLPASS</span>=<span style="color: #ff0000;">&quot;password&quot;</span>
<span style="color: #007800;">MYSQLDB</span>=<span style="color: #ff0000;">&quot;relaydelay&quot;</span></pre></div></div>

<p>We can now relaunch Qmail and enable or disable the greylisting with a simple symbolic link :</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>qmail
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>qmail-envelope-scanner <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>qmail-envelope-scanner</pre></div></div>

<p><strong>Usage</strong></p>
<p>Example wildcard whitelists for subnets :</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">INSERT</span> <span style="color: #990099; font-weight: bold;">INTO</span> relaytofrom <span style="color: #990099; font-weight: bold;">VALUES</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;127.0.0.1&quot;</span>   <span style="color: #000033;">,</span><span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span><span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;0000-00-00 00:00:00&quot;</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;9999-12-31 23:59:59&quot;</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;MANUAL&quot;</span><span style="color: #000033;">,</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span>
<span style="color: #990099; font-weight: bold;">INSERT</span> <span style="color: #990099; font-weight: bold;">INTO</span> relaytofrom <span style="color: #990099; font-weight: bold;">VALUES</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;192.168&quot;</span>     <span style="color: #000033;">,</span><span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span><span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;0000-00-00 00:00:00&quot;</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;9999-12-31 23:59:59&quot;</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;MANUAL&quot;</span><span style="color: #000033;">,</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span></pre></div></div>

<p>Example wildcard whitelist entry for a recieved domain or subdomain</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">INSERT</span> <span style="color: #990099; font-weight: bold;">INTO</span> relaytofrom <span style="color: #990099; font-weight: bold;">VALUES</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span><span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;sub.domain.com&quot;</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;0000-00-00 00:00:00&quot;</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;9999-12-31 23:59:59&quot;</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008000;">&quot;MANUAL&quot;</span><span style="color: #000033;">,</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.dotdeb.org/2008/08/24/how-to-enable-greylisting-on-your-qmail-server/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 1/12 queries in 0.002 seconds using apc
Object Caching 264/284 objects using apc

Served from: www.dotdeb.org @ 2012-02-04 04:42:13 -->
