Moving website, but leaving the email system as it is

Am just about to transfer the registrar, registrant and hosting for a particular website (a co.uk), but have just noticed that the company access their emails through their outlook 2016 programmes (they also have the option of accessing their emails online if they are on the move, via https://portal.office.com/admin/default.aspx ) I assume it’s some kind of exchange server type??

The company definitely only want me to be involved with the website side and to leave the email system exactly as it is, in every way. Is this possible please?

It will be a matter of keeping the MX records to what they are currently rather than changing them to the default for the new registrar.

Thanks Gandalf, that quick helpul post is appreciated. The current registrant isn’t particular forthcoming/helpful with information - is there any way that I can find out myself what the current MX records are please?

Try this. I think it should do what you want:

<?php
  $host = 'whatever'; // no http, no www
  $dns  = dns_get_record($host);
  echo '<h1>DNS records for ', $host, '</h1>', "\n";
  foreach ( $dns as $key1 => $record ) {
    echo '<p># ', $key1, '<br>', "\n";
    foreach ( $record as $key2 => $entry )
      echo $key2, ': ', $entry, '<br>', "\n";
    echo '</p>', "\n";
  }
?>

Edit: You might also want to check with office.com.

Thanks Gandalf, where do I put that code please?

Create a separate new .php file which you need to run on your server (assuming it supports PHP). It’s a standalone script.

Hi Gandalf, I’ve done that, and it’s showing some details on a page. In the context of the question in this thread, what do I need from those details please?

You’ll want the details for the MX records (type: MX), so you can set them up to be the same with your new registrar.

There were 6 results on the page, but only one of them mentioned MX :

4

host: (website deleted).co.uk

class: IN

ttl: 299

type: MX

pri: 0

target: (website deleted)-co-uk.mail.protection.outlook.com

Well, that’s the information you need, although I am surprised there is only 1 MX record.

I would check with office.com / outlook.com what their requirements are just to be sure.

Thanks, but can’t seem to find any email addresses for outlook.com or office.com

This looks like it should give the answers you need https://support.office.com/en-us/article/Create-DNS-records-for-Office-365-at-any-DNS-hosting-provider-7b7b075d-79f9-4e37-8a9e-fb60c1d95166

That does look pretty good for this. Is 365 appropriate for this?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.