<?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>Cold Chicken &#187; Internet</title>
	<atom:link href="http://smux.net/blog/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://smux.net/blog</link>
	<description></description>
	<lastBuildDate>Fri, 26 Feb 2010 03:51:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using Google Apps as default mail client in Linux (Gnome)</title>
		<link>http://smux.net/blog/2009/02/08/using-google-apps-as-default-mail-client-in-linux-gnome/</link>
		<comments>http://smux.net/blog/2009/02/08/using-google-apps-as-default-mail-client-in-linux-gnome/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 17:05:46 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[google apps]]></category>

		<guid isPermaLink="false">http://smux.net/blog/?p=46</guid>
		<description><![CDATA[Ok, pretty simple. I had a couple of machines where I wanted to keep the installation base to a minimum, so WebMail was a natural choice. I neded to be able to send mails when clicking mail links everywhere in Firefox or other application, so we need to tell Gnome that Firefox is it the [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, pretty simple. I had a couple of machines where I wanted to keep the installation base to a minimum, so WebMail was a natural choice.</p>
<p>I neded to be able to send mails when clicking mail links everywhere in Firefox or other application, so we need to tell Gnome that Firefox is it the default mail client.</p>
<p>So I created the following shell script, which I placed in <code>/usr/local/bin</code>:</p>
<blockquote><pre>#!/bin/bash

DOMAIN=example.com
FIREFOX=/usr/bin/firefox

if [[ "" != "$1" ]]; then
  SEND="?extsrc=mailto&amp;url=$1"
fi

URL=https://mail.google.com/a/${DOMAIN}/${SEND}

if (pidof $FIREFOX); then
  $FIREFOX -remote "openurl($URL, new-tab)"
else
  $FIREFOX $URL
fi</pre>
</blockquote>
<p>You must replace <em>&#8220;example.com&#8221;</em> with your own domain.</p>
<p>This script opens a new tab in Firefox, loading Google Apps Mail directly. If Firefox is not yet running, it starts a new instance. If you provide a <code>mailto:</code> URL in the command line, it opens the mail composition section. If no URL is provided, it opens the regular Inbox view.</p>
<p>Now, we must tell Gnome to use this script as the default mail client. Simply open the <strong>Preferred Applications</strong> dialog in the <strong>System/Preferences</strong> menu. In the <strong>Mail Client</strong> section, select <strong>Custom</strong> and type the name of the script we just created in the <strong>Command</strong> field, followed by <em>&#8220;%s&#8221;</em>.</p>
<div id="attachment_50" class="wp-caption alignnone" style="width: 160px"><a href="/blog/wp-content/uploads/2009/02/preferred.png"><img src="/blog/wp-content/uploads/2009/02/preferred-150x150.png" alt="Preferred Applications window" title="Preferred Applications window" width="150" height="150" class="size-thumbnail wp-image-50" /></a><p class="wp-caption-text">Preferred Applications window</p></div>
<p>That&#8217;s it. It should be working now.</p>
<p>One last warning, tough. If you&#8217;re not logged in Google Apps, you will get the username/password dialog, and then you must click the e-mail address link again, in order to send a message.</p>
<p><strong>Edit:</strong> you must verify if Firefox is running or not and start a new instance if it&#8217;s not. Changed the code accordingly.</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2009/02/08/using-google-apps-as-default-mail-client-in-linux-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Gears and Firefox 3</title>
		<link>http://smux.net/blog/2008/06/10/google-gears-and-firefox-3/</link>
		<comments>http://smux.net/blog/2008/06/10/google-gears-and-firefox-3/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 13:06:01 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gears]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://smux.net/blog/2008/06/10/google-gears-and-firefox-3/</guid>
		<description><![CDATA[Seems like Google has finally updated their Gears Firefox extension to work with Firefox 3. Nice.]]></description>
			<content:encoded><![CDATA[<p>Seems like Google has finally updated their <a title="Google Gears" href="http://gears.google.com/">Gears</a> Firefox extension to work with Firefox 3.</p>
<p>Nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2008/06/10/google-gears-and-firefox-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>reCAPTCHA Mailhide</title>
		<link>http://smux.net/blog/2008/04/20/recaptcha-mailhide/</link>
		<comments>http://smux.net/blog/2008/04/20/recaptcha-mailhide/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 19:02:43 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[recaptcha]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://smux.net/blog/?p=25</guid>
		<description><![CDATA[«Tired of spam? reCAPTCHA Mailhide helps you protect your inbox by asking people to solve a reCAPTCHA before they can view your email address.» A nice, simple, smart and useful tool from the guys at reCAPTCHA: reCAPTCHA Mailhide. Test it here with my e-mail address: s&#8230;@smux.net (click the dots before the @).]]></description>
			<content:encoded><![CDATA[<p>«Tired of spam? reCAPTCHA Mailhide helps you protect your inbox by asking people to solve a reCAPTCHA before they can view your email address.»</p>
<p>A nice, simple, smart and useful tool from the guys at <a title="reCAPTCHA: read books, fight spam" href="http://recaptcha.net/">reCAPTCHA</a>: reCAPTCHA <a title="reCAPTCHA Mailhide" href="http://mailhide.recaptcha.net/">Mailhide</a>.</p>
<p>Test it here with my e-mail address: s<a title="Reveal this e-mail address" onclick="window.open('http://mailhide.recaptcha.net/d?k=01UrXonpXiUk_yXaOgnMv5Cg==&amp;c=6BsjB67zUSGyqWMDoV02gQ==', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" href="http://mailhide.recaptcha.net/d?k=01UrXonpXiUk_yXaOgnMv5Cg==&amp;c=6BsjB67zUSGyqWMDoV02gQ==">&#8230;</a>@smux.net (click the dots before the @).</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2008/04/20/recaptcha-mailhide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Youtube is down</title>
		<link>http://smux.net/blog/2008/02/24/youtube-is-down/</link>
		<comments>http://smux.net/blog/2008/02/24/youtube-is-down/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 21:02:56 +0000</pubDate>
		<dc:creator>Sena</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[ip addressing]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://smux.net/blog/2008/02/24/youtube-is-down/</guid>
		<description><![CDATA[Youtube seems to be down for a while&#8230; One may wonder what is happening, but the OpenDNS guys seem to know what really happened. Hah&#8230; Update: the whole story&#8230;]]></description>
			<content:encoded><![CDATA[<p>Youtube seems to be down for a while&#8230;</p>
<p>One may <a href="http://mentepositiva.wordpress.com/2008/02/24/youtube-em-baixo/">wonder</a> what is happening, but the <a href="http://www.opendns.com/" title="OpenDNS">OpenDNS</a> guys seem to know <a href="http://system.opendns.com/2008/02/24/58/">what really happened</a>.</p>
<p>Hah&#8230;</p>
<p><strong>Update:</strong> <a href="http://blogs.zdnet.com/threatchaos/?p=547">the whole story</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://smux.net/blog/2008/02/24/youtube-is-down/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
