<?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>BigSmoke &#187; SpamAssassin</title>
	<atom:link href="http://blog.bigsmoke.us/tag/spamassassin/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.bigsmoke.us</link>
	<description>Smokes your problems, coughs fresh air.</description>
	<lastBuildDate>Sat, 04 Feb 2012 18:03:39 +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>Lowering Bayes score for Zimbra&#8217;s Spamassassin config</title>
		<link>http://blog.bigsmoke.us/2010/01/18/lowering-bayes-score-for-zimbras-spamassasin-config</link>
		<comments>http://blog.bigsmoke.us/2010/01/18/lowering-bayes-score-for-zimbras-spamassasin-config#comments</comments>
		<pubDate>Mon, 18 Jan 2010 00:25:54 +0000</pubDate>
		<dc:creator>halfgaar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[SpamAssassin]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://blog.bigsmoke.us/?p=1026</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>
The Spamassassin config in Zimbra has a very high default score for bayes matching of 99, 95, 90, etc, percent. A mail with subject and body &#8220;test&#8221; or &#8220;asdfaewf a&#8221; is often marked as 99% bayes, even though the spamfilter has seen no training mail. This is absurd.
</p>

<p>
To amend this, I put this in /opt/zimbra/conf/spamassassin/local.cf:
</p>

<pre class="php">score BAYES_99 <span style="color: #cc66cc;">2.500</span>
score BAYES_95 <span style="color: #cc66cc;">2.000</span>
score BAYES_90 <span style="color: #cc66cc;">1.500</span>
score BAYES_85 <span style="color: #cc66cc;">1.000</span>
score BAYES_80 <span style="color: #cc66cc;">0.500</span></pre>]]></content:encoded>
			<wfw:commentRss>http://blog.bigsmoke.us/2010/01/18/lowering-bayes-score-for-zimbras-spamassasin-config/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing spamassassin rule in Zimbra</title>
		<link>http://blog.bigsmoke.us/2010/01/17/fixing-spamassassin-rule-in-zimbra</link>
		<comments>http://blog.bigsmoke.us/2010/01/17/fixing-spamassassin-rule-in-zimbra#comments</comments>
		<pubDate>Sun, 17 Jan 2010 18:15:17 +0000</pubDate>
		<dc:creator>halfgaar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[SpamAssassin]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://blog.bigsmoke.us/?p=1015</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>
Spamassassin has had a bug for a while, marking any mail from 2010 and later as spam because it&#8217;s from &#8220;far into the future&#8221;. This was very crudely done as this regexp: <tt>/20[1-9][0-9]/</tt>. Because of that, almost all mail from 2010 onward is marked as spam.
</p>

<p>
I Changed the regex to match for 2020 or later, but that&#8217;s not really a fix. Even the spamassassin maintainers &#8216;fixed&#8217; it that way.
</p>

<p>
What I have to look out for though, is that this file may get overwritten when I upgrade zimbra. sa-update doesn&#8217;t seem to work on zimbra, so I don&#8217;t really know what the best way of getting new rules is.
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bigsmoke.us/2010/01/17/fixing-spamassassin-rule-in-zimbra/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Correcting Spamassassins stale mirror configuration</title>
		<link>http://blog.bigsmoke.us/2009/06/19/correcting-spamassassins-stale-mirror-configuration</link>
		<comments>http://blog.bigsmoke.us/2009/06/19/correcting-spamassassins-stale-mirror-configuration#comments</comments>
		<pubDate>Fri, 19 Jun 2009 08:36:36 +0000</pubDate>
		<dc:creator>halfgaar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[SpamAssassin]]></category>

		<guid isPermaLink="false">http://blog.bigsmoke.us/?p=623</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>
My spamassassin updates daily by running sa-update. Recently, I&#8217;ve been getting failure notices that mirror spamassassin.kluge.net was no longer available. This was because of a <a href="https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6083">known bug</a>, apparantly. So, I deleted the MIRROR.BY file and ran sa-update again. 
</p>

<p>
This caused problem number two: GPG key verification failed. This was also a <a href="http://wiki.apache.org/spamassassin/SaUpdateKeyNotCrossCertified?highlight=(update)">known issue</a>, so I had to do:
</p>

<pre class="php">wget http:<span style="color: #808080; font-style: italic;">//spamassassin.apache.org/updates/GPG.KEY</span>
sa-update --import GPG.<a href="http://www.php.net/key"><span style="color: #000066;">KEY</span></a></pre>

