在 Domino 服务器中打开 mail.box 文件

发布于 2024-07-26 23:56:45 字数 139 浏览 5 评论 0原文

我想以编程方式访问 Domino 服务器中的 Mail.box 文件。 使用 C#。

在打开它之前,我想看看它的内容。 我的问题是我们如何打开扩展名为 .box 的文件? 特别是Domino 服务器中的Mail.box 文件。

I want to programmatically access Mail.box file in Domino Server.
Using C#.

Before opening it i was to see it's contents.
My question is that how can we open file with .box extension?
Especially Mail.box file in Domino Server.

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

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

发布评论

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

评论(2

请爱~陌生人 2024-08-02 23:56:45

不确定我是否完全理解你。 您是说尝试访问服务器上的邮箱时这样的代码不起作用吗?

Domino.NotesDatabase database = session.GetDatabase("", "mail.box", false);

Not sure I understand you fully. Are you saying that code like this doesn't work when attempting to access the mailbox on the server?

Domino.NotesDatabase database = session.GetDatabase("", "mail.box", false);
星光不落少年眉 2024-08-02 23:56:45

Mail.box 实际上是一个笔记数据库。 所以像普通数据库一样打开它是可能的。 然而,这是由服务器专门管理的。 电子邮件消息只会暂时出现在该数据库中。 从字面上看是一秒钟。 您能够监控的唯一消息是 SMTP 进程无法发送的电子邮件。

如果这是您的意图,我建议咨询 Notes 管理员,因为我认为您可以配置服务器以在出现“死”电子邮件时向您发出警报。

Mail.box is in fact a notes database. So opening it like a normal database is possible. However this is managed exclusively by the server. Email messages appear in this database only momentarily. Literally for a second. The only messages you will be able to monitor are emails the SMTP process cannot send.

If this is your intention, I would suggest consulting a Notes Admin as I think you can configure the server to alert you in the case of "dead" emails.

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