LumiSoft.Net:如何访问电子邮件公共文件夹?
我正在编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那是因为 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.