如何在 C# 中使用 LDAP 列出 Domino 服务器中的邮箱
任何人都可以建议我一些链接,我可以在其中得到一些想法,即如何使用 C# 使用 LDAP 列出邮箱
我正在使用“Interop.Domino.dll”
Can anyone suggest me some link where i can get some idea i.e how to list mailbox using LDAP using C#
I am using "Interop.Domino.dll"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这类似于问题 #1238498。 这并不是真正使用 LDAP,而是使用 Interop.Domino.dll 库,您可以打开到 Notes 服务器的连接并轻松列出服务器上或特定文件夹中的所有 Notes“数据库”。 Notes 邮箱只是 Notes 数据库,恰好基于通用邮件模板设计。 因此,您可以使用相同的基本代码来循环所有数据库,然后添加一些附加代码以根据邮件模板仅过滤掉那些数据库。
This is similar to question #1238498. This is not really using LDAP, but using the Interop.Domino.dll library, can you can open a connection to a Notes server and easily list all Notes "databases" on the server, or in a particular folder. Notes mailboxes are simply Notes databases which happen to be based on a common mail template design. So, you can use the same basic code to loop over all databases, and then add some additional code to filter out only those databases based on the mail template.