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

今、私は自分の側に問題があるのか​​、それともサーバーに問題があるのか​​ 疑問に思っていますか? 時間と答えをありがとう。

4

2 に答える 2

1

Exchange は、回線終端として CRLF を想定しています。

使用する

netcat -C サーバー名 pop3

于 2011-06-10T08:31:53.153 に答える
0

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.

于 2010-04-16T10:03:33.487 に答える