<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>pig-monkey.com - google apps</title><link href="https://pig-monkey.com/" rel="alternate"></link><link href="https://pig-monkey.com/tag/google-apps/feed" rel="self"></link><id>https://pig-monkey.com/</id><updated>2012-12-22T00:00:00-08:00</updated><entry><title>An Ubuntu VPS on Slicehost: Mail</title><link href="https://pig-monkey.com/2008/06/an-ubuntu-vps-on-slicehost-mail/" rel="alternate"></link><published>2008-06-10T00:00:00-07:00</published><updated>2012-12-22T00:00:00-08:00</updated><author><name>Pig Monkey</name></author><id>tag:pig-monkey.com,2008-06-10:/2008/06/an-ubuntu-vps-on-slicehost-mail/</id><summary type="html">&lt;p&gt;&lt;em&gt;As &lt;a href="http://pig-monkey.com/2008/06/09/a-move-to-slicehost/"&gt;mentioned previously&lt;/a&gt;, I&amp;rsquo;ve recently moved this domain over to &lt;a href="http://www.slicehost.com/"&gt;Slicehost&lt;/a&gt;. What follows is Part Three of a guide, compiled from my notes, to setting up an Ubuntu Hardy VPS. See also &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-basic-setup"&gt;Part One&lt;/a&gt;, &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server"&gt;Part Two&lt;/a&gt;, and &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-wordpress"&gt;Part Four&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Last week I &lt;a href="http://pig-monkey.com/2008/06/09/google-apps/"&gt;moved this domain&amp;rsquo;s email to Google …&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;em&gt;As &lt;a href="http://pig-monkey.com/2008/06/09/a-move-to-slicehost/"&gt;mentioned previously&lt;/a&gt;, I&amp;rsquo;ve recently moved this domain over to &lt;a href="http://www.slicehost.com/"&gt;Slicehost&lt;/a&gt;. What follows is Part Three of a guide, compiled from my notes, to setting up an Ubuntu Hardy VPS. See also &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-basic-setup"&gt;Part One&lt;/a&gt;, &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server"&gt;Part Two&lt;/a&gt;, and &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-wordpress"&gt;Part Four&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Last week I &lt;a href="http://pig-monkey.com/2008/06/09/google-apps/"&gt;moved this domain&amp;rsquo;s email to Google Apps&lt;/a&gt;. Slicehost has &lt;a href="http://articles.slicehost.com/2007/10/25/creating-mx-records-for-google-apps"&gt;a guide to creating MX records for Google Apps&lt;/a&gt;. I have a couple other domains with Google Apps, along with a couple domains hosted locally with addresses that simply forward to my primary, Google hosted, email. I also need to send mail from the server. To accomplish all of this, I use &lt;a href="http://www.postfix.org/"&gt;Postfix&lt;/a&gt;.&lt;/p&gt;
&lt;!--more--&gt;

&lt;p&gt;Installing Postfix is a simple matter. Telnet is used quite a bit for testing, so I install that too:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ sudo aptitude install postfix telnet mailutils
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The Postfix setup will ask how it should be installed &amp;ndash; we want the &amp;ldquo;Internet Site&amp;rdquo; option &amp;ndash; and then ask you for your fully qualified domain name.&lt;/p&gt;
&lt;p&gt;Done? Let&amp;rsquo;s make sure Postfix is running:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ telnet localhost &lt;span class="m"&gt;25&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;If it&amp;rsquo;s working Postfix should return:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;Trying 127.0.0.1...
Connected to localhost.
Escape character is &amp;#39;^]&amp;#39;.
220 localhost ESMTP Postfix (Ubuntu)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Let&amp;rsquo;s send a test message from root to the user account &lt;code&gt;user&lt;/code&gt; (replace that with whatever your standard user is):&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="n"&gt;ehlo&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;localhost&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;span class="n"&gt;mail&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;from&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;root&lt;/span&gt;&lt;span class="nv"&gt;@localhost&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;span class="n"&gt;rcpt&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;to&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;user&lt;/span&gt;&lt;span class="nv"&gt;@localhost&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;span class="k"&gt;data&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;span class="nl"&gt;Subject&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;Test&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;span class="n"&gt;Hi&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;is&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;this&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;thing&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;on&lt;/span&gt;&lt;span class="vm"&gt;?&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;span class="n"&gt;quit&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Now, check your email as &lt;code&gt;user&lt;/code&gt; by running &lt;code&gt;mail&lt;/code&gt;. See the message? Good.&lt;/p&gt;
&lt;p&gt;Open &lt;code&gt;/etc/postfix/main.cf&lt;/code&gt; to make sure that Postfix knows what domains it&amp;rsquo;s receiving mail for. To do this, edit the &lt;code&gt;mydestination&lt;/code&gt; variable to include all the proper domains. For me, the name of my server looks like server.mydomain.com. I want Postfix to accept mail for that domain, but not for mydomain.com (since that&amp;rsquo;s being handled by Google Apps), so mine looks like:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;mydestination = server.mydomain.com, localhost.mydomain.com , localhost
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Restart Postfix if you made any changes:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ sudo /etc/init.d/postfix restart
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Right. Now let&amp;rsquo;s send another test. Notice this time we&amp;rsquo;re using full domain names, instead of localhost:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt; 1&lt;/span&gt;
&lt;span class="normal"&gt; 2&lt;/span&gt;
&lt;span class="normal"&gt; 3&lt;/span&gt;
&lt;span class="normal"&gt; 4&lt;/span&gt;
&lt;span class="normal"&gt; 5&lt;/span&gt;
&lt;span class="normal"&gt; 6&lt;/span&gt;
&lt;span class="normal"&gt; 7&lt;/span&gt;
&lt;span class="normal"&gt; 8&lt;/span&gt;
&lt;span class="normal"&gt; 9&lt;/span&gt;
&lt;span class="normal"&gt;10&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ telnet server.mydomain.com &lt;span class="m"&gt;25&lt;/span&gt;

