MX records from second domain to point to first domain but email is not delivered like on first domainPointing domain away from googleHow can a domain use its own nameservers?DNS Help - Point Web Requests to Web Host without affecting Existing Email SettingsNo MX records?! Zone file issue. Shopfiy vs. self-hosted emailEmails not arriving - DNS settings?Reconfiguring DNS without losing GmailMX Record propogation time - Email working sometimes and sometimes notHow to send email from addresses @ my domain without an actual mailboxDomain Set up - Mail/WebServer/Subdomain/ShopifyMy website has suddenly stopped working and i can't access it through the domain name
Should I simplify my writing in a foreign country?
Can full drive backup be used instead of MSSQL database backup?
Why does sound not move through a wall?
Why is my arithmetic with a long long int behaving this way?
Dihedral group D4 composition with custom labels
Should homeowners insurance cover the cost of the home?
Is there a word for food that's gone 'bad', but is still edible?
Looking for sci-fi book based on Hinduism/Buddhism
Krull dimension of the ring of global sections
How did the Apollo guidance computer handle parity bit errors?
How to pass query parameters in URL in Salesforce Summer 19 Release?
Why did WWI include Japan?
Endgame puzzle: How to avoid stalemate and win?
Game artist computer workstation set-up – is this overkill?
When did England stop being a Papal fief?
Can my 2 children, aged 10 and 12, who are US citizens, travel to the USA on expired American passports?
Is space itself expanding or is it just momentum from the Big Bang carrying things apart?
Disabling quote conversion in docstrings
How to Practice After Stream Entry as Opposed to Before?
Constitutional limitation of criminalizing behavior in US law?
What was the first story to feature the plot "the monsters were human all along"?
Dirichlet series with a single zero
Why aren't nationalizations in Russia described as socialist?
As black, how should one respond to 4. Qe2 by white in the Russian Game, Damiano Variation?
MX records from second domain to point to first domain but email is not delivered like on first domain
Pointing domain away from googleHow can a domain use its own nameservers?DNS Help - Point Web Requests to Web Host without affecting Existing Email SettingsNo MX records?! Zone file issue. Shopfiy vs. self-hosted emailEmails not arriving - DNS settings?Reconfiguring DNS without losing GmailMX Record propogation time - Email working sometimes and sometimes notHow to send email from addresses @ my domain without an actual mailboxDomain Set up - Mail/WebServer/Subdomain/ShopifyMy website has suddenly stopped working and i can't access it through the domain name
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I've set up an email service, for a domain, abc.com
I have tested an confirmed.
Using dig it returnsabc.com. 299 IN MX 1 cencor.
Now, I'm trying to run a second domain via the same service:def.com
.
Ive set the mx on def.com to point to abc.com
.
Using dig, it returns:def.com. 299 IN MX 1 abc.com.
However, no emails seems to hit the inbox, and gmail is not reporting any failiure to deliver.
The server is running iredmail, and can't find any documentation about settings that should be changed for multiple domains, and since it works for abc.com
i cant see why def.com
does not work.
domains dns mail
New contributor
add a comment |
I've set up an email service, for a domain, abc.com
I have tested an confirmed.
Using dig it returnsabc.com. 299 IN MX 1 cencor.
Now, I'm trying to run a second domain via the same service:def.com
.
Ive set the mx on def.com to point to abc.com
.
Using dig, it returns:def.com. 299 IN MX 1 abc.com.
However, no emails seems to hit the inbox, and gmail is not reporting any failiure to deliver.
The server is running iredmail, and can't find any documentation about settings that should be changed for multiple domains, and since it works for abc.com
i cant see why def.com
does not work.
domains dns mail
New contributor
1
What iscencor
supposed to represent?
– Alexis Wilke
5 hours ago
add a comment |
I've set up an email service, for a domain, abc.com
I have tested an confirmed.
Using dig it returnsabc.com. 299 IN MX 1 cencor.
Now, I'm trying to run a second domain via the same service:def.com
.
Ive set the mx on def.com to point to abc.com
.
Using dig, it returns:def.com. 299 IN MX 1 abc.com.
However, no emails seems to hit the inbox, and gmail is not reporting any failiure to deliver.
The server is running iredmail, and can't find any documentation about settings that should be changed for multiple domains, and since it works for abc.com
i cant see why def.com
does not work.
domains dns mail
New contributor
I've set up an email service, for a domain, abc.com
I have tested an confirmed.
Using dig it returnsabc.com. 299 IN MX 1 cencor.
Now, I'm trying to run a second domain via the same service:def.com
.
Ive set the mx on def.com to point to abc.com
.
Using dig, it returns:def.com. 299 IN MX 1 abc.com.
However, no emails seems to hit the inbox, and gmail is not reporting any failiure to deliver.
The server is running iredmail, and can't find any documentation about settings that should be changed for multiple domains, and since it works for abc.com
i cant see why def.com
does not work.
domains dns mail
domains dns mail
New contributor
New contributor
edited 6 hours ago
Stephen Ostermiller♦
70.4k13100256
70.4k13100256
New contributor
asked 6 hours ago
PeaceDealerPeaceDealer
1111
1111
New contributor
New contributor
1
What iscencor
supposed to represent?
– Alexis Wilke
5 hours ago
add a comment |
1
What iscencor
supposed to represent?
– Alexis Wilke
5 hours ago
1
1
What is
cencor
supposed to represent?– Alexis Wilke
5 hours ago
What is
cencor
supposed to represent?– Alexis Wilke
5 hours ago
add a comment |
2 Answers
2
active
oldest
votes
MX
records provide the address of the SMTP
servers that handle incoming email for a domain. You don't have an incoming SMTP server available at abc.com:25
(it is at cencor:25
), and MX
records can not be daisy-chained in the way mentioned.
You should set-up both MX records to return the same response e.g
abc.com. 300 IN MX 1 cencor.
def.com. 300 IN MX 1 cencor.
... and you also need to ensure the receiving server cencor
is configured to recognise email sent to both abc.com
and def.com
Usually, a source email server will retry, as it has no way to know if it can not deliver is because of misconfiguration or just because your email service is temporarily unavailable. Typically, the sender would get a "delivery delayed" notification email at 48 or 72 hours, and then a delivery failed notification at 7 days, when the source email server abandons the email.
add a comment |
The MX record tells the email sender which domain to do an A
record lookup on to find the IP address to send their mail to. (Details in section 3.3.8 of RFC 1035).
Your record abc.com. 299 IN MX 1 mailserver.com.
tells the sender to do an A
record query on mailserver.com
, therefore the email gets sent to the server at mailserver.com
which receives the email on behalf of abc.com
. Everything works as expected.
The issue comes with your record def.com. 299 IN MX 1 abc.com.
. This tells the sender to do an A
record query on abc.com
, therefore the email gets sent to your server at abc.com
which is a web server, not an email server.
I'm not sure why it isn't bouncing, because it should be bouncing. Chalk it up to Google's opaque and non-standard policies, maybe.
Anyways, you need to change your record to def.com. 299 IN MX 1 mailserver.com.
, assuming that mailserver.com
is set up to accept email addressed to @def.com
. If mailserver.com
is only set up to receive email addressed to @abc.com
(i.e. if you are only paying your email provider for one custom domain), then you will need to point def.com
's MX record at an email forwarding service that can re-address and pass your emails along to a mailbox at abc.com
.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "45"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
PeaceDealer is a new contributor. Be nice, and check out our Code of Conduct.
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%2fwebmasters.stackexchange.com%2fquestions%2f122669%2fmx-records-from-second-domain-to-point-to-first-domain-but-email-is-not-delivere%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 provide the address of the SMTP
servers that handle incoming email for a domain. You don't have an incoming SMTP server available at abc.com:25
(it is at cencor:25
), and MX
records can not be daisy-chained in the way mentioned.
You should set-up both MX records to return the same response e.g
abc.com. 300 IN MX 1 cencor.
def.com. 300 IN MX 1 cencor.
... and you also need to ensure the receiving server cencor
is configured to recognise email sent to both abc.com
and def.com
Usually, a source email server will retry, as it has no way to know if it can not deliver is because of misconfiguration or just because your email service is temporarily unavailable. Typically, the sender would get a "delivery delayed" notification email at 48 or 72 hours, and then a delivery failed notification at 7 days, when the source email server abandons the email.
add a comment |
MX
records provide the address of the SMTP
servers that handle incoming email for a domain. You don't have an incoming SMTP server available at abc.com:25
(it is at cencor:25
), and MX
records can not be daisy-chained in the way mentioned.
You should set-up both MX records to return the same response e.g
abc.com. 300 IN MX 1 cencor.
def.com. 300 IN MX 1 cencor.
... and you also need to ensure the receiving server cencor
is configured to recognise email sent to both abc.com
and def.com
Usually, a source email server will retry, as it has no way to know if it can not deliver is because of misconfiguration or just because your email service is temporarily unavailable. Typically, the sender would get a "delivery delayed" notification email at 48 or 72 hours, and then a delivery failed notification at 7 days, when the source email server abandons the email.
add a comment |
MX
records provide the address of the SMTP
servers that handle incoming email for a domain. You don't have an incoming SMTP server available at abc.com:25
(it is at cencor:25
), and MX
records can not be daisy-chained in the way mentioned.
You should set-up both MX records to return the same response e.g
abc.com. 300 IN MX 1 cencor.
def.com. 300 IN MX 1 cencor.
... and you also need to ensure the receiving server cencor
is configured to recognise email sent to both abc.com
and def.com
Usually, a source email server will retry, as it has no way to know if it can not deliver is because of misconfiguration or just because your email service is temporarily unavailable. Typically, the sender would get a "delivery delayed" notification email at 48 or 72 hours, and then a delivery failed notification at 7 days, when the source email server abandons the email.
MX
records provide the address of the SMTP
servers that handle incoming email for a domain. You don't have an incoming SMTP server available at abc.com:25
(it is at cencor:25
), and MX
records can not be daisy-chained in the way mentioned.
You should set-up both MX records to return the same response e.g
abc.com. 300 IN MX 1 cencor.
def.com. 300 IN MX 1 cencor.
... and you also need to ensure the receiving server cencor
is configured to recognise email sent to both abc.com
and def.com
Usually, a source email server will retry, as it has no way to know if it can not deliver is because of misconfiguration or just because your email service is temporarily unavailable. Typically, the sender would get a "delivery delayed" notification email at 48 or 72 hours, and then a delivery failed notification at 7 days, when the source email server abandons the email.
edited 1 hour ago
answered 1 hour ago
JamesJJJamesJJ
363
363
add a comment |
add a comment |
The MX record tells the email sender which domain to do an A
record lookup on to find the IP address to send their mail to. (Details in section 3.3.8 of RFC 1035).
Your record abc.com. 299 IN MX 1 mailserver.com.
tells the sender to do an A
record query on mailserver.com
, therefore the email gets sent to the server at mailserver.com
which receives the email on behalf of abc.com
. Everything works as expected.
The issue comes with your record def.com. 299 IN MX 1 abc.com.
. This tells the sender to do an A
record query on abc.com
, therefore the email gets sent to your server at abc.com
which is a web server, not an email server.
I'm not sure why it isn't bouncing, because it should be bouncing. Chalk it up to Google's opaque and non-standard policies, maybe.
Anyways, you need to change your record to def.com. 299 IN MX 1 mailserver.com.
, assuming that mailserver.com
is set up to accept email addressed to @def.com
. If mailserver.com
is only set up to receive email addressed to @abc.com
(i.e. if you are only paying your email provider for one custom domain), then you will need to point def.com
's MX record at an email forwarding service that can re-address and pass your emails along to a mailbox at abc.com
.
add a comment |
The MX record tells the email sender which domain to do an A
record lookup on to find the IP address to send their mail to. (Details in section 3.3.8 of RFC 1035).
Your record abc.com. 299 IN MX 1 mailserver.com.
tells the sender to do an A
record query on mailserver.com
, therefore the email gets sent to the server at mailserver.com
which receives the email on behalf of abc.com
. Everything works as expected.
The issue comes with your record def.com. 299 IN MX 1 abc.com.
. This tells the sender to do an A
record query on abc.com
, therefore the email gets sent to your server at abc.com
which is a web server, not an email server.
I'm not sure why it isn't bouncing, because it should be bouncing. Chalk it up to Google's opaque and non-standard policies, maybe.
Anyways, you need to change your record to def.com. 299 IN MX 1 mailserver.com.
, assuming that mailserver.com
is set up to accept email addressed to @def.com
. If mailserver.com
is only set up to receive email addressed to @abc.com
(i.e. if you are only paying your email provider for one custom domain), then you will need to point def.com
's MX record at an email forwarding service that can re-address and pass your emails along to a mailbox at abc.com
.
add a comment |
The MX record tells the email sender which domain to do an A
record lookup on to find the IP address to send their mail to. (Details in section 3.3.8 of RFC 1035).
Your record abc.com. 299 IN MX 1 mailserver.com.
tells the sender to do an A
record query on mailserver.com
, therefore the email gets sent to the server at mailserver.com
which receives the email on behalf of abc.com
. Everything works as expected.
The issue comes with your record def.com. 299 IN MX 1 abc.com.
. This tells the sender to do an A
record query on abc.com
, therefore the email gets sent to your server at abc.com
which is a web server, not an email server.
I'm not sure why it isn't bouncing, because it should be bouncing. Chalk it up to Google's opaque and non-standard policies, maybe.
Anyways, you need to change your record to def.com. 299 IN MX 1 mailserver.com.
, assuming that mailserver.com
is set up to accept email addressed to @def.com
. If mailserver.com
is only set up to receive email addressed to @abc.com
(i.e. if you are only paying your email provider for one custom domain), then you will need to point def.com
's MX record at an email forwarding service that can re-address and pass your emails along to a mailbox at abc.com
.
The MX record tells the email sender which domain to do an A
record lookup on to find the IP address to send their mail to. (Details in section 3.3.8 of RFC 1035).
Your record abc.com. 299 IN MX 1 mailserver.com.
tells the sender to do an A
record query on mailserver.com
, therefore the email gets sent to the server at mailserver.com
which receives the email on behalf of abc.com
. Everything works as expected.
The issue comes with your record def.com. 299 IN MX 1 abc.com.
. This tells the sender to do an A
record query on abc.com
, therefore the email gets sent to your server at abc.com
which is a web server, not an email server.
I'm not sure why it isn't bouncing, because it should be bouncing. Chalk it up to Google's opaque and non-standard policies, maybe.
Anyways, you need to change your record to def.com. 299 IN MX 1 mailserver.com.
, assuming that mailserver.com
is set up to accept email addressed to @def.com
. If mailserver.com
is only set up to receive email addressed to @abc.com
(i.e. if you are only paying your email provider for one custom domain), then you will need to point def.com
's MX record at an email forwarding service that can re-address and pass your emails along to a mailbox at abc.com
.
answered 1 hour ago
Maximillian LaumeisterMaximillian Laumeister
4,9931829
4,9931829
add a comment |
add a comment |
PeaceDealer is a new contributor. Be nice, and check out our Code of Conduct.
PeaceDealer is a new contributor. Be nice, and check out our Code of Conduct.
PeaceDealer is a new contributor. Be nice, and check out our Code of Conduct.
PeaceDealer is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Webmasters Stack Exchange!
- 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%2fwebmasters.stackexchange.com%2fquestions%2f122669%2fmx-records-from-second-domain-to-point-to-first-domain-but-email-is-not-delivere%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
1
What is
cencor
supposed to represent?– Alexis Wilke
5 hours ago