<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>meersau - Technik</title>
    <link>http://blog.meersau.de/</link>
    <description>... blogt</description>
    <dc:language>en</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:blog@meersau.de" />
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    
    <image>
        <url>http://blog.meersau.de/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: meersau - Technik - ... blogt</title>
        <link>http://blog.meersau.de/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>AJAX ist ja gar nicht soooo schwer</title>
    <link>http://blog.meersau.de/index.php?/archives/367-AJAX-ist-ja-gar-nicht-soooo-schwer.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/367-AJAX-ist-ja-gar-nicht-soooo-schwer.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=367</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=367</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Zumindest das &lt;a href=&quot;http://developer.apple.com/internet/webcontent/xmlhttpreq.html&quot;&gt;XMLHttpRequest&lt;/a&gt; Objekt klappt ganz gut &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 16 Apr 2009 23:27:04 +0200</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/367-guid.html</guid>
    <category>hilfreich</category>

</item>
<item>
    <title>Exim acl_smtp_connect in Verbindung mit nixspam</title>
    <link>http://blog.meersau.de/index.php?/archives/366-Exim-acl_smtp_connect-in-Verbindung-mit-nixspam.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/366-Exim-acl_smtp_connect-in-Verbindung-mit-nixspam.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=366</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=366</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    &lt;blockquote&gt;&lt;br /&gt;
acl_check_ip:&lt;br /&gt;
&lt;br /&gt;
        accept hosts = +relay_from_hosts&lt;br /&gt;
&lt;br /&gt;
        deny&lt;br /&gt;
            log_message = Match NiXSpam&lt;br /&gt;
            dnslists = +defer_unknown : ix.dnsbl.manitu.net&lt;br /&gt;
&lt;br /&gt;
        accept&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Die ACL wird von &lt;em&gt;acl_smtp_connect&lt;/em&gt; konsumiert. Ziel ist es, alle IP Adressen die auf der Liste stehen garnicht erst mit einem SMTP Dialog zu begrüßen.&lt;br /&gt;
&lt;br /&gt;
Das &lt;em&gt;+defer_unknown&lt;/em&gt; soll bewirken das bei nicht erreichen der Liste alle Emails temporär abgewiesen werden. Nur wie kann ich das testen ^^ Ein /etc/hosts Eintrag auf 127.0.0.1?&lt;br /&gt;
&lt;br /&gt;
Aber schon die Ersten paar Minuten zeigen Wirkung &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 26 Mar 2009 20:59:35 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/366-guid.html</guid>
    <category>exim</category>
<category>spam</category>

</item>
<item>
    <title>Monat einstellig mit date und Bash</title>
    <link>http://blog.meersau.de/index.php?/archives/365-Monat-einstellig-mit-date-und-Bash.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/365-Monat-einstellig-mit-date-und-Bash.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=365</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=365</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Wenn man den Monat einstellig braucht, kann man den von date zurück gelieferten Wert einfach in eine Zahl umwandeln.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;MONAT=`date +%m`&lt;br /&gt;
MONAT=`expr $MONAT + 0`&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 10 Mar 2009 10:43:15 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/365-guid.html</guid>
    <category>bash</category>
<category>shell</category>

</item>
<item>
    <title>IP Adressen mit Bash auf Gültigkeit prüfen</title>
    <link>http://blog.meersau.de/index.php?/archives/364-IP-Adressen-mit-Bash-auf-Gueltigkeit-pruefen.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/364-IP-Adressen-mit-Bash-auf-Gueltigkeit-pruefen.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=364</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=364</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Auf &lt;a href=&quot;http://www.linuxjournal.com/content/validating-ip-address-bash-script&quot; &gt;www.linuxjournal.com&lt;/a&gt; gefunden.&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
# Test an IP address for validity:&lt;br /&gt;
# Usage:&lt;br /&gt;
#      valid_ip IP_ADDRESS&lt;br /&gt;
#      if [[ $? -eq 0 ]]; then echo good; else echo bad; fi&lt;br /&gt;
#   OR&lt;br /&gt;
#      if valid_ip IP_ADDRESS; then echo good; else echo bad; fi&lt;br /&gt;
#&lt;br /&gt;
function valid_ip()&lt;br /&gt;
{&lt;br /&gt;
    local  ip=$1&lt;br /&gt;
    local  stat=1&lt;br /&gt;
&lt;br /&gt;
    if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then&lt;br /&gt;
        OIFS=$IFS&lt;br /&gt;
        IFS=&#039;.&#039;&lt;br /&gt;
        ip=($ip)&lt;br /&gt;
        IFS=$OIFS&lt;br /&gt;
        [[ ${ip[0]} -le 255 &amp;&amp;amp; ${ip[1]} -le 255 \&lt;br /&gt;
            &amp;&amp;amp; ${ip[2]} -le 255 &amp;&amp;amp; ${ip[3]} -le 255 ]]&lt;br /&gt;
        stat=$?&lt;br /&gt;
    fi&lt;br /&gt;
    return $stat&lt;br /&gt;
}&lt;br /&gt;
&lt;/code&gt; 
    </content:encoded>

    <pubDate>Thu, 05 Mar 2009 17:07:51 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/364-guid.html</guid>
    <category>bash</category>
