1

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

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

或者

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

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

该应用程序(试图连接到 POP3 帐户以处理电子邮件退回)只是给出了一个错误。

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

相关产品的技术支持人员说“向 Microsoft 索要 Windows Live 邮件的连接字符串”。我不认为它值得努力去问 - 但希望这里有人能对这个问题有所了解。

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

4

1 回答 1

2

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 ?

于 2009-12-01T05:35:49.067 回答