B
B
betal2013-06-10 19:20:59
linux
betal, 2013-06-10 19:20:59

Problem with SMTP server

Please help me with the following issue.
SMTP is not sent - mailing to users.
If you send single messages, everything is fine.
The SPF record is configured, the Exim mail daemon, login and password access (ESMTP), I read information about the error on the Internet, but did not understand what it was about, the error is not mentioned in Runet.
Letters from the site leave without problems. We use ePochta Mailer for mailing.

no IP address found for host 5x164x130x58.dynamic.samara.ertelecom.ru (during SMTP connection from [5.164.130.58])
SMTP call from (5.164.130.58) [5.164.130.58] dropped: too many nonmail commands (last was "NOOP")
no IP address found for host 5x164x130x58.dynamic.samara.ertelecom.ru (during SMTP connection from [5.164.130.58])
SMTP call from (5.164.130.58) [5.164.130.58] dropped: too many nonmail commands (last was "NOOP")
no IP address found for host 5x164x130x58.dynamic.samara.ertelecom.ru (during SMTP connection from [5.164.130.58])
SMTP call from (5.164.130.58) [5.164.130.58] dropped: too many nonmail commands (last was "RSET")


Please help.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
D
DmZ, 2013-06-11
@betal

In your case, most likely a crookedly written mailer program. Apparently, trying to control the speed of sending messages, she does not break the connection with the SMTP server, but stupidly waits on the line sending NOOP. Exim doesn't consider this operation allowed, so it closes the connection after a while. You can, of course, increase the limit on the number of such operations (smtp_accept_max_nonmail = 1000 for example), but you can disable this check altogether:

smtp_accept_max_nonmail = :
or disable for a specific host:
smtp_accept_max_nonmail_hosts = ! 192.168.22.3
(where 192.168.22.3 is the IP address from which the mailer connects)

M
max_mara, 2013-06-11
@max_mara

Try using Postfix instead of Exim

1
1x1, 2013-06-11
@1x1

Problem between mailer and Exim? smtp_accept_max_nonmail

M
merlin-vrn, 2013-06-11
@merlin-vrn

The sending server used too many off-topic protocol commands, in this case, NOOP. The receiving server did not like this, he was offended and does not want to accept mail from such a rude person.
To be honest, I don’t understand the logic of the developer who inserted such code into the program at all. Why would NOOP be needed at all?
This is a clear jamb of the sending system. Understand the Exim settings so that it does not flood with NOOPs, or, as it was reasonably advised here, use Postfix.

M
Maxim Klyushkov, 2013-06-10
@m_klyushkov

Contact your provider with a request to register a reverse zone.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question