查找特定邮件地址的公用文件夹

时间:2016-03-23 13:43:53

标签: c# exchange-server exchangewebservices ews-managed-api

在一个公用文件夹邮箱中,我有两个已启用邮件的文件夹。

  • 文件夹1的电子邮件地址为folder1@contoso.com
  • 文件夹2的电子邮件地址为folder2@contoso.com

现在,当为GAL选择所有Active Directory条目时,有一些条目:

  • displayName" Folder 1",mail" folder1@contoso.com"
  • displayName" Folder 2",mail" folder2@contoso.com"
  • displayName" User 1",mail" user1@contoso.com"
  • ...
  • displayName"用户100",mail" user100@contoso.com"

因此,我自然会将这些电子邮件地址称为EWS自动发现。这适用于所有用户,但不适用于公共文件夹 - 它说它无法找到该电子邮件地址的邮箱。所以我从Active Directory获得邮箱的电子邮件地址并连接到该邮箱。

但是我现在如何遍历相应的文件夹?我试过了:

FolderView view = new FolderView(1);
view.Traversal = FolderTraversal.Shallow;
var folders = ews.FindFolders(
        WellKnownFolderName.Root, 
        new SearchFilter.IsEqualTo(
            FolderSchema.DisplayName, // <- how can I search by the folder's email address?
            displayName
        ), view);

这会引发以下非常有用的错误消息:

Internal Server Error. The operation failed.

为了完整起见,创建了以下EWS XML:

<Trace Tag="EwsRequest" Tid="121" Time="2016-03-23 13:31:41Z" Version="15.00.0913.015">
  <?xml version="1.0" encoding="utf-8"?>
  <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header>
      <t:RequestServerVersion Version="Exchange2013" />
      <t:ExchangeImpersonation>
        <t:ConnectingSID>
          <t:SmtpAddress>testpublicfoldermailbox@contoso.com</t:SmtpAddress>
        </t:ConnectingSID>
      </t:ExchangeImpersonation>
    </soap:Header>
    <soap:Body>
      <m:FindFolder Traversal="Shallow">
        <m:FolderShape>
          <t:BaseShape>AllProperties</t:BaseShape>
        </m:FolderShape>
        <m:IndexedPageFolderView MaxEntriesReturned="1" Offset="0" BasePoint="Beginning" />
        <m:Restriction>
          <t:IsEqualTo>
            <t:FieldURI FieldURI="folder:DisplayName" />
            <t:FieldURIOrConstant>
              <t:Constant Value="Test Public Folder Mailbox" />
            </t:FieldURIOrConstant>
          </t:IsEqualTo>
        </m:Restriction>
        <m:ParentFolderIds>
          <t:DistinguishedFolderId Id="root" />
        </m:ParentFolderIds>
      </m:FindFolder>
    </soap:Body>
  </soap:Envelope>
</Trace>

以及服务器的以下响应:

<Trace Tag="EwsResponse" Tid="121" Time="2016-03-23 13:31:41Z" Version="15.00.0913.015">
  <?xml version="1.0" encoding="utf-8"?>
  <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body>
      <s:Fault>
        <faultcode xmlns:a="http://schemas.microsoft.com/exchange/services/2006/types">a:ErrorInternalServerError</faultcode>
        <faultstring xml:lang="de-DE">Interner Serverfehler. Fehler bei diesem Vorgang.</faultstring>
        <detail>
          <e:ResponseCode xmlns:e="http://schemas.microsoft.com/exchange/services/2006/errors">ErrorInternalServerError</e:ResponseCode>
          <e:Message xmlns:e="http://schemas.microsoft.com/exchange/services/2006/errors">Interner Serverfehler. Fehler bei diesem Vorgang.</e:Message>
        </detail>
      </s:Fault>
    </s:Body>
  </s:Envelope>
</Trace>

可能导致该问题的原因或在哪里可以找到有关此问题发生原因的其他信息?

2 个答案:

答案 0 :(得分:1)

这里有一些问题首先您不能使用EWS或任何邮箱访问API直接打开公用文件夹邮箱,您应该通过正确的API端点访问公共文件夹,例如DistinguishedFolderIdNameType。 publicfoldersroot也试图冒充公用文件夹邮箱,例如

    <t:ConnectingSID>
      <t:SmtpAddress>testpublicfoldermailbox@contoso.com</t:SmtpAddress>
    </t:ConnectingSID>

您不能这样做,您只能模拟有效用户,在访问公用文件夹树的情况下,您应该使用对您要访问的公用文件夹具有权限的用户。您应该对PublicFolder邮箱SMTP做的唯一事情是设置路由标头以确保您的请求正确路由请参阅https://msdn.microsoft.com/en-us/library/office/dn818490(v=exchg.150).aspx

要查找公用文件夹以用户身份连接并搜索公用文件夹树及其所有子项,您无法使用公用文件夹树进行深度遍历,因此您需要单独进行每个子文件夹级别的浅遍历请求。我有EWS Power shell库,可以执行此操作以及枚举MailEnabled文件夹等一些可能有用的内容https://github.com/gscales/Powershell-Scripts/blob/master/PublicFolderMod.ps1

如果您使用Exchange 2013,则可以使用Exchange管理Shell Get-MailPublicFolder cmdlet获取文件夹的HexEntryId,然后使用ConvertId将其转换为EWSid并直接绑定到该文件夹​​。

干杯 格伦

答案 1 :(得分:0)

对于正在搜索的人,某些C#代码绑定到某个公用文件夹:

AlternatePublicFolderId hexId = new AlternatePublicFolderId(IdFormat.HexEntryId, directoryEntry.msExchPublicFolderEntryId);
AlternatePublicFolderId ewsId = service.ConvertId(hexId, IdFormat.EwsId) as AlternatePublicFolderId;
calendar = CalendarFolder.Bind(service, new FolderId(ewsId.FolderId));