<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Robby on Rails: Gmail for your domain</title>
    <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>thoughts.sort_by{|t| t[:topic]}.collect </description>
    <item>
      <title>Gmail for your domain</title>
      <description>&lt;p&gt;Last night I received my invitation for Google&amp;#8217;s domain hosting. This gives me a gmail account for a custom domain name along with the integrated Google Calendar and Chat.&lt;/p&gt;


	&lt;p&gt;On one of my non-work projects, we&amp;#8217;re now using this to share our calendars and host email.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.flickr.com/photos/robbyrussell/230949709/" title="Photo Sharing"&gt;&lt;img src="http://static.flickr.com/64/230949709_a94ba5e116_m.jpg" width="240" height="177" alt="pathr.com gmail" /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Thanks Google!&lt;/p&gt;


	&lt;p&gt;You can sign up for your &lt;a href="https://www.google.com/a/"&gt;invite here&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Fri, 01 Sep 2006 10:22:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:27c464e5-c630-4122-a9b3-65d00cd4b287</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain</link>
      <category>google</category>
      <category>gmail</category>
      <category>pathr</category>
    </item>
    <item>
      <title>"Gmail for your domain" by Ilya Grigorik</title>
      <description>&lt;p&gt;Hmm, looks interesting! How transparent is it? Can outside users tell that you use GMail servers? (Outside of sending queries for your MX records of course..)&lt;/p&gt;


	&lt;p&gt;Cheers,
Ilya&lt;/p&gt;</description>
      <pubDate>Mon, 04 Sep 2006 19:29:30 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:a25fb965-7c7d-48ae-b5f1-4555b73b5853</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21953</link>
    </item>
    <item>
      <title>"Gmail for your domain" by evan</title>
      <description>&lt;p&gt;Nevermind, FlashHaterLap helped me on IRC. You are supposed to only use &amp;#8220;domain.com&amp;#8221;, anything else for the host will not work.&lt;/p&gt;</description>
      <pubDate>Sat, 02 Sep 2006 21:04:17 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:d5f64bbf-3376-42a7-b3b0-abf94410c270</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21951</link>
    </item>
    <item>
      <title>"Gmail for your domain" by evan</title>
      <description>&lt;p&gt;It seems like it let me instantly sign up! Maybe because I already have an analytics account, I dunno.&lt;/p&gt;


	&lt;p&gt;Anyway, I am confused as to how to add the DNS records to everyDNS. Are the Google hosts supposed to be the &amp;#8220;host&amp;#8221; field, or the &amp;#8220;value&amp;#8221; field? And what goes in the other field? Right now I have it set to:&lt;/p&gt;


&lt;pre&gt;
     host      type      value        MX ttl
mail.domain.com MX ASPMX.L.GOOGLE.COM 1 3600
mail.domain.com MX ALT1.ASPMX.L.GOOGLE.COM 5 3600
&lt;/pre&gt;

	&lt;p&gt;but I suspect this is wrong.&lt;/p&gt;</description>
      <pubDate>Sat, 02 Sep 2006 00:48:18 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:0f328443-3ff7-466c-a209-9f49333e6b4a</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21950</link>
    </item>
    <item>
      <title>"Gmail for your domain" by Juan Pablo</title>
      <description>&lt;p&gt;You can use this with ActionMailer? how?&lt;/p&gt;</description>
      <pubDate>Fri, 01 Sep 2006 20:36:58 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:5d83ee59-a046-4c6a-844f-97acc847590b</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21948</link>
    </item>
    <item>
      <title>"Gmail for your domain" by Luis Lavena</title>
      <description>&lt;p&gt;Ok, got my answers:&lt;/p&gt;


	&lt;p&gt;An MX record and a CNAME record cannot coexist at the same place in the DNS. That is, a name cannot be both a mail domain and an alias to something that isn&amp;#8217;t a mail domain.&lt;/p&gt;


	&lt;p&gt;That&amp;#8217;s why they exist. Note that you should never redefine the zone itself with a CNAME. That constitutes an illegal combination of DNS RR&amp;#8217;s. Define an A record for coffee.com and a CNAME record for (for example) &lt;a href="http://www.coffee.com" rel="nofollow"&gt;www.coffee.com&lt;/a&gt; that refers to coffee.com, as follows:&lt;/p&gt;


	&lt;pre&gt;&lt;code&gt;coffee.com. IN A 192.168.0.1
