1

Topic: The remote server checks for the existence of the mailbox

Need help!!!
We have the following situation. We write a regular letter to our clients and receive an error in response.
<a.shupljak@belaz.minsk.by>: host smtp1.belaz.minsk.by[178.124.155.100] said:
550 5.7.1 <a.shupljak@belaz.minsk.by>... Sender address verification failed
(in reply to RCPT TO command)

The remote server checks for the existence of the email address, but our server IRedMail does not allow verification.
How can I enable mailbox verification?

Post's attachments

Screenshot_2.jpg
Screenshot_2.jpg 89.94 kb, 1 downloads since 2024-09-09 

You don't have the permssions to download the attachments of this post.

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: The remote server checks for the existence of the mailbox

ptr:178.124.155.100 -> 100.155.124.178.in-addr.arpa

you are missing the PTR

https://docs.iredmail.org/setup.dns.html

3

Re: The remote server checks for the existence of the mailbox

iRedMail disables the SMTP VRFY command by default in /etc/postfix/main.cf:

disable_vrfy_command = yes

You can set it to "no" to enable it.

WARNING: although this server can verify the address now, but it also means others can verify too, including hackers / crackers / spammers.

4

Re: The remote server checks for the existence of the mailbox

ZhangHuangbin wrote:

iRedMail disables the SMTP VRFY command by default in /etc/postfix/main.cf:

disable_vrfy_command = yes

You can set it to "no" to enable it.

WARNING: although this server can verify the address now, but it also means others can verify too, including hackers / crackers / spammers.

Thank you very much for the explanation!