rebol esmtp失败?
尝试使用 smtp.hotpop.com 进行 esmtp
esend [email protected] "Test"
我想使用 http:// www.rebol.org/view-script.r?script=esmtp.r 和 http://www.rebol.org/view-script.r? script=esend.r
但失败了。
怎么了 ?
以下是帮助您设置邮件客户端所需的全部信息:
* Incoming/POP Server: pop.hotpop.com, port 110
* Alternate POP Server: pop.hotpop.com, port 1100
* Username: [email protected]
* Outgoing/SMTP Server: smtp.hotpop.com, port 25*
* Email Address: [email protected]
* Reply-To Address: [email protected] (or any other email address you have)
* Leave Messages on server: false (some clients will instead have a "Delete messages from server" option, which should be set to true).
* Maximum Message Size: 500 KB (512000 bytes)
* Mailbox Size: 10 MB
* Mailbox Usage: 0.0% (0.0 KB)
*HotPOP 的外发 (SMTP) 邮件服务器需要身份验证。用户名和密码与 POP 服务器和网站相同。不要选择“安全”密码验证。
I wanted to try esmtp with smtp.hotpop.com
esend [email protected] "Test"
using http://www.rebol.org/view-script.r?script=esmtp.r and
http://www.rebol.org/view-script.r?script=esend.r
but it fails.
What's wrong ?
Here is all the information you should need to help you set up your mail client:
* Incoming/POP Server: pop.hotpop.com, port 110
* Alternate POP Server: pop.hotpop.com, port 1100
* Username: [email protected]
* Outgoing/SMTP Server: smtp.hotpop.com, port 25*
* Email Address: [email protected]
* Reply-To Address: [email protected] (or any other email address you have)
* Leave Messages on server: false (some clients will instead have a "Delete messages from server" option, which should be set to true).
* Maximum Message Size: 500 KB (512000 bytes)
* Mailbox Size: 10 MB
* Mailbox Usage: 0.0% (0.0 KB)
*HotPOP's outgoing (SMTP) mail server requires authentication. The username and password are the same as the POP Server and website. Do not select "secure" password authentication.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我无法从这个网站得到太多的回应..并且有 100 多个问题需要回答才能注册他们的免费服务。
但 esmtp 现在已内置到最新的 rebol 二进制文件中。无需使用图书馆中的一本。
所以...尝试以下
set-net [ [电子邮件受保护] smtp .hotpop.com]
跟踪/网络开启
发送“测试”
并查看出现什么错误消息。
该协议应要求您提供用户名和密码,以便您进行身份验证。
Well, I couldn't get much of a response from this site .. and there are 100+ questions to answer to signup for their free service.
But esmtp is now built into the latest rebol binaries. no need to use one from the library.
so ...try the following
set-net [ [email protected] smtp.hotpop.com ]
trace/net on
send [email protected] "testing"
and see what error message comes up.
the protocol should ask you for your userid and password so that you can authenticate.