POP3 netcat 协议错误

发布于 2024-08-24 17:44:41 字数 296 浏览 7 评论 0原文

作为作业的一部分,我尝试连接到我的 POP3 学校服务器。现在,我可以连接到服务器,但真正的问题是当我尝试使用“USER”命令登录时。

c:/>nc server.pop3.com 110
+OK Microsoft Exchange Server 2003 POP3 server version 6.5.7638.1 (server.pop3.com) ready.
USER myuserid
-ERR Protocol error

现在我想知道是我这边有问题还是服务器有问题?感谢您的时间和答复。

I tried to connect to my POP3 school server as part of my assignment. Now, I can connect to the server but the real problem is when I try to log in using the "USER" command.

c:/>nc server.pop3.com 110
+OK Microsoft Exchange Server 2003 POP3 server version 6.5.7638.1 (server.pop3.com) ready.
USER myuserid
-ERR Protocol error

Now I'm wondering whether there's an issue on my side or on the server? Thank you for the time and answers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゝ杯具 2024-08-31 17:44:41

Exchange 期望以 CRLF 作为线路终止符。

使用

netcat -C 服务器名 pop3

Exchange expects a CRLF as line termination.

Use

netcat -C servername pop3

对你的占有欲 2024-08-31 17:44:41

连接后立即使用 CAPA 命令。

您将看到支持哪些登录机制。

Exchange 通常不允许明文机制。您很可能会被迫使用 SSL+纯文本或 APOP 登录机制。

Use CAPA command just after connection.

You'll see what login mechanisms are supported.

Exchange usually does not allow clear text mechanisms. Most likely you'll be forced to use SSL+plain text, or APOP login mechanism.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文