ehlo server.mydomain.com
mail from: root@server.mydomain.com
rcpt to: user@server.mydomain.com
data
Subject: domains!
woot... I think this works.
.
quit
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Working? Good.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s test from the outside. The first step is to open up the correct ports in the firewall. Assuming you have iptables configured in the way the &lt;a href="http://articles.slicehost.com/2007/11/6/ubuntu-gutsy-setup-page-1"&gt;Slicehost article suggests&lt;/a&gt;, open up your &lt;code&gt;/etc/iptables.test.rules&lt;/code&gt; and add the following:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;# Allow mail server connections
-A INPUT -p tcp -m state --state NEW --dport 25 -j ACCEPT
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Now let&amp;rsquo;s apply the rules:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ sudo iptables-restore &amp;lt; /etc/iptables.test.rules
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Make sure everything looks dandy:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ sudo iptables -L
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;If it meets your fancy, save the rules:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;
&lt;span class="normal"&gt;2&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ sudo -i
$ iptables-save &amp;gt; /etc/iptables.up.rules
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;And now, from your local computer, let&amp;rsquo;s test it out.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt; 1&lt;/span&gt;
&lt;span class="normal"&gt; 2&lt;/span&gt;
&lt;span class="normal"&gt; 3&lt;/span&gt;
&lt;span class="normal"&gt; 4&lt;/span&gt;
&lt;span class="normal"&gt; 5&lt;/span&gt;
&lt;span class="normal"&gt; 6&lt;/span&gt;
&lt;span class="normal"&gt; 7&lt;/span&gt;
&lt;span class="normal"&gt; 8&lt;/span&gt;
&lt;span class="normal"&gt; 9&lt;/span&gt;
&lt;span class="normal"&gt;10&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ telnet server.mydomain.com &lt;span class="m"&gt;25&lt;/span&gt;

