Reputation: 498
I've configured my domain in my domain registrar to point to my azure dns zone, and I want to be able to receive emails in gsuite with my domain? Everything I've read tells me that I have to configure a MX record in my azure dns but I'm having trouble to match the data gsuite is telling me to add to the mx record.
Upvotes: 2
Views: 1202
Reputation: 182
Yes as Nancy Xiong already replied, seems to be working, interestingly but initially I found this article:
https://support.google.com/domains/answer/9428703?hl=en
Which gives different mx entries and it didn't work, waited for several hours, usually it should be within several minutes since the domain is already pointed to your custom name servers, but then adding it as suggested here https://support.google.com/a/answer/33915?hl=en#zippy=%2Cstep-add-new-mx-records
did the trick
So at the end of the day I've ended up with this list:
And its working now.
Upvotes: 1
Reputation: 28294
If you have hosted your domain in Azure DNS. That means that you have used the Azure provided name servers in your domain provider. Thus, you can managed DNS records in Azure DNS zone.
Refer to the Step 4: Add the G Suite MX records in this document. To direct your email to your G Suite account, you have to add new MX records to your domain and remove old MX records if there is. Then tell Google to find your new MX records in Step 5.
These are the records that you need to add in your Azure DNS zone for your domain:
MX server address Priority
ASPMX.L.GOOGLE.COM 1
ALT1.ASPMX.L.GOOGLE.COM 5
ALT2.ASPMX.L.GOOGLE.COM 5
ALT3.ASPMX.L.GOOGLE.COM 10
ALT4.ASPMX.L.GOOGLE.COM 10
If you don't know how to add MX records in Azure DNS, you can refer to this. This may take 24-48 hours for DNS propagation.
Upvotes: 4