On Thu, Aug 18, 2022 at 03:10:57PM -0400, [email protected] wrote:
> I am trying to understand what the connecting client is doing in this
> situation on submission port 587. I replaced my domain with
> example.com.
>
> Aug 18 14:15:27 mx postfix/smtpd[26495]: warning: hostname
> dsl-201-121-80-137-dyn.prod-infinitum.com.mx does not resolve to address
> 201.121.80.137: Name or service not known
> Aug 18 14:15:27 mx postfix/smtpd[26495]: connect from unknown[201.121.80.137]
> Aug 18 14:15:27 mx postfix/smtpd[26495]: NOQUEUE: reject: RCPT from
> unknown[201.121.80.137]: 554 5.7.1 <[email protected]>: Recipient address
> rejected: Access denied; from=<[email protected]> to=<[email protected]>
> proto=ESMTP helo=<TDA1017C2>
> Aug 18 14:15:27 mx postfix/smtpd[26495]: lost connection after RCPT from
> unknown[201.121.80.137]
This client DID NOT attempt to guess a login name + password, nor even
both with TLS (you should only enable SASL after TLS):
main.cf:
smtpd_tls_auth_only = yes
It sent:
EHLO TDA1017C2
MAIL FROM:<[email protected]>
RCPT TO:<[email protected]>
with "RCPT TO:" rejected by your server, at which point the client
closed the connection without sending QUIT.
> Aug 18 14:15:27 mx postfix/smtpd[26495]: disconnect from
> unknown[201.121.80.137] ehlo=1 mail=1 rcpt=0/1 commands=2/3
>
> Normally when someone is trying to guess submission logins i would see
> something like:
> warning: unknown[62.233.50.137]: SASL PLAIN authentication failed: Connection
> lost to authentication server
--
Viktor.