2016-05-11 37 views
0

不顯示我收到了來自微軟 驗證測試結果的答覆:Outlook插件命令和Outlook中

「因爲它觸發的所有消息或所有約會外接程序必須使用附加命令。插件命令已被引入,因爲它們導致了更好,更易發現的原生和吸引人的體驗要了解如何實現插件命令,請參閱此文章:https://msdn.microsoft.com/ENUS/library/office/mt267547.aspx

您的加載項不是在帶有Internet Explorer 11的Windows 10上的Outlook 2016客戶端或者在帶有Internet Explorer 11的Windows 7上的Outlook 2013客戶端上工作。在閱讀任何內容時,我們無法觸發加載項電子郵件。注意:當在Outlook Web App中查看電子郵件時,我們可以插入您的加載項。「

我無法理解我在做什麼錯誤。爲什麼我的加載項不顯示在Outlook中?

我的清單(所有網址工作):

<?xml version="1.0" encoding="UTF-8"?> 
<!--Created:cb85b80c-f585-40ff-8bfc-12ff4d0e34a9--> 
<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>9230b645-1919-43a0-a568-1f2300fe06b0</Id> 
    <Version>1.0.0.0</Version> 
    <ProviderName>Information Technologies Ltd.</ProviderName> 
    <DefaultLocale>en-US</DefaultLocale> 
    <DisplayName DefaultValue="Clobbi CRM" /> 
    <Description DefaultValue="Clobbi CRM"/> 
    <IconUrl DefaultValue="MY_URL" /> 
    <HighResolutionIconUrl DefaultValue="MY_URL" /> 
    <SupportUrl DefaultValue="https://support.it.ua"></SupportUrl> 
    <Hosts> 
    <Host Name="Mailbox" /> 
    </Hosts> 
    <Requirements> 
    <Sets DefaultMinVersion="1.1"> 
     <Set Name="MailBox" /> 
    </Sets> 
    </Requirements> 
    <FormSettings > 
    <Form xsi:type="ItemRead"> 
     <DesktopSettings>   
     <SourceLocation DefaultValue="MY_URL"/> 
     <RequestedHeight>450</RequestedHeight>   
     </DesktopSettings> 
    </Form>  
    </FormSettings> 
    <Permissions>ReadItem</Permissions> 
    <Rule xsi:type="RuleCollection" Mode="Or"> 
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" /> 
    <Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Read" /> 

    </Rule> 
    <DisableEntityHighlighting>false</DisableEntityHighlighting> 
    <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0"> 

    <Description resid="residDescription" /> 

    <Requirements> 
     <bt:Sets DefaultMinVersion="1.3"> 
     <bt:Set Name="Mailbox" /> 
     </bt:Sets> 
    </Requirements> 

    <Hosts> 
     <Host xsi:type="MailHost"> 
     <DesktopFormFactor>   

     <ExtensionPoint xsi:type="MessageReadCommandSurface"> 
      <OfficeTab id="TabDefault"> 
       <Group id="msgReadDemoGroup"> 
       <Label resid="groupLabel" /> 
       <Control xsi:type="Button" id="msgReadOpenPaneButton"> 
        <Label resid="paneReadButtonLabel" /> 
        <Supertip> 
        <Title resid="paneReadSuperTipTitle" /> 
        <Description resid="paneReadSuperTipDescription" /> 
        </Supertip> 
        <Icon> 
        <bt:Image size="16" resid="green-icon-16" /> 
        <bt:Image size="32" resid="green-icon-32" /> 
        <bt:Image size="80" resid="green-icon-80" /> 
        </Icon> 
        <Action xsi:type="ShowTaskpane"> 
        <SourceLocation resid="readTaskPaneUrl" /> 
        </Action> 
       </Control> 
       </Group> 
      </OfficeTab> 
      </ExtensionPoint> 

     </DesktopFormFactor> 
     </Host> 
    </Hosts> 

    <Resources> 
     <bt:Images> 
     <bt:Image id="green-icon-16" DefaultValue="MY_URL"/> 
     <bt:Image id="green-icon-32" DefaultValue="MY_URL"/> 
     <bt:Image id="green-icon-80" DefaultValue="MY_URL"/>  
     </bt:Images> 
     <bt:Urls> 
     <bt:Url id="functionFile" DefaultValue="MY_URL"/> 
     <bt:Url id="readTaskPaneUrl" DefaultValue="MY URL"/>    
     </bt:Urls> 
     <bt:ShortStrings> 
     <bt:String id="groupLabel" DefaultValue="Clobbi CRM"/> 
     <bt:String id="paneReadButtonLabel" DefaultValue="Clobbi CRM"/> 
     <bt:String id="paneReadSuperTipTitle" DefaultValue="Нажмите чтобы открыть Clobbi CRM."/> 
     </bt:ShortStrings> 
     <bt:LongStrings> 
     <bt:String id="paneReadSuperTipDescription" DefaultValue="Нажмите чтобы открыть Clobbi CRM."/> 
     </bt:LongStrings> 
    </Resources> 
    </VersionOverrides> 
</OfficeApp> 

回答

0

<Description resid="residDescription" />是指不包括在你的<Resources>

它沒有顯示在所有的,原因就相關的渣油。這個。當你定義VersionOverrides Outlook for w不理會默認設置(即你「覆蓋」的設置)。當它在VersionOverrides內遇到錯誤時,它無法渲染加載項命令。不幸的是,Outlook不會「回退」到默認處理,它只是無法加載加載項。