-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
very basis telnet commands for SMTP fail. it used to work a few weeks ago #449
Comments
I guess it is due to your |
NO option for email domain works (tried ff.com, com, ff): u:~$ telnet localhost 35 |
|
Observed while following this article on smtp over telnet https://www.redhat.com/sysadmin/telnet-troubleshoot-mail-system The workaround described by twisted1919 works for me by adding <> surrounding the email address.
|
~/mailhog$ telnet localhost 1025
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 mailhog.example ESMTP MailHog
ehlo ss.com
250-Hello ss.com
250-PIPELINING
250 AUTH PLAIN
mail from: [email protected]
550 Invalid syntax in MAIL command
rcpt to: [email protected]
500 Unrecognised command
data
500 Unrecognised command
.
500 Unrecognised command
quit
221 Bye
Connection closed by foreign host.
The text was updated successfully, but these errors were encountered: