<?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/"
	>

<channel>
	<title>don't feed the seagulls</title>
	<atom:link href="http://dontfeedtheseagulls.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dontfeedtheseagulls.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Fri, 17 Jul 2009 20:02:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using awk to add new files to svn</title>
		<link>http://dontfeedtheseagulls.com/2009/07/17/using-awk-to-add-new-files-to-svn/</link>
		<comments>http://dontfeedtheseagulls.com/2009/07/17/using-awk-to-add-new-files-to-svn/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 20:02:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FreeBSD]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[awk]]></category>

		<category><![CDATA[shell commands]]></category>

		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=56</guid>
		<description><![CDATA[svn add `svn status &#124; grep "^?" &#124; awk '{print $2 }'`
you can also use grep -v to exclude specific files
svn add `svn status &#124; grep "^?" &#124; awk '{print $2 }' &#124; grep -v prefs.inc.php`
]]></description>
			<content:encoded><![CDATA[<pre>svn add `svn status | grep "^?" | awk '{print $2 }'`</pre>
<p>you can also use grep -v to exclude specific files</p>
<pre>svn add `svn status | grep "^?" | awk '{print $2 }' | grep -v prefs.inc.php`</pre>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/07/17/using-awk-to-add-new-files-to-svn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recursively convert all text files in a directory from Windows EOL to Unix with dos2unix</title>
		<link>http://dontfeedtheseagulls.com/2009/04/10/recursively-convert-all-text-files-in-a-directory-from-windows-eol-to-unix-with-dos2unix/</link>
		<comments>http://dontfeedtheseagulls.com/2009/04/10/recursively-convert-all-text-files-in-a-directory-from-windows-eol-to-unix-with-dos2unix/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 21:36:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FreeBSD]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[dos2unix]]></category>

		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=47</guid>
		<description><![CDATA[find . -type f -exec dos2unix {} \;

]]></description>
			<content:encoded><![CDATA[<blockquote><pre>find . -type f -exec dos2unix {} \;</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/04/10/recursively-convert-all-text-files-in-a-directory-from-windows-eol-to-unix-with-dos2unix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Migrating a RedHat users file to FreeBSD/OpenBSD</title>
		<link>http://dontfeedtheseagulls.com/2009/04/05/migrating-a-redhat-users-file-to-freebsdopenbsd/</link>
		<comments>http://dontfeedtheseagulls.com/2009/04/05/migrating-a-redhat-users-file-to-freebsdopenbsd/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 04:33:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FreeBSD]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=34</guid>
		<description><![CDATA[http://www.openbsd.org/faq/faq9.html#passwd
First, figure out if your Linux password file is shadowed or not.  If it is, install John the Ripper from packages or ports (security/john) and use the unshadow utility that comes with it to merge your passwd and shadow files into one Sixth Edition-style file.
Using your Linux password file, we&#8217;ll call it linux_passwd, you [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.openbsd.org/faq/faq9.html#passwd</p>
<p>First, figure out if your Linux password file is shadowed or not.  If it is, install <a href="http://www.openwall.com/john/">John the Ripper</a> from <a href="http://www.openbsd.org/faq/faq15.html">packages or ports</a> (<tt>security/john</tt>) and use the unshadow utility that comes with it to merge your <tt>passwd</tt> and <tt>shadow</tt> files into one Sixth Edition-style file.</p>
<p>Using your Linux password file, we&#8217;ll call it <tt>linux_passwd</tt>, you need to add in ::0:0 between fields four and seven. <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=awk&amp;sektion=1">awk(1)</a> does this for you.</p>
<blockquote>
<pre># <strong>cat linux_passwd | awk -F : '{printf("%s:%s:%s:%s::0:0:%s:%s:%s\n", \</strong>
&gt; <strong>$1,$2,$3,$4,$5,$6,$7); }' &gt; new_passwd</strong></pre>
</blockquote>
<p>At this point, you want to edit the <tt>new_passwd</tt> file and remove the root and other system entries that are already present in your OpenBSD password file or aren&#8217;t applicable with OpenBSD (all of them). Also, make sure there are no duplicate usernames or user IDs between <tt>new_passwd</tt> and your OpenBSD box&#8217;s <tt>/etc/passwd</tt>.  The easiest way to do this is to start with a fresh <tt>/etc/passwd</tt></p>
<p>.</p>
<blockquote>
<pre># <strong>cat new_passwd &gt;&gt; /etc/master.passwd</strong>
# <strong>pwd_mkdb -p /etc/master.passwd</strong></pre>
</blockquote>
<p>The last step, <tt>pwd_mkdb</tt> is necessary to rebuild the /etc/spwd.db and /etc/pwd.db files.  It also creates a Sixth Edition-style password file (minus encrypted passwords) at /etc/passwd for programs which use it.  OpenBSD uses a stronger encryption for passwords, blowfish, which is very unlikely to be found on any system which uses full Sixth Edition-style password files.  To switch over to this stronger encryption, simply have the users run &#8216;passwd&#8217; and change their password.  The new password they enter will be encrypted with your default setting (usually blowfish unless you&#8217;ve edited /etc/login.conf).  Or, as <em>root</em>, you can run <tt>passwd <em>username</em></tt>.</p>
<p>Also you will want to copy over the groups file. note again, only copy over groups that do not exist in both.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/04/05/migrating-a-redhat-users-file-to-freebsdopenbsd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>convert linux passwd to a FreeBSD one</title>
		<link>http://dontfeedtheseagulls.com/2009/03/31/convert-linux-passwd-to-a-freebsd-one/</link>
		<comments>http://dontfeedtheseagulls.com/2009/03/31/convert-linux-passwd-to-a-freebsd-one/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 20:47:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FreeBSD]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=32</guid>
		<description><![CDATA[cat linux_passwd &#124; awk -F : '{printf("%s:%s:%s:%s::0:0:%s:%s:%s\n", $1,$2,$3,$4,$5,$6,$7); }' &#62; new_passwd
]]></description>
			<content:encoded><![CDATA[<pre>cat linux_passwd | awk -F : '{printf("%s:%s:%s:%s::0:0:%s:%s:%s\n", $1,$2,$3,$4,$5,$6,$7); }' &gt; new_passwd</pre>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/03/31/convert-linux-passwd-to-a-freebsd-one/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Basic pfctl control</title>
		<link>http://dontfeedtheseagulls.com/2009/03/30/basic-pfctl-control/</link>
		<comments>http://dontfeedtheseagulls.com/2009/03/30/basic-pfctl-control/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 21:13:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FreeBSD]]></category>

		<category><![CDATA[pf]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=29</guid>
		<description><![CDATA[
# basic pfctl control
# ==
# Related: http://www.OpenBSD.org
# Last update: Tue Dec 28, 2004
# ==
# Note:
# this document is only provided as a basic overview
# for some common pfctl commands and is by no means
# a replacement for the pfctl and pf manual pages.
#### General PFCTL Commands ####
# pfctl -d       [...]]]></description>
			<content:encoded><![CDATA[<div class="snap_preview">
<p># basic pfctl control<br />
# ==<br />
# Related: http://www.OpenBSD.org<br />
# Last update: Tue Dec 28, 2004<br />
# ==<br />
# Note:<br />
# this document is only provided as a basic overview<br />
# for some common pfctl commands and is by no means<br />
# a replacement for the pfctl and pf manual pages.</p>
<p>#### General PFCTL Commands ####<br />
# pfctl -d                   disable packet-filtering<br />
# pfctl -e                   enable packet-filtering<br />
# pfctl -q                   run quiet<br />
# pfctl -v -v                run even more verbose</p>
<p>#### Loading PF Rules ####<br />
# pfctl -f /etc/pf.conf      load /etc/pf.conf<br />
# pfctl -n -f /etc/pf.conf   parse /etc/pf.conf, but dont load it<br />
# pfctl -R -f /etc/pf.conf   load only the FILTER rules<br />
# pfctl -N -f /etc/pf.conf   load only the NAT rules<br />
# pfctl -O -f /etc/pf.conf   load only the OPTION rules</p>
<p>#### Clearing PF Rules &amp; Counters ####<br />
# pfctl -F all               flush ALL<br />
# pfctl -F rules             flush only the RULES<br />
# pfctl -F queue             flush only queue’s<br />
# pfctl -F nat               flush only NAT<br />
# pfctl -F info              flush all stats that are not part of any rule.<br />
# pfctl -z                   clear all counters<br />
# note: flushing rules do not touch any existing stateful connections</p>
<p>#### Output PF Information ####<br />
# pfctl -s rules             show filter information<br />
# pfctl -v -s rules          show filter information for what FILTER rules hit..<br />
# pfctl -vvsr                show filter information as above and prepend rule numbers<br />
# pfctl -v -s nat            show NAT information, for which NAT rules hit..<br />
# pfctl -s nat -i xl1        show NAT information for interface xl1<br />
# pfctl -s queue             show QUEUE information<br />
# pfctl -s label             show LABEL information<br />
# pfctl -s state             show contents of the STATE table<br />
# pfctl -s info              show statistics for state tables and packet normalization<br />
# pfctl -s all               show everything</p>
<p>#### Maintaining PF Tables ####<br />
# pfctl -t addvhosts -T show                  show table addvhosts<br />
# pfctl -vvsTables                            view global information about all tables<br />
# pfctl -t addvhosts -T add 192.168.1.50      add entry to table addvhosts<br />
# pfctl -t addvhosts -T add 192.168.1.0/16    add a network to table addvhosts<br />
# pfctl -t addvhosts -T delete 192.168.1.0/16 delete nework from table addvhosts<br />
# pfctl -t addvhosts -T flush                 remove all entries from table addvhosts<br />
# pfctl -t addvhosts -T kill                  delete table addvhosts entirely<br />
# pfctl -t addvhosts -T replace -f /etc/addvhosts reload table addvhosts on the fly<br />
# pfctl -t addvhosts -T test 192.168.1.40     find ip address 192.168.1.40 in table addvhosts<br />
# pfctl -T load -f /etc/pf.conf               load a new table definition<br />
# pfctl -t addvhosts -T show -v               output stats for each ip address in table addvhosts<br />
# pfctl -t addvhosts -T zero                  reset all counters for table addvhosts</p></div>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2009/03/30/basic-pfctl-control/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing VMware Server on Ubuntu 8.04 Hardy Heron</title>
		<link>http://dontfeedtheseagulls.com/2008/06/16/installing-vmware-server-on-ubuntu-804-hardy-heron/</link>
		<comments>http://dontfeedtheseagulls.com/2008/06/16/installing-vmware-server-on-ubuntu-804-hardy-heron/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 01:35:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Hardy Heron]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/?p=24</guid>
		<description><![CDATA[I found a great post at MakeTechEasier I changed it a little and posted it.
You will be building kernel specific files so you need to have the proper header files installed for your kernel along with something to compile it.
sudo apt-get install linux-headers-`uname -r` build-essential
sudo apt-get install xinetd gcc-3.4
If you are using 64 bits system, [...]]]></description>
			<content:encoded><![CDATA[<p>I found a great post at <a href="http://maketecheasier.com/installing-vmware-server-in-hardy-heron/2008/04/29" target="_blank">MakeTechEasier</a> I changed it a little and posted it.</p>
<p>You will be building kernel specific files so you need to have the proper header files installed for your kernel along with something to compile it.</p>
<pre>sudo apt-get install linux-headers-`uname -r` build-essential
sudo apt-get install xinetd gcc-3.4</pre>
<p>If you are using 64 bits system, you have to install 32bit compatibility files</p>
<pre>sudo apt-get install ia32-libs</pre>
<p>Download <a href="http://www.vmware.com/download/server/" target="_blank">VMware Server 1.0.6</a></p>
<p>Download the patch file <a href="http://groups.google.com/group/vmkernelnewbies/files" target="_blank">vmware-any-any-update-116.tgz</a></p>
<p>Extract the downloaded files</p>
<pre>tar zxf vmware-any-any-update-116.tgz
tar xzf VMware-server-1.0.6-91891.tar.gz</pre>
<p>Run the VMware Server installer</p>
<pre>cd vmware-server-distrib
sudo ./vmware-install.pl</pre>
<p>You will be prompted to answer some questions. Press <strong>Enter</strong> to select the default answer. When it reaches the point that requires you to run <strong>vmware-config.pl</strong>, type <strong>No</strong>. The installer will exit.  Next, apply the patch</p>
<pre>cd vmware-any-any-update116
sudo ./runme.pl</pre>
<p>This time, press <strong>Enter</strong> for all the questions and enter <strong>Yes</strong> to run the <strong>vmware-comfig.pl</strong>.  Once it has finished compiling, you should now see the VMware console in your <em>Applications-&gt;Other</em>. The first time you run vmware use the console by typing <strong>vmware</strong> in the terminal. If there are any errors it will tell us. If it says it can&#8217;t find some files all we need to do is copy them from the /usr/lib directory.</p>
<pre>sudo cp /usr/lib/libpng12.so.0 /usr/lib/vmware/lib/libpng12.so.0/
sudo cp /lib/libgcc_s.so.1 /usr/lib/vmware/lib/libgcc_s.so.1/</pre>
<p>For 64 bit users</p>
<pre>sudo ln -s /usr/lib32 /usr/l32
sudo sed -i -e ’s/usr\/lib/usr\/l32/g’ /usr/lib32/gtk-2.0/2.10.0/loader-files.d/libgtk2.0-0.loaders
sudo sed -i -e ’s/usr\/lib/usr\/l32/g’ /usr/lib32/libgdk_pixbuf-2.0.so.0.1200.9</pre>
<p>That’s it. Your VMware Server should be working now.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2008/06/16/installing-vmware-server-on-ubuntu-804-hardy-heron/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Realtek ALC888 and Ubuntu Hardy Heron low audio problem</title>
		<link>http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/</link>
		<comments>http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/#comments</comments>
		<pubDate>Sun, 04 May 2008 16:26:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ALC888]]></category>

		<category><![CDATA[ALSA Mixer]]></category>

		<category><![CDATA[Hardy Heron]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/</guid>
		<description><![CDATA[Last night I installed Ubuntu 8.04 and I&#8217;m so impressed. I did the WbUI version. And let me tell you, It was the easiest OS install I have ever done. Everything is great only one problem. My audio was really quiet. I have an Realtek ALC888 chipset. I had to crank my speakers to get [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I installed Ubuntu 8.04 and I&#8217;m so impressed. I did the WbUI version. And let me tell you, It was the easiest OS install I have ever done. Everything is great only one problem. My audio was really quiet. I have an Realtek ALC888 chipset. I had to crank my speakers to get a descent volume.</p>
<p>I found a solution.</p>
<p>Even through I have my speakers plugged into the &#8216;Green&#8217; standard front channel jack Ubuntu thinks it&#8217;s plugged into the side channel.</p>
<ol>
<li> Open up the ALSA mixer[double click on the speaker at the top by the time]</li>
<li>Click on Edit-&gt;Preferences</li>
<li>Check all of the output channels</li>
<li>Turn the volume up on all the devices till you find the right channel(be careful if you have your speakers still cranked or you&#8217;ll soil yourself)</li>
</ol>
<p>Thats it. Easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2008/05/04/realtek-alc888-and-ubuntu-hardy-heron-low-audio-problem/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using OpenSSL to generate a self signed SSL certificate for Apache.</title>
		<link>http://dontfeedtheseagulls.com/2008/03/15/generating-a-self-signed-ssl-certificate/</link>
		<comments>http://dontfeedtheseagulls.com/2008/03/15/generating-a-self-signed-ssl-certificate/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 00:55:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Apache]]></category>

		<category><![CDATA[OpenSSL]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2008/03/15/generating-a-self-signed-ssl-certificate/</guid>
		<description><![CDATA[Originally found at How to create a self-signed Certificate

Generate server key
openssl genrsa -des3 -out server.key 1024

Generate csr
openssl req -new -key server.key -out server.csr

Remove passphase so apache don&#8217;t ask for it on every server start
cp server.key server.key.org
openssl rsa -in server.key.org -out server.key

Create self signed certificate
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt

Copy certificate [...]]]></description>
			<content:encoded><![CDATA[<p>Originally found at <a href="http://www.akadia.com/services/ssh_test_certificate.html" title="How to create a self-signed Certificate">How to create a self-signed Certificate</a></p>
<ol>
<li>Generate server key
<pre>openssl genrsa -des3 -out server.key 1024</pre>
</li>
<li>Generate csr
<pre>openssl req -new -key server.key -out server.csr</pre>
</li>
<li>Remove passphase so apache don&#8217;t ask for it on every server start
<pre>cp server.key server.key.org
openssl rsa -in server.key.org -out server.key</pre>
</li>
<li>Create self signed certificate
<pre>openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt</pre>
</li>
<li>Copy certificate to Apache dir
<pre>cp server.crt /usr/local/apache/conf/ssl.crt
cp server.key /usr/local/apache/conf/ssl.key</pre>
</li>
<li>Configure Apache to use the certificate
<pre>
SSLEngine on
SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt
SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog logs/ssl_request_log
    "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2008/03/15/generating-a-self-signed-ssl-certificate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Make a recursive diff file</title>
		<link>http://dontfeedtheseagulls.com/2007/11/06/make-a-recursive-diff-file/</link>
		<comments>http://dontfeedtheseagulls.com/2007/11/06/make-a-recursive-diff-file/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 17:17:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[diff]]></category>

		<category><![CDATA[shell commands]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2007/11/06/make-a-recursive-diff-file/</guid>
		<description><![CDATA[diff -exclude="*~" -Naur &#60;old_path&#62; &#60;new_path&#62;
]]></description>
			<content:encoded><![CDATA[<pre>diff -exclude="*~" -Naur &lt;old_path&gt; &lt;new_path&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2007/11/06/make-a-recursive-diff-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SquirrelMail SVN command</title>
		<link>http://dontfeedtheseagulls.com/2007/11/06/squirrelmail-svn-command/</link>
		<comments>http://dontfeedtheseagulls.com/2007/11/06/squirrelmail-svn-command/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 17:12:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SquirrelMail]]></category>

		<category><![CDATA[Subversion]]></category>

		<category><![CDATA[shell commands]]></category>

		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://dontfeedtheseagulls.com/2007/11/06/squirrelmail-svn-command/</guid>
		<description><![CDATA[svn co https://squirrelmail.svn.sourceforge.net/svnroot/squirrelmail/branches/SM-1_4-STABLE/squirrelmail squirrelmail
]]></description>
			<content:encoded><![CDATA[<pre>svn co https://squirrelmail.svn.sourceforge.net/svnroot/squirrelmail/branches/SM-1_4-STABLE/squirrelmail squirrelmail</pre>
]]></content:encoded>
			<wfw:commentRss>http://dontfeedtheseagulls.com/2007/11/06/squirrelmail-svn-command/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
