livemail 或 gmail 的 POP3 连接字符串?

发布于 2024-08-12 18:38:54 字数 516 浏览 6 评论 0原文

我有一个需要“POP 3 连接字符串”的第三方应用程序。 我从来没有听说过这样的事情,但显然它看起来像这样:

 Line 314; connection string: {pop3.live.com:995/pop3/ssl}INBOX

或者

 {outlook.XXXXXXXX.net:993/imap/ssl/novalidate-cert}INBOX

问题是我似乎无法为某些有效的 Live mail 或 Gmail 创建连接字符串。

应用程序(正在尝试连接到 POP3 帐户以处理电子邮件退回)- 只是给出错误。

我似乎无法在任何地方找到有关 POP 3 连接字符串的任何文档。我认为这一定是某种标准。

该产品的技术支持人员表示“请向 Microsoft 询问 Windows Live 邮件的连接字符串”。我认为不值得花力气去问 - 但希望这里有人能够阐明这个问题。

也许 POP3 连接测试工具也很有用?

I have a third party application that requires a 'POP 3 connection string'.
I'd never heard of such a thing but apparently it looks something like this :

 Line 314; connection string: {pop3.live.com:995/pop3/ssl}INBOX

or

 {outlook.XXXXXXXX.net:993/imap/ssl/novalidate-cert}INBOX

The problem is I can't seem to create a connection string for some either Live mail or Gmail that works.

The application - (which is trying to connect to the POP3 account to process email bounces) - just gives an error.

I just cant seem to find ANY documentation anywhere about POP 3 connection strings. I assume it must be some kind of standard.

The tech support for the product in question said "Ask Microsoft for the connection string for Windows Live mail". I don't think its worth the effort trying to ask - but hoped someone here could shed some light on the issue.

Perhaps a POP3 connection testing tool would be useful too?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜扑 2024-08-19 18:38:54

关于“POP 3 连接字符串”部分,也许这个 RFC 可以帮助您: RFC 2384 - POP URL方案

POP URL 的一般形式为:

pop://<用户>;auth=@<主机>:<端口>

About the URL for gmail... Not that simple ; maybe the code example in [this article][2] can help ; there is a comment in the code that says :

/*
 * Access Gmail POP account
 */
/*
 $message_file='pop3://'.$user.':'.$password.'@pop.gmail.com:995/1?tls=1&debug=1&html_debug=1';
  */

运气好的话,可能会是这样的这也可以在您的应用程序中工作吗?

About the "POP 3 connection strings" part, maybe this RFC can help you : RFC 2384 - POP URL Scheme :

A POP URL is of the general form:

pop://<user>;auth=<auth>@<host>:<port>

About the URL for gmail... Not that simple ; maybe the code example in [this article][2] can help ; there is a comment in the code that says :

/*
 * Access Gmail POP account
 */
/*
 $message_file='pop3://'.$user.':'.$password.'@pop.gmail.com:995/1?tls=1&debug=1&html_debug=1';
  */

With a bit of luck, maybe something like this could work in your application too ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文