如何在 C# 中使用 LDAP 列出 Domino 服务器中的邮箱

发布于 2024-07-29 22:05:05 字数 89 浏览 10 评论 0原文

任何人都可以建议我一些链接,我可以在其中得到一些想法,即如何使用 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 技术交流群。

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

发布评论

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

评论(1

书信已泛黄 2024-08-05 22:05:06

这类似于问题 #1238498。 这并不是真正使用 LDAP,而是使用 Interop.Domino.dll 库,您可以打开到 Notes 服务器的连接并轻松列出服务器上或特定文件夹中的所有 Notes“数据库”。 Notes 邮箱只是 Notes 数据库,恰好基于通用邮件模板设计。 因此,您可以使用相同的基本代码来循环所有数据库,然后添加一些附加代码以根据邮件模板仅过滤掉那些数据库。

NotesSession s = new Domino.NotesSessionClass();
s.Initialize("MyPassword");
NotesDbDirectory d = s.GetDbDirectory ("MyServer");
NotesDatabase db = d.GetFirstDatabase();
...

// loop over all DB's
String sPath = db.filePath;
String sTemplateName = db.TemplateName;
// here, you can check if the template name contains "mail", for example
...
db = d.getNextDatabase (db);
...

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.

NotesSession s = new Domino.NotesSessionClass();
s.Initialize("MyPassword");
NotesDbDirectory d = s.GetDbDirectory ("MyServer");
NotesDatabase db = d.GetFirstDatabase();
...

// loop over all DB's
String sPath = db.filePath;
String sTemplateName = db.TemplateName;
// here, you can check if the template name contains "mail", for example
...
db = d.getNextDatabase (db);
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文