Simon,<br><br>Although I realize you are using Power Admin, this may help you too (I hope) to acomplish same using mysql client or to foormulate the correct type of entry in Power Admin<br><br>1. Verify your domain name - Best to use the HTML page form of verification as its quicker sometimes and generally easier to accomplish<br>
<br>2. Create the Domain in you PDNS (Assuming Default schema & MySQL)<br>  INSERT INTO domains (name,type) VALUES ('<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','NATIVE');<br><br>3. Get The Domain ID<br>
  SELECT * FROM domains WHERE name='<a href="http://mydomain.com">mydomain.com</a>'; <br>  We'll assume 101 in this case is the domain id.<br><br>4. Create The Standard Records<br><br>  SOA: INSERT INTO records (domain_id,name,type,content,ttl) VALUES ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','SOA','<a href="http://NS1.YOURMASTERDNS.NET">NS1.YOURMASTERDNS.NET</a> 2009051321 1200 120 1209600 3600','3600');<br>
<br>  NS:   INSERT INTO records (domain_id,name,type,content,ttl) VALUES
('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','NS','<a href="http://NS1.YOURMASTERDNS.NET">NS1.YOURMASTERDNS.NET</a>','3600');<br>           INSERT INTO records (domain_id,name,type,content,ttl) VALUES
('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','NS','<a href="http://NS2.YOURMASTERDNS.NET">NS2.YOURMASTERDNS.NET</a>','3600');<br><br>  MX:  INSERT INTO records (domain_id,name,type,content,prio) VALUES ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','MX','<a href="http://ASPMX.L.GOOGLE.COM">ASPMX.L.GOOGLE.COM</a>','10'),<br>
           ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','MX','<a href="http://ALT1.ASPMX.L.GOOGLE.COM">ALT1.ASPMX.L.GOOGLE.COM</a>','20'),<br>           ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','MX','<a href="http://ALT2.ASPMX.L.GOOGLE.COM">ALT2.ASPMX.L.GOOGLE.COM</a>','20'),<br>
           ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','MX','<a href="http://ASPMX2.GOOGLEMAIL.COM">ASPMX2.GOOGLEMAIL.COM</a>','30'),<br>           ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','MX','<a href="http://ASPMX3.GOOGLEMAIL.COM">ASPMX3.GOOGLEMAIL.COM</a>','30'),<br>
           ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','MX','<a href="http://ASPMX4.GOOGLEMAIL.COM">ASPMX4.GOOGLEMAIL.COM</a>','30'),<br>           ('101','<a href="http://MYDOMAIN.COM">MYDOMAIN.COM</a>','MX','<a href="http://ASPMX5.GOOGLEMAIL.COM">ASPMX5.GOOGLEMAIL.COM</a>','30');<br>
<br>5. If you wish to use aliases for say webmail to point to your Gmail Apps <br>    CNAME: INSERT INTO records (domain_id,name,type,content) VALUES ('101','<a href="http://WEBMAIL.MYDOMAIN.COM">WEBMAIL.MYDOMAIN.COM</a>','CNAME','<a href="http://ghs.google.com">ghs.google.com</a>');<br>
<br>6. If you wish yo use Google Chat (XMPP/JABBER)<br>    SRV: INSERT INTO records (domain_id,name,type,content,ttl,prio) VALUES<br>
             ('101','_xmpp-server._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5269 <a href="http://xmpp-server4.l.google.com">xmpp-server4.l.google.com</a>','3600','20'),<br>

             ('101','_xmpp-server._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5269 <a href="http://xmpp-server3.l.google.com">xmpp-server3.l.google.com</a>','3600','20'),<br>

             ('101','_xmpp-server._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5269 <a href="http://xmpp-server2.l.google.com">xmpp-server2.l.google.com</a>','3600','20'),<br>

             ('101','_xmpp-server._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5269 <a href="http://xmpp-server1.l.google.com">xmpp-server1.l.google.com</a>','3600','20'),<br>
             ('101','_xmpp-server._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5269 <a href="http://xmpp-server.l.google.com">xmpp-server.l.google.com</a>','3600','10'),<br>
             ('101','_xmpp-client._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5222 <a href="http://talk.l.google.com">talk.l.google.com</a>','3600','10'),<br>
             ('101','_xmpp-client._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV',' 0 5222 <a href="http://talk1.l.google.com">talk1.l.google.com</a>','3600','20'),<br>
             ('101','_xmpp-client._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5222 <a href="http://talk2.l.google.com">talk2.l.google.com</a>','3600','20'),<br>
             ('101','_xmpp-client._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5222 <a href="http://talk3.l.google.com">talk3.l.google.com</a>','3600','20'),<br>
             ('101','_xmpp-client._<a href="http://tcp.MYDOMAIN.COM">tcp.MYDOMAIN.COM</a>','SRV','0 5222 <a href="http://talk4.l.google.com">talk4.l.google.com</a>','3600','20');<br>
<br><br>Aj<br>
<br><div class="gmail_quote">2009/5/13 - Simon - <span dir="ltr"><<a href="mailto:kentor@gmail.com" target="_blank">kentor@gmail.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Hello,<br><br>I have a small problem with MX records. We are using Google Apps for web application's email needs and we've already set everything up. We can now send emails from @<a href="http://ourdomainname.com" target="_blank">ourdomainname.com</a> but we cannot receive them. To do so, we need to change some MX records as instructed on Google but they do not give any guidance for PowerDNS + PowerAdmin and nobody online uses this combo so I can't find any help. Basically if you go to <a href="https://www.google.com/a/ourdomainname.com/" target="_blank">https://www.google.com/a/ourdomainname.com/</a> and then login, and then click on the link "Activate email" right below the email icon, you will see the set of instructions that I'm trying to follow (if you create a Google Apps account or already have one or you can view the exact page by going to "<a href="http://www.forum.optymalizacja.com/lofiversion/index.php/t25816.html" target="_blank">http://www.forum.optymalizacja.com/lofiversion/index.php/t25816.html</a>", you will see it in the quote. ). The thing is that when I enter the first value into PowerDNS, I get "Error: You are using an invalid top level domain.". There are step by step instructions for GoDaddy but not for PowerDNS. Any help would be really appreciated. Thanks!<br>

<font color="#888888">

<br>Simon<br>
</font><br>_______________________________________________<br>
Pdns-users mailing list<br>
<a href="mailto:Pdns-users@mailman.powerdns.com" target="_blank">Pdns-users@mailman.powerdns.com</a><br>
<a href="http://mailman.powerdns.com/mailman/listinfo/pdns-users" target="_blank">http://mailman.powerdns.com/mailman/listinfo/pdns-users</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>AJ McKee<br>phone: +353 (0)86 380 50 70<br>profile:  <a href="http://linkedin.com/in/ajmkee" target="_blank">http://linkedin.com/in/ajmkee</a><br>jid:       <a href="mailto:aj.mckee@druid-dns.com" target="_blank">aj.mckee@druid-dns.com</a><br>

blog:    <a href="http://aj.mc-kee.com/" target="_blank">http://aj.mc-kee.com/</a><br>twitter: @ajmckee<br>