livemail 或 gmail 的 POP3 连接字符串?
我有一个需要“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于“POP 3 连接字符串”部分,也许这个 RFC 可以帮助您: RFC 2384 - POP URL方案:
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 :
运气好的话,可能会是这样的这也可以在您的应用程序中工作吗?
About the "POP 3 connection strings" part, maybe this RFC can help you : RFC 2384 - POP URL Scheme :
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 :
With a bit of luck, maybe something like this could work in your application too ?