如何从gmail下载电子邮件

如何从gmail下载电子邮件,gmail,pop3,rebol,rebol2,Gmail,Pop3,Rebol,Rebol2,我正试图用REBOL/Command创建一个小邮箱,但我无法连接我的gmail帐户,因为pop服务器是通过端口995上的SSL访问的 >> pop: open/lines ssl://pop.gmail.com:995 >> set-modes pop [secure: true] >> print first pop +OK Gpop ready for requests from 213.240.224.162 7mb34713954eem >>

我正试图用REBOL/Command创建一个小邮箱,但我无法连接我的gmail帐户,因为pop服务器是通过端口995上的SSL访问的

>> pop: open/lines ssl://pop.gmail.com:995
>> set-modes pop [secure: true]
>> print first pop
+OK Gpop ready for requests from 213.240.224.162 7mb34713954eem
>> insert pop "user ******@gmail.com"
>> print first pop
+OK send PASS
>> insert pop "pass password"
>> print first pop
+OK Welcome.
我尝试使用此代码连接服务器,但收到错误消息:

>> port: open/lines ssl://pop.gmail.com:995
>> set-modes port [secure: true]
>> mailbox: open pop://
connecting to: pop.gmail.com
** User Error: Server error: tcp connection failed
** Near: mailbox: open pop://
>> mailbox: open pop://:995
connecting to: pop.gmail.com
** User Error: Server error: tcp connection failed
** Near: mailbox: open pop://:995

有人能帮我吗?

pop方案不支持ssl。您可以尝试使用ssl编写自己的pop方案。我猜Graham Chiu做过一次。

请参阅rebol/command的spop协议

我也有Rebol3的版本。来自Saphir/Atronix的R3具有https