<?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>From the desk of &#187; sysadmin</title>
	<atom:link href="http://blog.fimsch.net/category/sysadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fimsch.net</link>
	<description>random notes of a professional geek</description>
	<lastBuildDate>Wed, 01 Sep 2010 12:57:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<cloud domain='blog.fimsch.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Mailman problems</title>
		<link>http://blog.fimsch.net/2010/09/mailman-problems/</link>
		<comments>http://blog.fimsch.net/2010/09/mailman-problems/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 12:57:38 +0000</pubDate>
		<dc:creator>konrad</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[mailman]]></category>
		<category><![CDATA[mx]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://blog.fimsch.net/?p=207</guid>
		<description><![CDATA[For one of lists, one of the subscribers had the strangest problem. He kept getting bounces that the list alias does not even exist, whilst at the same time other subscribers could well write to that list. It turns out that his mail server was rewriting the To:-address, resolving the CNAME of the hostname that [...]]]></description>
			<content:encoded><![CDATA[<p>For one of lists, one of the subscribers had the strangest problem. He kept getting bounces that the list alias does not even exist, whilst at the same time other subscribers could well write to that list.  It turns out that his mail server was rewriting the To:-address, resolving the CNAME of the hostname that is responsible for running the lists.  As we run a virtual-domain based mail server, this was not a smart choice: Whilst the email address does indeed exist on the CNAME-d host (lists.xiqit.de), it does not exist on the fully qualified name the server listens to.  So we added an MX record for the hostname that also points to the &#8216;primary&#8217; name of the server (the one which the RDNS also resolves to), and now all is well.  HIs email does reach the list. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fimsch.net/2010/09/mailman-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerDNS under MacOS X 10.6.4</title>
		<link>http://blog.fimsch.net/2010/08/powerdns-under-macos-x-10-6-4/</link>
		<comments>http://blog.fimsch.net/2010/08/powerdns-under-macos-x-10-6-4/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 22:02:04 +0000</pubDate>
		<dc:creator>konrad</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[powerdns]]></category>

		<guid isPermaLink="false">http://blog.fimsch.net/?p=198</guid>
		<description><![CDATA[Thanks to an entry on LSD::RELOAD I was finally able to get powerdns to run on my MacOS X 10.6.4 system. Out of personal preference I wanted it to run with postgresql instead of mysql, so there was a little figuring out involved in how to get things going without the mysql driver &#8212; apparently, [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to an <a href="http://lsimons.wordpress.com/2010/03/15/powerdns-29-2-22-on-mac-os-x-10-5-8/">entry on LSD::RELOAD</a> I was finally able to get powerdns to run on my MacOS X 10.6.4 system. </p>
<p>Out of personal preference I wanted it to run with postgresql instead of mysql, so there was a little figuring out involved in how to get things going without the mysql driver &#8212; apparently, the make files only take one database backend and do not compile multiple drivers at the same time.</p>
<p>Also, secondary software omes from MacPorts, so paths had to be appropriately matched.  And then, there was some hand-tweaking of Makefiles because -Bstatic, -Bdynamic and -lcrypt warrant special handling. </p>
<p>This leads to the following command line: </p>
<p><code>CXXFLAGS="-I/opt/local/include -DDARWIN" \<br />
./configure --with-pgsql-lib=/opt/local/lib/postgresql84 \<br />
--with-pgsql-includes=/opt/local/include/postgresql84 \<br />
--prefix=/usr/local --with-modules="gpgsql"<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fimsch.net/2010/08/powerdns-under-macos-x-10-6-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ich mag shell &#8230;</title>
		<link>http://blog.fimsch.net/2009/02/ich-mag-shell/</link>
		<comments>http://blog.fimsch.net/2009/02/ich-mag-shell/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 10:06:44 +0000</pubDate>
		<dc:creator>konrad</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://blog.fimsch.net/?p=137</guid>
		<description><![CDATA[for i in *.html; do mv $i {$i%.html}.php; done Und schon sind alle HTML-Dateien PHP-Dateien. Ich mag Shell.]]></description>
			<content:encoded><![CDATA[<p><code>for i in *.html; do mv $i {$i%.html}.php; done</code></p>
<p>Und schon sind alle HTML-Dateien PHP-Dateien.  Ich mag Shell. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fimsch.net/2009/02/ich-mag-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fcgid und http authentication</title>
		<link>http://blog.fimsch.net/2009/01/fcgid-und-http-authentication/</link>
		<comments>http://blog.fimsch.net/2009/01/fcgid-und-http-authentication/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 08:57:42 +0000</pubDate>
		<dc:creator>konrad</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.fimsch.net/?p=133</guid>
		<description><![CDATA[Dank everflux gelöst. Wenn man PHP mit fhcgid fährt und dann dabei auch noch http authentication machen möchte, muss man in der Konfigurations-Datei von apache einen Eintrag ergänzen. Bei uns steht jetzt in der Section &#60;ifmodule mod_fcgid.c&#62;noch Passheader Authorization.]]></description>
			<content:encoded><![CDATA[<p>Dank <a href="http://everflux.de/apache-fcgid-und-http-authentifizierung-mit-php-621/">everflux</a> gelöst.  Wenn man PHP mit fhcgid fährt und dann dabei auch noch http authentication machen möchte, muss man in der Konfigurations-Datei von apache einen Eintrag ergänzen.  Bei uns steht jetzt in der Section <code>&lt;ifmodule mod_fcgid.c&gt;</code>noch <code>Passheader Authorization</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fimsch.net/2009/01/fcgid-und-http-authentication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
