【问题标题】:Outlook add-in with React not visible for shared mail box带有 React 的 Outlook 加载项对于共享邮箱不可见
【发布时间】:2020-12-18 07:37:18
【问题描述】:

我们创建了一个 Outlook add-in 来将电子邮件/附件移动到 SharePoint,这对于用户邮箱来说很好,但是当我移动到共享邮箱时,加载项是 not visible

在 get add-ins to tab 中,插件可见但在功能区上不可见。

我们已在 Exchange 中配置共享邮箱并自动映射到 Outlook。 SupportsSharedFolders 设置为 true,安装清单时没有问题。

我错过了配置中的任何步骤吗?

请帮助启动共享邮箱的加载项。

编辑:我包括下面的清单文件。刚刚发现桌面客户端使用的是1.0版本覆盖,网页端和移动端使用的是1.1版本覆盖。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">
  <Id>1111111111111</Id>
  <Version>1.0.0.4</Version>
  <ProviderName>Contoso</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="Contoso E-mail"/>
  <Description DefaultValue="Contoso E-mail"/>
  <IconUrl DefaultValue="https://localhost:3000/assets/Icon64.png"/>
  <HighResolutionIconUrl DefaultValue="https://localhost:3000/assets/Icon128.png"/>
  <SupportUrl DefaultValue="https://www.Contoso.com/help"/>
  <AppDomains>
    <AppDomain>https://login.microsoftonline.com</AppDomain>
    <AppDomain>https://login.windows.net</AppDomain>

  </AppDomains>
  <Hosts>
    <Host Name="Mailbox"/>
  </Hosts>
  <Requirements>
    <Sets>
      <Set Name="Mailbox" MinVersion="1.1"/>
    </Sets>
  </Requirements>
  <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://localhost:3000/taskpane.html">
         <Override Locale="nl-nl" Value="https://localhost:3000/taskpane_nl.html" />
        </SourceLocation>
        <RequestedHeight>250</RequestedHeight>
      </DesktopSettings>
    </Form>
  </FormSettings>
  <Permissions>ReadWriteMailbox</Permissions>
  <Rule xsi:type="RuleCollection" Mode="Or">
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read"/>
  </Rule>
  <DisableEntityHighlighting>false</DisableEntityHighlighting>
  <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
    <Requirements>
      <bt:Sets DefaultMinVersion="1.3">
        <bt:Set Name="Mailbox"/>
      </bt:Sets>
    </Requirements>
    <Hosts>
      <Host xsi:type="MailHost">
        <DesktopFormFactor>
          <FunctionFile resid="Commands.Url"/>
          <ExtensionPoint xsi:type="MessageReadCommandSurface">
            <OfficeTab id="TabDefault">
              <Group id="msgReadGroup">
                <Label resid="GroupLabel"/>
                <Control xsi:type="Button" id="msgReadOpenPaneButton">
                  <Label resid="TaskpaneButton.Label"/>
                  <Supertip>
                    <Title resid="TaskpaneButton.Label"/>
                    <Description resid="TaskpaneButton.Tooltip"/>
                  </Supertip>
                  <Icon>
                    <bt:Image size="16" resid="Icon.16x16" />
                    <bt:Image size="32" resid="Icon.32x32"/>
                    <bt:Image size="80" resid="Icon.80x80"/>
                  </Icon>
                  <Action xsi:type="ShowTaskpane">
                    <SourceLocation resid="Taskpane.Url"/>
                  </Action>
                </Control>
              </Group>
            </OfficeTab>
          </ExtensionPoint>
        </DesktopFormFactor>
      </Host>
    </Hosts>
    <Resources>
      <bt:Images>
        <bt:Image id="Icon.16x16" DefaultValue="https://localhost:3000/assets/Icon16.png">
          <bt:Override Locale="nl-nl" Value="https://localhost:3000/assets/Icon16.png" />
          </bt:Image>
        <bt:Image id="Icon.32x32" DefaultValue="https://localhost:3000/assets/Icon32.png">
           <bt:Override Locale="nl-nl" Value="https://localhost:3000/assets/Icon32.png" />
           </bt:Image>
        <bt:Image id="Icon.80x80" DefaultValue="https://localhost:3000/assets/Icon80.png">
           <bt:Override Locale="nl-nl" Value="https://localhost:3000/assets/Icon80.png" />
           </bt:Image>
      </bt:Images>
      <bt:Urls>
        <bt:Url id="Commands.Url" DefaultValue="https://localhost:3000/commands.html"/>
        <bt:Url id="Taskpane.Url" DefaultValue="https://localhost:3000/taskpane.html"/>
      </bt:Urls>
      <bt:ShortStrings>
        <bt:String id="GroupLabel" DefaultValue="Contoso E-mail"/>
        <bt:String id="TaskpaneButton.Label" DefaultValue="Contoso E-mail"/>
      </bt:ShortStrings>
      <bt:LongStrings>
        <bt:String id="TaskpaneButton.Tooltip" DefaultValue="Opens a pane displaying all available properties."/>
      </bt:LongStrings>
    </Resources>
    <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">
  <Requirements>
      <bt:Sets DefaultMinVersion="1.3">
        <bt:Set Name="Mailbox"/>
      </bt:Sets>
    </Requirements>
    <Hosts>
      <Host xsi:type="MailHost">
        <DesktopFormFactor>
          <FunctionFile resid="Commands.Url"/>
          <ExtensionPoint xsi:type="MessageReadCommandSurface">
            <OfficeTab id="TabDefault">
              <Group id="msgReadGroup">
                <Label resid="GroupLabel"/>
                <Control xsi:type="Button" id="msgReadOpenPaneButton">
                  <Label resid="TaskpaneButton.Label"/>
                  <Supertip>
                    <Title resid="TaskpaneButton.Label"/>
                    <Description resid="TaskpaneButton.Tooltip"/>
                  </Supertip>
                  <Icon>
                    <bt:Image size="16" resid="Icon.16x16"/>
                    <bt:Image size="32" resid="Icon.32x32"/>
                    <bt:Image size="80" resid="Icon.80x80"/>
                  </Icon>
                  <Action xsi:type="ShowTaskpane">
                    <SourceLocation resid="Taskpane.Url"/>
                  </Action>
                </Control>
              </Group>
            </OfficeTab>
          </ExtensionPoint>
        </DesktopFormFactor>
      </Host>
      <Host xsi:type="MailHost">
        <MobileFormFactor>
    <FunctionFile resid="Commands.Url" />
    <ExtensionPoint xsi:type="MobileMessageReadCommandSurface">
      <Group id="mobileMsgRead">
        <Label resid="GroupLabel" />
        <Control xsi:type="MobileButton" id="TaskPaneBtn">
          <Label resid="TaskpaneButton.Label" />
          <Icon xsi:type="bt:MobileIconList">
            <bt:Image size="25" scale="1" resid="Icon.25x25" />
            <bt:Image size="25" scale="2" resid="Icon.25x25" />
            <bt:Image size="25" scale="3" resid="Icon.25x25" />

            <bt:Image size="32" scale="1" resid="Icon.32x32" />
            <bt:Image size="32" scale="2" resid="Icon.32x32" />
            <bt:Image size="32" scale="3" resid="Icon.32x32" />

            <bt:Image size="48" scale="1" resid="Icon.48x48" />
            <bt:Image size="48" scale="2" resid="Icon.48x48" />
            <bt:Image size="48" scale="3" resid="Icon.48x48" />
          </Icon>
          <Action xsi:type="ShowTaskpane">
            <SourceLocation resid="Taskpane.Url" />
          </Action>
        </Control>
      </Group>
    </ExtensionPoint>
  </MobileFormFactor>
      </Host>
    </Hosts>
    <Resources>
      <bt:Images>
        <bt:Image id="Icon.16x16" DefaultValue="https://localhost:3000/assets/Icon16.png">
          <bt:Override Locale="nl-nl" Value="https://localhost:3000/assets/Icon16.png" />
          </bt:Image>
        <bt:Image id="Icon.32x32" DefaultValue="https://localhost:3000/assets/Icon32.png">
          <bt:Override Locale="nl-nl" Value="https://localhost:3000/assets/Icon32.png" />
          </bt:Image>
        <bt:Image id="Icon.80x80" DefaultValue="https://localhost:3000/assets/Icon80.png">
           <bt:Override Locale="nl-nl" Value="https://localhost:3000/assets/Icon80.png" />
           </bt:Image>
      </bt:Images>
      <bt:Urls>
        <bt:Url id="Commands.Url" DefaultValue="https://localhost:3000/commands.html"/>
        <bt:Url id="Taskpane.Url" DefaultValue="https://localhost:3000/taskpane.html"/>
      </bt:Urls>
      <bt:ShortStrings>
        <bt:String id="GroupLabel" DefaultValue="Contoso E-mail"/>
        <bt:String id="TaskpaneButton.Label" DefaultValue="Contoso E-mail"/>
      </bt:ShortStrings>
      <bt:LongStrings>
        <bt:String id="TaskpaneButton.Tooltip" DefaultValue="Opens a pane displaying all available properties."/>
      </bt:LongStrings>
    </Resources>
    
  </VersionOverrides>
  </VersionOverrides>
</OfficeApp>

【问题讨论】:

标签: outlook office-js outlook-addin outlook-web-addins


【解决方案1】:

您提到“SupportsSharedFolders”设置为 true,但您共享的清单没有“SupportsSharedFolders”。请添加docs中提到的“SupportsSharedFolders”并检查。

【讨论】:

  • 现在我已经添加了“SupportsSharedFolders”,该插件没有出现在移动设备中。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2018-08-18
  • 2013-03-12
  • 1970-01-01
  • 2020-09-18
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多