<p>
And then everything was OK again.
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bigsmoke.us/2009/06/19/correcting-spamassassins-stale-mirror-configuration/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiebe Hedde Cazemier</title>
		<link>http://blog.bigsmoke.us/2006/09/18/wiebe-hedde-cazemier</link>
		<comments>http://blog.bigsmoke.us/2006/09/18/wiebe-hedde-cazemier#comments</comments>
		<pubDate>Mon, 18 Sep 2006 17:07:34 +0000</pubDate>
		<dc:creator>Rowan Rodrik</dc:creator>
				<category><![CDATA[Familiars]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[Ferrari F50]]></category>
		<category><![CDATA[Halfgaar]]></category>
		<category><![CDATA[SpamAssassin]]></category>
		<category><![CDATA[Wiebe Hedde Cazemier]]></category>

		<guid isPermaLink="false">http://blog.bigsmoke.us/?p=304</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re into Open Source software, <a href="http://www.blender.org/">3D modeling</a> or Do It Yourself audio, you may already know Wiebe under his on-line alias, <a href="http://www.halfgaar.net/" rel="co-worker friend met">Halfgaar</a>. Personally, I&#8217;ve known him since I was 10 and he was 9. These days he&#8217;s still a very good friend, and even a colleague.</p>

<div id="attachment_305" class="wp-caption alignnone" style="width: 710px"><a href="http://www.halfgaar.net/ferrari-f50"><img src="http://blog.bigsmoke.us/uploads/2009/01/ferrari-f50-driveway.jpg" alt="His Ferrari F50, not your usual lawn decoration." title="A Ferrari F50 on Wiebe&#039;s driveway" width="700" height="525" class="size-full wp-image-305" /></a><p class="wp-caption-text">His Ferrari F50, not your usual lawn decoration.</p></div>

<h2>Strongly straight-forward</h2>

<p>As a very analytical, factual thinker, Wiebe is the kind of person who doesn&#8217;t run with the newest buzzwords. He simply says what he thinks and his thoughts usually follow from very sound and steady logic. As a programmer, this makes him invaluable. At times, as a human, this may make him hard to stomach if, as is usual, he is right and you are not. But, don&#8217;t worry: he will usually be kind enough to explain to you exactly&#8212;very exactly&#8212;why it is that you are wrong.</p>

<p>So, he may not be the type for marketing, but for anything that needs to be done robustly and thoroughly, he is irreplaceable.</p>

<h2>Solid knowledge</h2>

<ul>
      <li>
      <p><strong>System administration:</strong> As every Geek with family and friends, Wiebe has the obligatory knowledge of how to keep a network of Windows systems somewhat stable, but this knowledge is irrelevant compared to his experience and skill in <strong>Unix</strong> system administration. His favourite Linux distribution is Gentoo Linux and, as follows from his many <a href="http://forums.gentoo.org/search.php?search_author=halfgaar">posts</a> to the Gentoo Forums, he is a Linux Guru indeed.</p>

      </li>

      <li>
      <p><strong>Backups:</strong> even to most system administrators, they&#8217;re just an afterthought, but he really knows his dar backups from your tar&#8217;s. And, he&#8217;s <a href="http://www.halfgaar.net/backing-up-unix">published</a> about it too.</p>
      </li>

      <li>

      <p><strong>Audio-engineering</strong> requires an enormous level of insight in the complex dynamics of audio waves and electronics. To me, it&#8217;s mostly Chinese, but he has built his own amps, speakers and <a href="http://www.halfgaar.net/elf-subwoofer">subwoofer</a>. If he notices even the slightest artifact in the sound, he goes back to the drawing board and just redoes the circuits another time.</p>
      </li>
</ul>

<h2 id="more">Learn more</h2>

<p>Wiebe can be contacted at <a href="mailto:wiebe@halfgaar.net">wiebe@halfgaar.net</a>, unless if you&#8217;re a spammer, because he happens to be an expert-level <a href="http://spamassassin.apache.org/">SpamAssassin</a> administrator.</p>

<h3>Web presence</h3>

<ul>
      <li><a href="http://www.halfgaar.net/">www.halfgaar.net</a> &#8211; the official website.</li>
      <li>His <a href="http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=45494">profile</a> at the Gentoo Forums.</li>

      <li>His <a href="http://blenderartists.org/forum/member.php?find=lastposter&amp;t=66408">profile</a> at the <a href="http://blenderartists.org/forum/">Blender Artists Forum</a></li>
      <li>His <a href="http://gathering.tweakers.net/forum/find/poster/70819/topics">posts</a> at the Dutch <a href="http://gathering.tweakers.net/">Gathering of Tweakers</a> forum</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.bigsmoke.us/2006/09/18/wiebe-hedde-cazemier/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

