如何在Domino服务器中创建邮箱?

发布于 2024-07-27 12:36:47 字数 108 浏览 5 评论 0原文

我想为 Domino 服务器中的每个用户创建一个邮箱。 以便为不同的用户维护不同的邮箱。 并将各自的邮件存储在其中。 示例:

用户:A 邮箱:存放用户A邮件的邮箱

I want to create a mailbox for each user in a Domino server.
In order to maintain different mailboxes for different user.
And storing their respective mails in it.
example:

User: A
Mailbox: Amailbox storing mails of user A

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

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

发布评论

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

评论(2

空‖城人不在 2024-08-03 12:36:47

如果 Name & 中已经存在 Person 文档 用户的通讯簿 (NAB),但用户还没有邮件数据库,那么您应该能够使用 Notes/Domino COM 类从 C# 执行此操作。

对于给定用户,您至少需要执行以下操作:

(1) 从邮件模板创建新数据库 (NSF)。 您可以使用 Database 类上的 COM 方法 CreateFromTemplate 来完成此操作。 (您将首先使用 Session 类上的 GetDatabase 方法获取邮件模板的句柄 - 模板文件名将为 mail8.ntf 或类似名称)。

(2) 在新创建的数据库的 ACL 中将此用户添加为管理员 - 您可以使用新创建的数据库的 Database 对象的 ACL 属性以及 ACL 类的 CreateACLEntry 方法来执行此操作。

(3) 将这个新数据库的文件路径添加到该用户的 Person 文档中,在 Name & 中。 地址簿。 这将允许邮件路由器找到为用户存放新邮件的位置。

If there already exist Person documents in the Name & Address Book (NAB) for the users, but the users do not have a mail database already, then you should be able to do this from C#, using the Notes/Domino COM classes.

For a given user, you will want to dop at least the following:

(1) create a new database (NSF) from the mail template. You can do this using the COM method CreateFromTemplate on the Database class. (You'll first get a handle to the mail template using the GetDatabase method on the Session class - the template filename will be mail8.ntf, or similar).

(2) add this user as a Manager in the ACL of the newly created database - you can do this using the ACL property of the Database object for the newly created database, and the CreateACLEntry method of the ACL class.

(3) add this new database's filepath to the Person document for this user, in the Name & Address Book. This will allow the mail router to find where to deposit new mail for the user.

信愁 2024-08-03 12:36:47

创建新用户时应使用管理客户端中的注册用户命令,这将创建用户的邮件文件和 ID。

The Register User command in the Admin Client should be used when creating new users, this creates the mail file and id of the user.

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