LumiSoft.Net:如何访问电子邮件公共文件夹?

发布于 2024-12-14 05:07:10 字数 345 浏览 0 评论 0原文

我正在编写一个 C# 表单应用程序,它使用 LumiSoft.Net dll 通过 IMAP 连接到电子邮件地址。我可以连接到 INBOX 或电子邮件地址中的任何其他文件夹,但无法连接到公用文件夹。该库对于此类操作的唯一方法是:

public void SelectFolder(string folder)

例如,它适用于 INBOX,但当我尝试访问公共文件夹时会引发异常(NO STATUS Cannot访问文件夹“公共文件夹”)。

有没有办法访问公共文件夹?

谢谢!

I'm writing a C# forms application that uses LumiSoft.Net dll to connect to an email address using IMAP. I can connect to INBOX or any other folder in the email address, but I can not connect to public folders. The only method that this library has for this type of action is:

public void SelectFolder(string folder)

which works fine for INBOX, for example, but raises an exception when I'm trying to access public folders (NO STATUS Cannot access folder 'Public Folders').

Is there a way to access public folders?

Thanks!

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

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

发布评论

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

评论(1

谁与争疯 2024-12-21 05:07:10

那是因为 IMAP 服务器拒绝访问“公共文件夹”。
这是因为以下两者之一:
1) “公共文件夹”不可选择的文件夹。
2) 没有足够的权限访问该文件夹。

正如您可以猜测的那样,“无状态无法访问文件夹...”是服务器返回的响应。

Thats because IMAP server refuses to access 'Public Folders'.
This is because one of the two:
1) 'Public Folders' not selectable folder.
2) Not suffcient permissions to access that folder.

As you can guess "NO STATUS Cannot access folder ..." is server returned response.

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