Does MX Record forward or redirect? Unicorn Meta Zoo #1: Why another podcast? ...
Raising a bilingual kid. When should we introduce the majority language?
std::is_constructible on incomplete types
c++ diamond problem - How to call base method only once
How would this chord from "Rocket Man" be analyzed?
SQL Query not selecting all points that it should?
Multiple options vs single option UI
Is it acceptable to use working hours to read general interest books?
Does the set of sets which are elements of every set exist?
Does Mathematica have an implementation of the Poisson Binomial Distribution?
What is this word supposed to be?
Where did Arya get these scars?
Multiple fireplaces in an apartment building?
Why did C use the -> operator instead of reusing the . operator?
Dynamic Return Type
Why did Israel vote against lifting the American embargo on Cuba?
What is the term for a person whose job is to place products on shelves in stores?
With indentation set to `0em`, when using a line break, there is still an indentation of a size of a space
How long after the last departure shall the airport stay open for an emergency return?
Putting Ant-Man on house arrest
How to get even lighting when using flash for group photos near wall?
What's parked in Mil Moscow helicopter plant?
What is the ongoing value of the Kanban board to the developers as opposed to management
Is this homebrew racial feat, Stonehide, balanced?
Does Feeblemind produce an ongoing magical effect that can be dispelled?
Does MX Record forward or redirect?
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
Come Celebrate our 10 Year Anniversary!If I change a nameserver but preserve the MX record will it harm email?Forward Mails to GmailHow do mx records work when there are multiple ones at the same priority?Domain Name from 123-reg, VPS from Linode. How to point to Google Mail for Business?Why did I loose access to the mailboxes on my old web/mail host after changing to a new one but keeping old MX valuesHow to setup correct SPF recordcreate own mail id with mydomain.inIn which Interface do I change MX Records?Can my MX record and SMTP relay host differ?MX Lookup failed for outgoing email
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have a simple question on how MX Records work. When I enter an external mail server address (e.g. to Google Suite/Mail) in my hosts control panel, do mail get redirected (meaning not saved first) or forwarded (saved, and then sent to Google)? If this depends on the hosts server setup, please let me know that as well.
Thanks
email-server web-hosting mx-record
add a comment |
I have a simple question on how MX Records work. When I enter an external mail server address (e.g. to Google Suite/Mail) in my hosts control panel, do mail get redirected (meaning not saved first) or forwarded (saved, and then sent to Google)? If this depends on the hosts server setup, please let me know that as well.
Thanks
email-server web-hosting mx-record
add a comment |
I have a simple question on how MX Records work. When I enter an external mail server address (e.g. to Google Suite/Mail) in my hosts control panel, do mail get redirected (meaning not saved first) or forwarded (saved, and then sent to Google)? If this depends on the hosts server setup, please let me know that as well.
Thanks
email-server web-hosting mx-record
I have a simple question on how MX Records work. When I enter an external mail server address (e.g. to Google Suite/Mail) in my hosts control panel, do mail get redirected (meaning not saved first) or forwarded (saved, and then sent to Google)? If this depends on the hosts server setup, please let me know that as well.
Thanks
email-server web-hosting mx-record
email-server web-hosting mx-record
asked Mar 10 '17 at 10:49
Jonke-PöJonke-Pö
32
32
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
MX records are essentially signposts for email delivery - emails are never stored by intermediate servers, only forwarded to their final destination. So, in your words, the mails are redirected, however the terms redirected and forwarded can be used interchangeably when dealing with email.
Generally speaking, when you send an email, the receiving server (e.g. your ISP's mail relay) checks the recipient domain and looks up the MX records for that domain. The email is then forwarded to those MX servers for delivery to the recipient.
This doesn't mean that the email may not be saved temporarily in some form or another, for example for spam checking, buffering in case the destination mail server is unavailable, but relay servers should never permanently store email.
1
Some MTAs/MDAs do buffer mail, though (of course not the MX records, but the intermediate or frontend MTAs/MDAs to which these MX records are assigned).
– Lenniey
Mar 10 '17 at 10:57
I understand MX records enough now I think. The support at my web host however say that they can recover my mail although I use a 3rd party provider (like Google). If the MX records are pointed at Google, it seems with my understanding that it actually should be "impossible" to recover mail. The reason I'm checking is since it will be a company domain I want redundancy for tax declaration reasons.
– Jonke-Pö
Mar 10 '17 at 15:58
@Jonke-Pö that's correct - your web-host seems to be under the impression that you are using their servers for receiving your email. You are correct - if your MX servers are pointed at Google (and Google is where your emails are stored), your web-host would not be able to recover any email.
– Craig Watson
Mar 10 '17 at 16:16
add a comment |
When you send an Email, your mail server does a DNS lookup looking for the MX record for the domain you are trying to email, the MX record identifies the servers responsible for delivering email to that domain. Once your Mail server has obtained the MX record it does another DNS lookup looking for the IP Address of the Mail server identified in the MX record. Once it has the IP Address of the remote mail server it then uses SMTP to establish a connection to the remote mail server and then it sends the email.
For more details see the link below.
https://en.wikipedia.org/wiki/MX_record
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f837443%2fdoes-mx-record-forward-or-redirect%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
MX records are essentially signposts for email delivery - emails are never stored by intermediate servers, only forwarded to their final destination. So, in your words, the mails are redirected, however the terms redirected and forwarded can be used interchangeably when dealing with email.
Generally speaking, when you send an email, the receiving server (e.g. your ISP's mail relay) checks the recipient domain and looks up the MX records for that domain. The email is then forwarded to those MX servers for delivery to the recipient.
This doesn't mean that the email may not be saved temporarily in some form or another, for example for spam checking, buffering in case the destination mail server is unavailable, but relay servers should never permanently store email.
1
Some MTAs/MDAs do buffer mail, though (of course not the MX records, but the intermediate or frontend MTAs/MDAs to which these MX records are assigned).
– Lenniey
Mar 10 '17 at 10:57
I understand MX records enough now I think. The support at my web host however say that they can recover my mail although I use a 3rd party provider (like Google). If the MX records are pointed at Google, it seems with my understanding that it actually should be "impossible" to recover mail. The reason I'm checking is since it will be a company domain I want redundancy for tax declaration reasons.
– Jonke-Pö
Mar 10 '17 at 15:58
@Jonke-Pö that's correct - your web-host seems to be under the impression that you are using their servers for receiving your email. You are correct - if your MX servers are pointed at Google (and Google is where your emails are stored), your web-host would not be able to recover any email.
– Craig Watson
Mar 10 '17 at 16:16
add a comment |
MX records are essentially signposts for email delivery - emails are never stored by intermediate servers, only forwarded to their final destination. So, in your words, the mails are redirected, however the terms redirected and forwarded can be used interchangeably when dealing with email.
Generally speaking, when you send an email, the receiving server (e.g. your ISP's mail relay) checks the recipient domain and looks up the MX records for that domain. The email is then forwarded to those MX servers for delivery to the recipient.
This doesn't mean that the email may not be saved temporarily in some form or another, for example for spam checking, buffering in case the destination mail server is unavailable, but relay servers should never permanently store email.
1
Some MTAs/MDAs do buffer mail, though (of course not the MX records, but the intermediate or frontend MTAs/MDAs to which these MX records are assigned).
– Lenniey
Mar 10 '17 at 10:57
I understand MX records enough now I think. The support at my web host however say that they can recover my mail although I use a 3rd party provider (like Google). If the MX records are pointed at Google, it seems with my understanding that it actually should be "impossible" to recover mail. The reason I'm checking is since it will be a company domain I want redundancy for tax declaration reasons.
– Jonke-Pö
Mar 10 '17 at 15:58
@Jonke-Pö that's correct - your web-host seems to be under the impression that you are using their servers for receiving your email. You are correct - if your MX servers are pointed at Google (and Google is where your emails are stored), your web-host would not be able to recover any email.
– Craig Watson
Mar 10 '17 at 16:16
add a comment |
MX records are essentially signposts for email delivery - emails are never stored by intermediate servers, only forwarded to their final destination. So, in your words, the mails are redirected, however the terms redirected and forwarded can be used interchangeably when dealing with email.
Generally speaking, when you send an email, the receiving server (e.g. your ISP's mail relay) checks the recipient domain and looks up the MX records for that domain. The email is then forwarded to those MX servers for delivery to the recipient.
This doesn't mean that the email may not be saved temporarily in some form or another, for example for spam checking, buffering in case the destination mail server is unavailable, but relay servers should never permanently store email.
MX records are essentially signposts for email delivery - emails are never stored by intermediate servers, only forwarded to their final destination. So, in your words, the mails are redirected, however the terms redirected and forwarded can be used interchangeably when dealing with email.
Generally speaking, when you send an email, the receiving server (e.g. your ISP's mail relay) checks the recipient domain and looks up the MX records for that domain. The email is then forwarded to those MX servers for delivery to the recipient.
This doesn't mean that the email may not be saved temporarily in some form or another, for example for spam checking, buffering in case the destination mail server is unavailable, but relay servers should never permanently store email.
edited Mar 10 '17 at 11:29
answered Mar 10 '17 at 10:54
Craig WatsonCraig Watson
8,13332239
8,13332239
1
Some MTAs/MDAs do buffer mail, though (of course not the MX records, but the intermediate or frontend MTAs/MDAs to which these MX records are assigned).
– Lenniey
Mar 10 '17 at 10:57
I understand MX records enough now I think. The support at my web host however say that they can recover my mail although I use a 3rd party provider (like Google). If the MX records are pointed at Google, it seems with my understanding that it actually should be "impossible" to recover mail. The reason I'm checking is since it will be a company domain I want redundancy for tax declaration reasons.
– Jonke-Pö
Mar 10 '17 at 15:58
@Jonke-Pö that's correct - your web-host seems to be under the impression that you are using their servers for receiving your email. You are correct - if your MX servers are pointed at Google (and Google is where your emails are stored), your web-host would not be able to recover any email.
– Craig Watson
Mar 10 '17 at 16:16
add a comment |
1
Some MTAs/MDAs do buffer mail, though (of course not the MX records, but the intermediate or frontend MTAs/MDAs to which these MX records are assigned).
– Lenniey
Mar 10 '17 at 10:57
I understand MX records enough now I think. The support at my web host however say that they can recover my mail although I use a 3rd party provider (like Google). If the MX records are pointed at Google, it seems with my understanding that it actually should be "impossible" to recover mail. The reason I'm checking is since it will be a company domain I want redundancy for tax declaration reasons.
– Jonke-Pö
Mar 10 '17 at 15:58
@Jonke-Pö that's correct - your web-host seems to be under the impression that you are using their servers for receiving your email. You are correct - if your MX servers are pointed at Google (and Google is where your emails are stored), your web-host would not be able to recover any email.
– Craig Watson
Mar 10 '17 at 16:16
1
1
Some MTAs/MDAs do buffer mail, though (of course not the MX records, but the intermediate or frontend MTAs/MDAs to which these MX records are assigned).
– Lenniey
Mar 10 '17 at 10:57
Some MTAs/MDAs do buffer mail, though (of course not the MX records, but the intermediate or frontend MTAs/MDAs to which these MX records are assigned).
– Lenniey
Mar 10 '17 at 10:57
I understand MX records enough now I think. The support at my web host however say that they can recover my mail although I use a 3rd party provider (like Google). If the MX records are pointed at Google, it seems with my understanding that it actually should be "impossible" to recover mail. The reason I'm checking is since it will be a company domain I want redundancy for tax declaration reasons.
– Jonke-Pö
Mar 10 '17 at 15:58
I understand MX records enough now I think. The support at my web host however say that they can recover my mail although I use a 3rd party provider (like Google). If the MX records are pointed at Google, it seems with my understanding that it actually should be "impossible" to recover mail. The reason I'm checking is since it will be a company domain I want redundancy for tax declaration reasons.
– Jonke-Pö
Mar 10 '17 at 15:58
@Jonke-Pö that's correct - your web-host seems to be under the impression that you are using their servers for receiving your email. You are correct - if your MX servers are pointed at Google (and Google is where your emails are stored), your web-host would not be able to recover any email.
– Craig Watson
Mar 10 '17 at 16:16
@Jonke-Pö that's correct - your web-host seems to be under the impression that you are using their servers for receiving your email. You are correct - if your MX servers are pointed at Google (and Google is where your emails are stored), your web-host would not be able to recover any email.
– Craig Watson
Mar 10 '17 at 16:16
add a comment |
When you send an Email, your mail server does a DNS lookup looking for the MX record for the domain you are trying to email, the MX record identifies the servers responsible for delivering email to that domain. Once your Mail server has obtained the MX record it does another DNS lookup looking for the IP Address of the Mail server identified in the MX record. Once it has the IP Address of the remote mail server it then uses SMTP to establish a connection to the remote mail server and then it sends the email.
For more details see the link below.
https://en.wikipedia.org/wiki/MX_record
add a comment |
When you send an Email, your mail server does a DNS lookup looking for the MX record for the domain you are trying to email, the MX record identifies the servers responsible for delivering email to that domain. Once your Mail server has obtained the MX record it does another DNS lookup looking for the IP Address of the Mail server identified in the MX record. Once it has the IP Address of the remote mail server it then uses SMTP to establish a connection to the remote mail server and then it sends the email.
For more details see the link below.
https://en.wikipedia.org/wiki/MX_record
add a comment |
When you send an Email, your mail server does a DNS lookup looking for the MX record for the domain you are trying to email, the MX record identifies the servers responsible for delivering email to that domain. Once your Mail server has obtained the MX record it does another DNS lookup looking for the IP Address of the Mail server identified in the MX record. Once it has the IP Address of the remote mail server it then uses SMTP to establish a connection to the remote mail server and then it sends the email.
For more details see the link below.
https://en.wikipedia.org/wiki/MX_record
When you send an Email, your mail server does a DNS lookup looking for the MX record for the domain you are trying to email, the MX record identifies the servers responsible for delivering email to that domain. Once your Mail server has obtained the MX record it does another DNS lookup looking for the IP Address of the Mail server identified in the MX record. Once it has the IP Address of the remote mail server it then uses SMTP to establish a connection to the remote mail server and then it sends the email.
For more details see the link below.
https://en.wikipedia.org/wiki/MX_record
edited 16 mins ago
mrexodia
1033
1033
answered Mar 10 '17 at 10:59
Michael BrownMichael Brown
2,8642510
2,8642510
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f837443%2fdoes-mx-record-forward-or-redirect%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown