<?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>I Can Has Linux? &#187; evolution</title>
	<atom:link href="http://icanhaslinux.com/category/evolution/feed/" rel="self" type="application/rss+xml" />
	<link>http://icanhaslinux.com</link>
	<description>Invisible Patent Infringement!</description>
	<lastBuildDate>Mon, 29 Aug 2011 13:37:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Howto: Random E-mail Signature in Evolution</title>
		<link>http://icanhaslinux.com/2007/10/18/howto-random-e-mail-signature-in-evolution/</link>
		<comments>http://icanhaslinux.com/2007/10/18/howto-random-e-mail-signature-in-evolution/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 17:32:16 +0000</pubDate>
		<dc:creator>LightningCrash</dc:creator>
				<category><![CDATA[evolution]]></category>

		<guid isPermaLink="false">http://icanhaslinux.com/2007/10/18/howto-random-e-mail-signature-in-evolution/</guid>
		<description><![CDATA[I include Latin phrases in my e-mail signature at work. It&#8217;s a fun little thing I do just to make people interested. So I decided to make a signature that would include a random Latin phrase in every e-mail I send. Thankfully, Evolution makes this easy. First, I make a text file which I call [...]]]></description>
			<content:encoded><![CDATA[<p>I include Latin phrases in my e-mail signature at work. It&#8217;s a fun little thing I do just to make people interested.</p>
<p>So I decided to make a signature that would include a random Latin phrase in every e-mail I send.  Thankfully, Evolution makes this easy.</p>
<p>First, I make a text file which I call sigquotes.txt , and stash it in my home directory, under a folder for personal items. I put one quote per line.</p>
<p>Next, I have to write a little ditty to grab a random line from that file and output the results.  I used PHP for this, but almost anything could have worked. I dump the following into sigrand.php :<br />
<code>&lt;?<br />
$quoteFile = "/home/icanhaslinux/personal/sigquotes.txt";</code></p>
<p><code>$fp = fopen($quoteFile, "r");<br />
$content = fread($fp, filesize($quoteFile));<br />
$quotes = explode("\n",$content);<br />
fclose($fp);</code></p>
<p><code>srand((double)microtime()*1000000);<br />
$index = (rand(1, sizeof($quotes)) - 1);</code></p>
<p><code>echo "________&lt;br&gt;LightningCrash&lt;br&gt;Resident Unix Witchdoctor&lt;br&gt;&lt;br&gt;";<br />
echo $quotes[$index] . "&lt;br&gt;";<br />
?&gt;</code></p>
<p>Easy enough. I had problems getting the php itself to run as a script, so I had to make another short script to launch the PHP file. I put the following into sigrand.sh :<br />
<code><br />
/usr/bin/php5-cgi -q /home/icanhaslinux/personal/sigrand.php<br />
</code></p>
<p>I <em>chmod +x sigrand.sh</em> and go on my way to the next step.</p>
<p>I fire up Evolution, go to Edit-&gt;Preferences. I go to Composer Preferences and click on Signatures. Then I click on the &#8220;Add Script&#8221; button, name it Random Latin, navigate to /home/icanhaslinux/personal, and select sigrand.sh as my signature script.</p>
<p>That part is done. Now to make it default for my outgoing e-mail. From the Preferences page, I click edit on my e-mail account. On this page, I have a drop-down box where I can select my signature for this account. I select Random Latin, of course. I then click OK and Close.</p>
<p>Now, to test it out, just fire up a new e-mail.</p>
<p>Until next time!<br />
-LightningCrash</p>
<p>EDIT:   It&#8217;s been requested that I make clear what license this code is issued under. I consider the code snippets on this article to be public domain and not subject to licensing. Use the code in this article as you see fit.</p>
]]></content:encoded>
			<wfw:commentRss>http://icanhaslinux.com/2007/10/18/howto-random-e-mail-signature-in-evolution/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting Evolution mail into Gmail</title>
		<link>http://icanhaslinux.com/2007/08/24/getting-evolution-mail-into-gmail/</link>
		<comments>http://icanhaslinux.com/2007/08/24/getting-evolution-mail-into-gmail/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 17:24:00 +0000</pubDate>
		<dc:creator>LightningCrash</dc:creator>
				<category><![CDATA[evolution]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://icanhaslinux.com/2007/08/24/getting-evolution-mail-into-gmail/</guid>
		<description><![CDATA[Recently, I got into the Gmail kick and decided to get all of my POP e-mail accounts pointing to Gmail. The search functionality just really made it worthwhile. However, I was posed with a problem: I had almost 2 years worth of e-mail in Evolution. How do I get my Evolution Inbox to the land [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I got into the Gmail kick and decided to get all of my POP e-mail accounts pointing to Gmail. The search functionality just really made it worthwhile.</p>
<p>However, I was posed with a problem: I had almost 2 years worth of e-mail in Evolution. How do I get my Evolution Inbox to the land of Gmail? (Oddly enough, a lot of this e-mail went from Outlook 2003 -&gt; Thunderbird for Windows -&gt; Evolution)</p>
<p>Fortunately, Evolution makes this easy for sysadmin types. Evolution will export e-mail in mbox format.</p>
<p>In Evolution, you&#8217;ll want to dump all of your e-mail back into one folder, if you had filters that sorted it to hell and back. Then, you&#8217;ll want to hit Select All, and then File-&gt;Save Message. Name it something meaningful, and add .mbox on the end if you wish. I compressed the little booger into a tarball and then gzipped it.</p>
<p>Now on my e-mail server, which runs Qpopper and Exim, I made a new e-mail account. I uploaded the mbox archive to my home directory on my mail server, extracted it, and shoved it over to the /var/spool/mail directory in place of the original spool file for the new account I made.</p>
<p>Then I just pointed Gmail at the new account. Presto! I have all of my old e-mail in Gmail.</p>
<p>I really can&#8217;t believe I didn&#8217;t think of it before.</p>
<p>I&#8217;m considering offering a free service where you can upload an mbox file into a webapp, and then a temporary POP account from that mbox will be made just so you can pull the e-mail in to Gmail or etc.</p>
<p>Leave me your thoughts in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://icanhaslinux.com/2007/08/24/getting-evolution-mail-into-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

