作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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
谁能帮帮我?
最佳答案
参见 http://re-bol.com/prot-spop.r用于 rebol/command 的 spop 协议(protocol)。
我在某处也有 Rebol3 的版本。来自 Saphir/Atronix 的 R3 有 https。
关于gmail - 如何从gmail下载电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21855329/
我是一名优秀的程序员,十分优秀!