我想使用 openssl s_client 访问 Gmail POP3S 服务器。我正在做以下事情:
$ openssl s_client -connect pop.gmail.com:995
+OK Gpop ready for requests from <removed: ip> d11pf35377217wam.36
USER <removed: user@gmail.com>
+OK send PASS
PASS <removed: password>
+OK Welcome.
LIST
+OK 1 messages (2197 bytes)
1 2197
.
STAT
+OK 1 2197
RETR 1
RENEGOTIATING
Run Code Online (Sandbox Code Playgroud)
问题是我永远无法执行 RETR 命令。“RENEGOTIATING”时它总是挂起。
我缺少什么?