&lt;a href="http://www.coffee.com" rel="nofollow"&gt;www.coffee.com&lt;/a&gt;. IN CNAME coffee.com.&lt;/code&gt;&lt;/pre&gt;


	&lt;p&gt;Need to change my dns records ;-)&lt;/p&gt;


	&lt;p&gt;Sorry for the noise :-D&lt;/p&gt;</description>
      <pubDate>Fri, 01 Sep 2006 12:16:09 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:796dbdf6-6705-463e-abe4-8587d49e6177</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21932</link>
    </item>
    <item>
      <title>"Gmail for your domain" by Luis Lavena</title>
      <description>&lt;p&gt;Robby,&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m using Sitelutions (part of a old account I have with them).&lt;/p&gt;


	&lt;p&gt;This domain just redirects to my .com one. I didn&amp;#8217;t want to brake the existing mail system.&lt;/p&gt;


	&lt;p&gt;Also using subdomains for dyndns.&lt;/p&gt;


	&lt;p&gt;If I add a CNAME to my root domain (not www. subdomain) the mx records no longer &amp;#8220;exist&amp;#8221; (when doing a mx query with &lt;a href="http://www.mxtoolbox.com" rel="nofollow"&gt;mxtoolbox&lt;/a&gt; )&lt;/p&gt;


	&lt;p&gt;Posted on Google Groups, no answer yet.&lt;/p&gt;</description>
      <pubDate>Fri, 01 Sep 2006 12:01:15 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:27bf781d-4b0b-4642-8412-585fdd602cc7</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21931</link>
    </item>
    <item>
      <title>"Gmail for your domain" by Robby Russell</title>
      <description>&lt;p&gt;Luis,&lt;/p&gt;


	&lt;p&gt;What are you using to manage your DNS?&lt;/p&gt;


	&lt;p&gt;Email to the domain just points to their &lt;em&gt;long&lt;/em&gt; list of servers.&lt;/p&gt;</description>
      <pubDate>Fri, 01 Sep 2006 11:50:27 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:290d8058-ca59-44a2-a82a-64099af73c0d</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21930</link>
    </item>
    <item>
      <title>"Gmail for your domain" by Luis Lavena</title>
      <description>&lt;p&gt;Hey Robby, I&amp;#8217;ve been beta testing it too. How did you resolve the mx/cname issue? I&amp;#8217;m trying to point mydomain.net and &lt;a href="http://www.mydomain.net" rel="nofollow"&gt;www.mydomain.net&lt;/a&gt; to &lt;a href="http://www.mydomain.com" rel="nofollow"&gt;www.mydomain.com&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;CNAME records for mydomain.net cannot co-exist with mx definitions&amp;#8230;&lt;/p&gt;


	&lt;p&gt;Argh, a need a crash course on DNS :-P&lt;/p&gt;</description>
      <pubDate>Fri, 01 Sep 2006 11:46:29 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:fee75efe-7ef0-4ef3-84ce-8727797424fb</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21929</link>
    </item>
    <item>
      <title>"Gmail for your domain" by Robby Russell</title>
      <description>&lt;p&gt;Yeah&amp;#8230; right now I only need a few email addresses. :-)&lt;/p&gt;</description>
      <pubDate>Fri, 01 Sep 2006 11:40:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:6e12a34d-d9ac-4bb6-92d2-2564bc58e802</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21928</link>
    </item>
    <item>
      <title>"Gmail for your domain" by Matt</title>
      <description>&lt;p&gt;I&amp;#8217;ve been on the beta for a while now and I just love it. 
However, I believe it&amp;#8217;s limited to 25 users by domain. (plenty enough for me)&lt;/p&gt;</description>
      <pubDate>Fri, 01 Sep 2006 11:34:39 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:56992321-8b96-4010-a75e-e3fe3be97df7</guid>
      <link>http://www.robbyonrails.com/articles/2006/09/01/gmail-for-your-domain#comment-21927</link>
    </item>
  </channel>
</rss>
