如何在 Exchange Server 2007 中关闭特定用户的服务

发布于 2024-12-03 04:17:01 字数 175 浏览 0 评论 0原文

我是 Exchange Server2007 编程新手。我的场景是一次从多个用户帐户读取邮件。现在我正在读取一个用户的信息,但不能同时读取第二个用户的信息。任何人都可以帮我得到这个吗?我假设如何关闭特定用户的服务并继续为其他用户提供相同的服务。

这是一个截止日期的情况。立即响应会有很大帮助。

提前致谢。

I am new to Exhange Server2007 programming. My scenario is to read mails from more than one user account at a time. Now I am reading information of one user but not for the second user at same time. Can an anybody help me to get this. I am assuming that how I can close the service for a specific user and continue for the other user with the same service.

It's a deadline situation. Immediate response can be greately helped.

Thanks in advance.

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

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

发布评论

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

评论(1

守护在此方 2024-12-10 04:17:01

假设您使用的是 Exchange Web 服务或 EWS 托管 API,则无需关闭任何内容。

给予适当的权限(这是您真正需要的),只需在绑定操作中指定用户的主电子邮件地址即可打开其他用户的邮箱:

var folder = Folder.Bind(service, new FolderId(WellKnownFolderName.Inbox, new Mailbox("[email protected]")));

Assuming you are using the Exchange Web Services or EWS Managed API, you don't need to close anything.

Given the appropiate permissions (this is what you really need), just open the other users mailbox by specifying the users primary email address in the Bind operation:

var folder = Folder.Bind(service, new FolderId(WellKnownFolderName.Inbox, new Mailbox("[email protected]")));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文