<category>linux</category>
<category>netzwerk</category>
<category>skript</category>

</item>
<item>
    <title>Dokuwiki Up2Date</title>
    <link>http://blog.meersau.de/index.php?/archives/362-Dokuwiki-Up2Date.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/362-Dokuwiki-Up2Date.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=362</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=362</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Nun endlich mit der Version 2009-02-14 habe ich im Wiki wieder die Buttonleiste &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Mon, 16 Feb 2009 22:56:28 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/362-guid.html</guid>
    <category>update</category>
<category>wiki</category>

</item>
<item>
    <title>Foren und Mailinglisten</title>
    <link>http://blog.meersau.de/index.php?/archives/361-Foren-und-Mailinglisten.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/361-Foren-und-Mailinglisten.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=361</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=361</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Wer mich kennt, weiß das ich Foren nicht sonderlich mag. Nichtsdestotrotz habe ich mich etwas mit Foren auseinander gesetzt und bin dabei über das &lt;a href=&quot;http://fudforum.org/forum/&quot; &gt;FUDforum&lt;/a&gt; gestolpert. Ein Feature ist es Mailinglisten in das Forum zu integrieren. Und ich finde das klappt ganz gut.&lt;br /&gt;
&lt;br /&gt;
Zunächst konfiguriert man eine Liste auf ein Forum. Dann gibt man dem Skript maillinglist.php per Pipe eine Email zum verarbeiten und schon sind die Emails im Forum. Wenn man möchte kann man auch im Forum eine Antwort schreiben. Die Ersten Tests waren erfolgreich.&lt;br /&gt;
&lt;br /&gt;
Und da ich den Minimalist als Mailinglistenmanager einsetze, habe ich dadurch auch gleich ein schönes Archiv für die Mailingliste. 
    </content:encoded>

    <pubDate>Thu, 12 Feb 2009 00:50:11 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/361-guid.html</guid>
    <category>email</category>
<category>forum</category>

</item>
<item>
    <title>adjtime failed: Operation not permitted</title>
    <link>http://blog.meersau.de/index.php?/archives/358-adjtime-failed-Operation-not-permitted.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/358-adjtime-failed-Operation-not-permitted.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=358</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=358</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Ob das am vServer liegt? &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 27 Nov 2008 20:43:41 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/358-guid.html</guid>
    
</item>
<item>
    <title>kochalexander.de Mailstörung bei 1und1</title>
    <link>http://blog.meersau.de/index.php?/archives/356-kochalexander.de-Mailstoerung-bei-1und1.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/356-kochalexander.de-Mailstoerung-bei-1und1.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=356</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=356</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Emails an @kochalexander.de werden, aufgrund eines Fehlers bei 1und1, mit 550 quittiert &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/sad.png&quot; alt=&quot;:-(&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Für dringende Emails bitte die @meersau.de verwenden.&lt;br /&gt;
&lt;br /&gt;
Todo, Email auf meinen MTA umziehen. 
    </content:encoded>

    <pubDate>Fri, 21 Nov 2008 14:38:46 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/356-guid.html</guid>
    <category>1und1</category>
<category>aergerlich</category>
<category>mail</category>

</item>
<item>
    <title>Nervig</title>
    <link>http://blog.meersau.de/index.php?/archives/355-Nervig.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/355-Nervig.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=355</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=355</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Keine 10 Minuten am Netz schon die Ersten SSH Skript &quot;Attacken&quot; am laufen und keine 10 Minuten das Blog aktiv schon der Erste Trackback Spam.&lt;br /&gt;
