My postfix server is rejecting my client: 4.7.25 Client host rejected: cannot find your hostname, [96.9.90.28]Postfix is rejecting some incoming emails (“Client host rejected: cannot find your hostname”)Postfix rejects sender addressPostfix rejects all incoming mail (Client host rejected: Access denied)Postfix/smtpd: Client host rejected: cannot find your hostname450 4.7.1 Client host rejected: cannot find your hostnameS450 4.7.1 Client host rejected: cannot find your reverse hostnamePostfix not detecting hostname or domainMessages with SPF Softfail Not RejectedPostfix: How to accept email with valid SPF but unresolvable hostname?My postfix server rejects my python script - “Client host rejected: cannot find your hostname”
What does it mean to not be able to take the derivative of a function multiple times?
How many people are necessary to maintain modern civilisation?
How do I choose a villain in the Waterdeep: Dragon Heist adventure?
Why isn't my calculation that we should be able to see the sun well beyond the observable universe valid?
Why do all the teams that I have worked with always finish a sprint without completion of all the stories?
What are Elsa's reasons for selecting the Holy Grail on behalf of Donovan?
Confusion over 220 and 230 volt outlets
Do I need a shock-proof watch for cycling?
LWC - Local Dev - How can I run the local server on HTTPS?
Boss wants someone else to lead a project based on the idea I presented to him
Where's this swanky house and vineyard near a mountain?
Can I enter the UK for 24 hours from a Schengen area, holding an Indian passport?
Why is it recommended to mix yogurt starter with a small amount of milk before adding to the entire batch?
Did the CIA blow up a Siberian pipeline in 1982?
How can lift be less than thrust that is less than weight?
Should the party get XP for a monster they never attacked?
Define division by zero as infinity
How do I farm creepers for XP without them exploding?
How to make clear to people I don't want to answer their "Where are you from?" question?
Understanding the reasoning of the woman who agreed with Shlomo to "cut the baby in half"
Music theory behind A chord in the key of G
Explain why a line can never intersect a plane in exactly two points.
What is the highest voltage from the power supply a Raspberry Pi 3 B can handle without getting damaged?
Helping ease my back pain by studying 13 hours everyday , even weekends
My postfix server is rejecting my client: 4.7.25 Client host rejected: cannot find your hostname, [96.9.90.28]
Postfix is rejecting some incoming emails (“Client host rejected: cannot find your hostname”)Postfix rejects sender addressPostfix rejects all incoming mail (Client host rejected: Access denied)Postfix/smtpd: Client host rejected: cannot find your hostname450 4.7.1 Client host rejected: cannot find your hostnameS450 4.7.1 Client host rejected: cannot find your reverse hostnamePostfix not detecting hostname or domainMessages with SPF Softfail Not RejectedPostfix: How to accept email with valid SPF but unresolvable hostname?My postfix server rejects my python script - “Client host rejected: cannot find your hostname”
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
My postfix host is rejecting my client with this message:
4.7.25 Client host rejected: cannot find your hostname, [96.9.90.28].
From the cli on the postfix server, I get this:
root@civicrm:~# host 96.9.90.28
28.90.9.96.in-addr.arpa domain name pointer 28.90.9.96.sinet.com.kh.
So, there is a pointer record. Why would it be rejected.
I then put in a phony hostname in /etc/hosts with the same IP address and the was accepted and email successfully sent.
I then added 96.9.90.28 28.90.9.96.sinet.com.kh to the /etc/hosts file and it was also accepted.
What could be the problem?
postfix
add a comment |
My postfix host is rejecting my client with this message:
4.7.25 Client host rejected: cannot find your hostname, [96.9.90.28].
From the cli on the postfix server, I get this:
root@civicrm:~# host 96.9.90.28
28.90.9.96.in-addr.arpa domain name pointer 28.90.9.96.sinet.com.kh.
So, there is a pointer record. Why would it be rejected.
I then put in a phony hostname in /etc/hosts with the same IP address and the was accepted and email successfully sent.
I then added 96.9.90.28 28.90.9.96.sinet.com.kh to the /etc/hosts file and it was also accepted.
What could be the problem?
postfix
Your email client should be configured to send mail on port 587, not port 25.
– Michael Hampton♦
Jun 13 at 0:17
add a comment |
My postfix host is rejecting my client with this message:
4.7.25 Client host rejected: cannot find your hostname, [96.9.90.28].
From the cli on the postfix server, I get this:
root@civicrm:~# host 96.9.90.28
28.90.9.96.in-addr.arpa domain name pointer 28.90.9.96.sinet.com.kh.
So, there is a pointer record. Why would it be rejected.
I then put in a phony hostname in /etc/hosts with the same IP address and the was accepted and email successfully sent.
I then added 96.9.90.28 28.90.9.96.sinet.com.kh to the /etc/hosts file and it was also accepted.
What could be the problem?
postfix
My postfix host is rejecting my client with this message:
4.7.25 Client host rejected: cannot find your hostname, [96.9.90.28].
From the cli on the postfix server, I get this:
root@civicrm:~# host 96.9.90.28
28.90.9.96.in-addr.arpa domain name pointer 28.90.9.96.sinet.com.kh.
So, there is a pointer record. Why would it be rejected.
I then put in a phony hostname in /etc/hosts with the same IP address and the was accepted and email successfully sent.
I then added 96.9.90.28 28.90.9.96.sinet.com.kh to the /etc/hosts file and it was also accepted.
What could be the problem?
postfix
postfix
edited Jun 4 at 2:56
Vietyank
asked Jun 4 at 2:48
VietyankVietyank
1065
1065
Your email client should be configured to send mail on port 587, not port 25.
– Michael Hampton♦
Jun 13 at 0:17
add a comment |
Your email client should be configured to send mail on port 587, not port 25.
– Michael Hampton♦
Jun 13 at 0:17
Your email client should be configured to send mail on port 587, not port 25.
– Michael Hampton♦
Jun 13 at 0:17
Your email client should be configured to send mail on port 587, not port 25.
– Michael Hampton♦
Jun 13 at 0:17
add a comment |
1 Answer
1
active
oldest
votes
You postfix configuration has reject_unknown_client_hostname which rejects mails because 28.90.9.96.sinet.com.kh. doesn't resolve back to 96.9.90.28.
What is the process used by this directive to determine that 28.90.9.sinet.kh doesn't resolve back to 96.9.90.28? I thought it just looked for a PTR record
– Vietyank
Jun 14 at 1:56
I have a feeling this was a temporary thing (internet in Cambodia can be flaky). I put the directive back in and took the entry in /etc/hosts out and mail is going out without fail.
– Vietyank
Jun 14 at 2:13
@Vietyank , my answer contains a link to the postfix documentation which describes what this check does.
– AlexD
Jun 14 at 9:03
Yes. I see that. What is the process that causes the name mapping to fail?
– Vietyank
2 days ago
@Vietyank the process is the domain name resolution, when DNS server fails to return expected answer then this process fails. In your case DNS servers were returning NXDOMAIN for 28.90.9.96.sinet.com.kh.
– AlexD
2 days ago
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%2f970015%2fmy-postfix-server-is-rejecting-my-client-4-7-25-client-host-rejected-cannot-fi%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You postfix configuration has reject_unknown_client_hostname which rejects mails because 28.90.9.96.sinet.com.kh. doesn't resolve back to 96.9.90.28.
What is the process used by this directive to determine that 28.90.9.sinet.kh doesn't resolve back to 96.9.90.28? I thought it just looked for a PTR record
– Vietyank
Jun 14 at 1:56
I have a feeling this was a temporary thing (internet in Cambodia can be flaky). I put the directive back in and took the entry in /etc/hosts out and mail is going out without fail.
– Vietyank
Jun 14 at 2:13
@Vietyank , my answer contains a link to the postfix documentation which describes what this check does.
– AlexD
Jun 14 at 9:03
Yes. I see that. What is the process that causes the name mapping to fail?
– Vietyank
2 days ago
@Vietyank the process is the domain name resolution, when DNS server fails to return expected answer then this process fails. In your case DNS servers were returning NXDOMAIN for 28.90.9.96.sinet.com.kh.
– AlexD
2 days ago
add a comment |
You postfix configuration has reject_unknown_client_hostname which rejects mails because 28.90.9.96.sinet.com.kh. doesn't resolve back to 96.9.90.28.
What is the process used by this directive to determine that 28.90.9.sinet.kh doesn't resolve back to 96.9.90.28? I thought it just looked for a PTR record
– Vietyank
Jun 14 at 1:56
I have a feeling this was a temporary thing (internet in Cambodia can be flaky). I put the directive back in and took the entry in /etc/hosts out and mail is going out without fail.
– Vietyank
Jun 14 at 2:13
@Vietyank , my answer contains a link to the postfix documentation which describes what this check does.
– AlexD
Jun 14 at 9:03
Yes. I see that. What is the process that causes the name mapping to fail?
– Vietyank
2 days ago
@Vietyank the process is the domain name resolution, when DNS server fails to return expected answer then this process fails. In your case DNS servers were returning NXDOMAIN for 28.90.9.96.sinet.com.kh.
– AlexD
2 days ago
add a comment |
You postfix configuration has reject_unknown_client_hostname which rejects mails because 28.90.9.96.sinet.com.kh. doesn't resolve back to 96.9.90.28.
You postfix configuration has reject_unknown_client_hostname which rejects mails because 28.90.9.96.sinet.com.kh. doesn't resolve back to 96.9.90.28.
answered Jun 12 at 21:03
AlexDAlexD
4,74021726
4,74021726
What is the process used by this directive to determine that 28.90.9.sinet.kh doesn't resolve back to 96.9.90.28? I thought it just looked for a PTR record
– Vietyank
Jun 14 at 1:56
I have a feeling this was a temporary thing (internet in Cambodia can be flaky). I put the directive back in and took the entry in /etc/hosts out and mail is going out without fail.
– Vietyank
Jun 14 at 2:13
@Vietyank , my answer contains a link to the postfix documentation which describes what this check does.
– AlexD
Jun 14 at 9:03
Yes. I see that. What is the process that causes the name mapping to fail?
– Vietyank
2 days ago
@Vietyank the process is the domain name resolution, when DNS server fails to return expected answer then this process fails. In your case DNS servers were returning NXDOMAIN for 28.90.9.96.sinet.com.kh.
– AlexD
2 days ago
add a comment |
What is the process used by this directive to determine that 28.90.9.sinet.kh doesn't resolve back to 96.9.90.28? I thought it just looked for a PTR record
– Vietyank
Jun 14 at 1:56
I have a feeling this was a temporary thing (internet in Cambodia can be flaky). I put the directive back in and took the entry in /etc/hosts out and mail is going out without fail.
– Vietyank
Jun 14 at 2:13
@Vietyank , my answer contains a link to the postfix documentation which describes what this check does.
– AlexD
Jun 14 at 9:03
Yes. I see that. What is the process that causes the name mapping to fail?
– Vietyank
2 days ago
@Vietyank the process is the domain name resolution, when DNS server fails to return expected answer then this process fails. In your case DNS servers were returning NXDOMAIN for 28.90.9.96.sinet.com.kh.
– AlexD
2 days ago
What is the process used by this directive to determine that 28.90.9.sinet.kh doesn't resolve back to 96.9.90.28? I thought it just looked for a PTR record
– Vietyank
Jun 14 at 1:56
What is the process used by this directive to determine that 28.90.9.sinet.kh doesn't resolve back to 96.9.90.28? I thought it just looked for a PTR record
– Vietyank
Jun 14 at 1:56
I have a feeling this was a temporary thing (internet in Cambodia can be flaky). I put the directive back in and took the entry in /etc/hosts out and mail is going out without fail.
– Vietyank
Jun 14 at 2:13
I have a feeling this was a temporary thing (internet in Cambodia can be flaky). I put the directive back in and took the entry in /etc/hosts out and mail is going out without fail.
– Vietyank
Jun 14 at 2:13
@Vietyank , my answer contains a link to the postfix documentation which describes what this check does.
– AlexD
Jun 14 at 9:03
@Vietyank , my answer contains a link to the postfix documentation which describes what this check does.
– AlexD
Jun 14 at 9:03
Yes. I see that. What is the process that causes the name mapping to fail?
– Vietyank
2 days ago
Yes. I see that. What is the process that causes the name mapping to fail?
– Vietyank
2 days ago
@Vietyank the process is the domain name resolution, when DNS server fails to return expected answer then this process fails. In your case DNS servers were returning NXDOMAIN for 28.90.9.96.sinet.com.kh.
– AlexD
2 days ago
@Vietyank the process is the domain name resolution, when DNS server fails to return expected answer then this process fails. In your case DNS servers were returning NXDOMAIN for 28.90.9.96.sinet.com.kh.
– AlexD
2 days ago
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%2f970015%2fmy-postfix-server-is-rejecting-my-client-4-7-25-client-host-rejected-cannot-fi%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
Your email client should be configured to send mail on port 587, not port 25.
– Michael Hampton♦
Jun 13 at 0:17