<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Tim's Technical Website (software)</title><link>http://www.tbruce.com/</link><description></description><language>en</language><lastBuildDate>Tue, 26 Jun 2018 05:52:20 GMT</lastBuildDate><generator>http://getnikola.com/</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><item><title>Getting Started with Citadel</title><link>http://www.tbruce.com/posts/getting_started_with_citadel.html</link><dc:creator>Timothy J Bruce</dc:creator><description>&lt;div&gt;&lt;p&gt;The appliance obtains its IP via DHCP. The virtual console will display it at the top of the screen:&lt;/p&gt;
&lt;pre class="code literal-block"&gt;
Citadel virtual appliance - (C) 2007 http://www.citadel.org
To log in to Citadel, point your web browser to http://192.168.1.22
&lt;/pre&gt;
&lt;p&gt;Simply point your web browser there and get started. The default administraor has the username Citadel and password citadel. Obviously you will want to change the default once you log in. After you have logged in once with webcit, you can connect to that account with your favorite mail client via POP, IMAP or SMTP. A more thorough Getting Started may give you aditional information.&lt;/p&gt;
&lt;p&gt;&lt;a class="reference external" href="http://www.citadel.org/doku.php/installation:appliance"&gt;http://www.citadel.org/doku.php/installation:appliance&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><category>appliance</category><category>citadel</category><category>linux</category><category>software</category><guid>http://www.tbruce.com/posts/getting_started_with_citadel.html</guid><pubDate>Wed, 22 Apr 2009 02:27:00 GMT</pubDate></item><item><title>Plugins for Squirrel Mail</title><link>http://www.tbruce.com/posts/plugin_for_squirrel.html</link><dc:creator>Timothy J Bruce</dc:creator><description>&lt;div&gt;&lt;p&gt;Adding a Squirrelmail plugin is relatively simple. This sample installs the "change_sqlpass" plugin (which requires the "compat" (or compatibility) plugin. First copy the necessary plugins to the server you are installing them onto. A command like:&lt;/p&gt;
&lt;pre class="code bash literal-block"&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;scp plugin timbruce@server:~/download/squirrelmail
&lt;/pre&gt;
&lt;p&gt;Depending on how it's installed, you need to assume the correct user to configure the plugin.&lt;/p&gt;
&lt;pre class="code bash literal-block"&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;sudo su -
&lt;/pre&gt;
&lt;p&gt;On Ubuntu, you need to change to the following directory:&lt;/p&gt;
&lt;pre class="code bash literal-block"&gt;
&lt;span class="c"&gt;# cd /usr/share/squirrelmail/plugins&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;Then execute the following command:&lt;/p&gt;
&lt;pre class="code bash literal-block"&gt;
&lt;span class="c"&gt;# tar -xzvf compatibility-2.0.9-1.0.tar.gz
# tar -xzvf change_sqlpass-3.3-1.2.tar.gz&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;Detemine which version of SquirrelMail you are running (looking at the login page will help). I'm using Ubuntu version 1.4.10a, so I patch using v1.4. Now I can install compatibility using the following command:&lt;/p&gt;
&lt;pre class="code bash literal-block"&gt;
&lt;span class="c"&gt;# cd /usr/share/squirrelmail/plugins/compatibility/
# patch -p0 &amp;lt; patches/compatibility_patch-1.4.10.diff&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;After this, configure SquirrelMail.&lt;/p&gt;
&lt;pre class="code bash literal-block"&gt;
&lt;span class="c"&gt;# cd ../config
# ./conf.pl&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;Go to #8 (Plugins) and install change_sqlpass.  (NOTE: I also need to update the plugins/change_sqlpass/config.php file with the appropriate parameters to allow it to update the database.)&lt;/p&gt;
&lt;p&gt;Enjoy&lt;/p&gt;&lt;/div&gt;</description><category>email</category><category>linux</category><category>software</category><category>squirrel</category><guid>http://www.tbruce.com/posts/plugin_for_squirrel.html</guid><pubDate>Tue, 13 May 2008 02:03:00 GMT</pubDate></item><item><title>Possible K3B Issue(s)</title><link>http://www.tbruce.com/posts/possible_k3b_issues.html</link><dc:creator>Timothy J Bruce</dc:creator><description>&lt;div&gt;&lt;p&gt;I recently ran into a problem where I was unable to successfully burn a DVD (Digital Video Disk) .ISO file. (NOTE: Some documentation may refer to a DVD as a Digital Versatile Disk instead of a Digital Video Disk. Both are correct. The term Digital Video Disk is more commonly used because it is the format for watching movies.) For those who may not be aware, an .ISO file is an image of a data CD (Compact Disk) or DVD.&lt;/p&gt;
&lt;p&gt;At any point, multiple burns of the same image (.ISO) on different computers with different DVD writers all resulted in the same failure. Even though K3B reported the burn (creation of the new DVD) as successful, I was not able to use the DVD successfully in another system. I was able to verify the issue by using a program called md5sum that generates a unique identifier based upon the contents of the DVD (or files) it is checking. The MD5SUM (the number) for the original download did not match the number for the new DVD on any one of the 5 copies I created. In effect, these failures caused me to burn "coasters" (since that was all the DVDs were good for). Looking at some other websites, I was able to piece some information together. While the documentation is sporadic, and this error may be unique to creating DVDs, I found that using the following options in K3B allowed me to successfully. I added the options to the growisofs command: &lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;-use-the-force-luke=dao&lt;/span&gt; &lt;span class="pre"&gt;-dvd-compat&lt;/span&gt;&lt;/tt&gt; Hopefully this will solve anyone elses issues. And as I get more information, I'll try to update this page.&lt;/p&gt;&lt;/div&gt;</description><category>linux</category><category>software</category><guid>http://www.tbruce.com/posts/possible_k3b_issues.html</guid><pubDate>Fri, 01 Jun 2007 05:32:00 GMT</pubDate></item></channel></rss>