&lt;br /&gt;
Sowas kann nerven &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/sad.png&quot; alt=&quot;:-(&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Fri, 21 Nov 2008 01:32:43 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/355-guid.html</guid>
    <category>aergerlich</category>
<category>grummel</category>
<category>spam</category>

</item>
<item>
    <title>vServer Neuinstallation</title>
    <link>http://blog.meersau.de/index.php?/archives/354-vServer-Neuinstallation.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/354-vServer-Neuinstallation.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=354</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=354</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Nun ist zweiblum.meersau.de auch mal wieder aktualisiert, fehlt noch einiges aber die Webauftritte laufen wieder und das ist ja derzeit der Hauptservice für die Kiste.&lt;br /&gt;
Fürs nächste Mal schon etwas Vorarbeit geleistet, aber es fehlen noch ein paar Pakete.&lt;br /&gt;
&lt;br /&gt;
Sollte etwas nicht funktionieren, dann schreit bitte &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; Selbst die 3fachen Tags sind noch da &lt;strong&gt;g&lt;/strong&gt; 
    </content:encoded>

    <pubDate>Fri, 21 Nov 2008 01:21:02 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/354-guid.html</guid>
    <category>apache</category>
<category>debian</category>
<category>linux</category>
<category>zweiblum</category>

</item>
<item>
    <title>Remote Desktop Verbindung - Anzahl der Benutzer überschritten</title>
    <link>http://blog.meersau.de/index.php?/archives/347-Remote-Desktop-Verbindung-Anzahl-der-Benutzer-ueberschritten.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/347-Remote-Desktop-Verbindung-Anzahl-der-Benutzer-ueberschritten.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=347</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=347</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Start -&gt; Ausführen -&gt; mstsc.exe /console hilft. 
    </content:encoded>

    <pubDate>Mon, 14 Apr 2008 22:45:57 +0200</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/347-guid.html</guid>
    <category>remote</category>
<category>windows</category>

</item>
<item>
    <title>Teamviewer Windows Hilfestellung auch vom Mac aus</title>
    <link>http://blog.meersau.de/index.php?/archives/344-Teamviewer-Windows-Hilfestellung-auch-vom-Mac-aus.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/344-Teamviewer-Windows-Hilfestellung-auch-vom-Mac-aus.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=344</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=344</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Das Programm &lt;a href=&quot;http://www.teamviewer.de&quot; &gt;Teamviewer&lt;/a&gt; ermöglicht es einen anderen Windows oder Mac Rechner nach Einwilligung vom Benutzer zu administrieren. Das schöne daran ist die Tatsache das dies für private Zwecke kostenlos ist. Wer näheres erfahren oder es ausprobieren möchte, kann sich das Programm kostenlos herunterladen. 
    </content:encoded>

    <pubDate>Wed, 02 Apr 2008 21:21:49 +0200</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/344-guid.html</guid>
    <category>mac</category>
<category>windows</category>

</item>
<item>
    <title>Gemeiner Virus</title>
    <link>http://blog.meersau.de/index.php?/archives/342-Gemeiner-Virus.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/342-Gemeiner-Virus.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=342</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=342</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Der gemeine Virus der gerade herumläuft und einem empfiehlt die robots.txt so zu konfigurieren das keine Suchmaschine mehr auf die Seite kommt find ich ja irgendwie sehr lustig. Erinnert mich etwas an rm -rf / &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Mehr über die Datei robots.text findet man z.B. &lt;a href=&quot;http://www.bjoernsworld.de/suchmaschinen/robots-txt.html&quot; &gt;hier&lt;/a&gt;. Wer die Email nicht bekommen hat in der Erweiterung zum Eintrag findet ihr eine Kopie. &lt;br /&gt;&lt;a href=&quot;http://blog.meersau.de/index.php?/archives/342-Gemeiner-Virus.html#extended&quot;&gt;Continue reading &quot;Gemeiner Virus&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 16 Mar 2008 19:12:55 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/342-guid.html</guid>
    <category>aergerlich</category>
<category>humor</category>

</item>
<item>
    <title>Stromausfall in Karlsruhe</title>
    <link>http://blog.meersau.de/index.php?/archives/339-Stromausfall-in-Karlsruhe.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/339-Stromausfall-in-Karlsruhe.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=339</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=339</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    ... &lt;a href=&quot;http://www.ka-news.de/karlsruhe/news.php4?show=stb2008130-220G&quot; &gt;und plötzlich war es dunkel&lt;/a&gt;. Unsere USV hat gehalten &lt;img src=&quot;http://blog.meersau.de/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Wed, 30 Jan 2008 20:21:58 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/339-guid.html</guid>
    
</item>
<item>
    <title>CMS made simple für gertrud-koch.de</title>
    <link>http://blog.meersau.de/index.php?/archives/336-CMS-made-simple-fuer-gertrud-koch.de.html</link>
            <category>Technik</category>
    
    <comments>http://blog.meersau.de/index.php?/archives/336-CMS-made-simple-fuer-gertrud-koch.de.html#comments</comments>
    <wfw:comment>http://blog.meersau.de/wfwcomment.php?cid=336</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.meersau.de/rss.php?version=2.0&amp;type=comments&amp;cid=336</wfw:commentRss>
    

    <author>blog@meersau.de (Alexander Koch)</author>
    <content:encoded>
    Die Installation war einfach, die Bedienung scheint mir verständlich. Nun fehlt mir nur noch die  Zeit und das Know-How um es schön aussehen zu lassen. Ich spreche von dem Webauftritt meiner Mutter: &lt;a href=&quot;http://www.gertrud-koch.de&quot;  title=&quot;Webseite von Gertrud Koch&quot;&gt;www.gertrud-koch.de&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Derzeit ist es das Default Theme von &lt;a href=&quot;http://cmsmadesimple.org&quot;  title=&quot;Homepage von CMA made simple&quot;&gt;CMS made Simple&lt;/a&gt; mit kleinen Änderungen im CSS. Es ist schon etwas her, seit ich mich mit HTML beschäftigt habe. Mal sehen wann die zündende Idee kommt. Erstmal kann meine Mutter die Inhalte füllen, die sollten ja, dank CMS, unabhängig vom Design sein. 
    </content:encoded>

    <pubDate>Sun, 13 Jan 2008 19:34:41 +0100</pubDate>
    <guid isPermaLink="false">http://blog.meersau.de/index.php?/archives/336-guid.html</guid>
    <category>cms</category>
<category>css</category>
<category>domain</category>

</item>

</channel>
</rss>