ehlo server.mydomain.com
mail from: root@server.mydomain.com
rcpt to: user@server.mydomain.com
data
Subject: remote connection &lt;span class="nb"&gt;test&lt;/span&gt;
Hello, you.
.
quit
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Now check your mail on the mail server as before. Once again, everything should be working.&lt;/p&gt;
&lt;p&gt;Now we need to setup a virtual domain. Remember, I don&amp;rsquo;t want any virtual users. I only want aliases at a virtual domain to forward to my primary email address. That makes this relatively simple. (Be very, very happy. You should have seen this guide before, when I was still hosting virtual domains with virtual users!) Open up &lt;code&gt;/etc/postfix/main.cf&lt;/code&gt; and add the following:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;virtual_alias_domains = myvirtualdomain.com
virtual_alias_maps = hash:/etc/postfix/virtual
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Create the &lt;code&gt;/etc/postfix/virtual&lt;/code&gt; file referenced above and add the aliases:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="k"&gt;alias&lt;/span&gt;&lt;span class="nv"&gt;@myvirtualdomain&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;com&lt;/span&gt;&lt;span class="w"&gt;       &lt;/span&gt;&lt;span class="k"&gt;user&lt;/span&gt;&lt;span class="nv"&gt;@mydomain&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;com&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Turn it into a database:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;
&lt;span class="normal"&gt;2&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ &lt;span class="nb"&gt;cd&lt;/span&gt; /etc/postfix
$ sudo postmap virtual
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Restart Postfix:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ sudo /etc/init.d/postfix restart
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Attempt to send an email to the new alias at the virtual domain:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;table class="highlighttable"&gt;&lt;tr&gt;&lt;td class="linenos"&gt;&lt;div class="linenodiv"&gt;&lt;pre&gt;&lt;span class="normal"&gt;1&lt;/span&gt;
&lt;span class="normal"&gt;2&lt;/span&gt;
&lt;span class="normal"&gt;3&lt;/span&gt;
&lt;span class="normal"&gt;4&lt;/span&gt;
&lt;span class="normal"&gt;5&lt;/span&gt;
&lt;span class="normal"&gt;6&lt;/span&gt;
&lt;span class="normal"&gt;7&lt;/span&gt;
&lt;span class="normal"&gt;8&lt;/span&gt;
&lt;span class="normal"&gt;9&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;div&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;$ telnet server.mydomain.com &lt;span class="m"&gt;25&lt;/span&gt;
ehlo server.mydomain.com
mail from: root@server.mydomain.com
rcpt to: alias@myvirtualdomain.com
data
Subject: virtual domain &lt;span class="nb"&gt;test&lt;/span&gt;
I hope this works!
.
quit
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The message should now be in your primary email inbox!&lt;/p&gt;
&lt;p&gt;As long as we&amp;rsquo;re setting up forwards, let&amp;rsquo;s forward system account mail to somewhere where it&amp;rsquo;ll actually get read. To do so, create a &lt;code&gt;~/.forward&lt;/code&gt; file with the following contents:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="k"&gt;user&lt;/span&gt;&lt;span class="nv"&gt;@mydomain&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;com&lt;/span&gt;&lt;span class="w"&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Let&amp;rsquo;s also create a &lt;code&gt;/root/.forward&lt;/code&gt;, so that roots mail gets forwarded to my local account (where it is then forwarded to my primary email). Root&amp;rsquo;s forward would simply read:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;user
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Next up: &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-wordpress"&gt;install Wordpress with rewrites&lt;/a&gt;. (Previously, we did a &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-basic-setup"&gt;basic setup&lt;/a&gt; and &lt;a href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server"&gt;installed a web server&lt;/a&gt;.)&lt;/p&gt;</content><category term="general"></category><category term="vps"></category><category term="postfix"></category><category term="linux"></category><category term="howto"></category><category term="slicehost"></category><category term="ubuntu"></category><category term="google apps"></category></entry><entry><title>Google Apps</title><link href="https://pig-monkey.com/2008/06/google-apps/" rel="alternate"></link><published>2008-06-09T00:00:00-07:00</published><updated>2012-09-15T00:00:00-07:00</updated><author><name>Pig Monkey</name></author><id>tag:pig-monkey.com,2008-06-09:/2008/06/google-apps/</id><summary type="html">&lt;p&gt;Last week I outsourced my email to &lt;a href="http://google.com/a/"&gt;Google Apps&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For years, my paranoia has prevented me from moving my mail. I never liked the idea of Google parsing through each message for keywords to generate ads. In fact, I usually don&amp;rsquo;t even allow Google to cookie me. But now …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Last week I outsourced my email to &lt;a href="http://google.com/a/"&gt;Google Apps&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For years, my paranoia has prevented me from moving my mail. I never liked the idea of Google parsing through each message for keywords to generate ads. In fact, I usually don&amp;rsquo;t even allow Google to cookie me. But now most of my regular email contacts have started using GPG. Enough of my mail is now encrypted that I&amp;rsquo;m comfortable with Google.&lt;/p&gt;
&lt;p&gt;I haven&amp;rsquo;t decided yet if I prefer the Gmail interface or Thunderbird. In the web interface, I use &lt;a href="http://getfiregpg.org/"&gt;FireGPG&lt;/a&gt; for signing and d/encrypting, which of courses places signatures inline. Since I&amp;rsquo;m jumping back and forth between that and Thunderbird/Enigmail, in order to maintain some measure of consistency, I&amp;rsquo;ve told Enigmail to sign inline instead of using PGP/Mime. It is a bit annoying, and will probably frighten the sheeple, but that&amp;rsquo;s the way it is for now.&lt;/p&gt;
&lt;p&gt;So, please encrypt all email. And if you don&amp;rsquo;t, be aware that Google is reading it.&lt;/p&gt;</content><category term="general"></category><category term="gpg"></category><category term="google apps"></category><category term="crypto"></category></entry></feed>