<?xml version="1.0" encoding="UTF-8"?>
<!--Created:ce44715c-8c4e-446b-879c-ea9ebe0f09c8-->
<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">

  <!-- Begin Basic Settings: Add-in metadata, used for all versions of Office unless override provided. -->

  <!-- IMPORTANT! Id must be unique for your add-in, if you reuse this manifest ensure that you change this id to a new GUID. -->
  <Id>c5b8fea1-e7d7-4a46-a28b-be4c35d229ec</Id>

  <!--Version. Updates from the store only get triggered if there is a version change. -->
  <Version>2.29.0.0</Version>
  <ProviderName>Emailgistics</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
  <DisplayName DefaultValue="Emailgistics" />
  <Description DefaultValue="Emailgistics Add-in"/>
  <IconUrl DefaultValue="https://emailgisticsadd-in.azurewebsites.net/Images/icon64.png"/>

  <SupportUrl DefaultValue="https://emailgistics.com/support" />
  <!-- Domains that will be allowed when navigating. For example, if you use ShowTaskpane and then have an href link, navigation will only be allowed if the domain is on this list. -->
  <AppDomains>
    <AppDomain>https://emailgisticsadd-in.azurewebsites.net</AppDomain>
    <AppDomain>https://outlook.office.com</AppDomain>
    <AppDomain>https://outlook.live.com</AppDomain>
    <AppDomain>https://login.microsoft.com</AppDomain>
    <AppDomain>https://c1.emailgistics.com</AppDomain>
    <AppDomain>https://us1.emailgistics.com</AppDomain>

  </AppDomains>
  <!--End Basic Settings. -->

  <Hosts>
    <Host Name="Mailbox" />
  </Hosts>
  <Requirements>
    <Sets>
      <Set Name="Mailbox" MinVersion="1.10" />
    </Sets>
  </Requirements>
  <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://emailgisticsadd-in.azurewebsites.net/MessageRead"/>
        <RequestedHeight>250</RequestedHeight>
      </DesktopSettings>
    </Form>
  </FormSettings>

  <Permissions>ReadWriteItem</Permissions>
  <Rule xsi:type="RuleCollection" Mode="Or">
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="ReadOrEdit" />
  </Rule>
  <DisableEntityHighlighting>false</DisableEntityHighlighting>

  <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
    <VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">
      <Requirements>
        <bt:Sets DefaultMinVersion="1.10">
          <bt:Set Name="Mailbox" />
        </bt:Sets>
      </Requirements>
      <Hosts>
        <Host xsi:type="MailHost">

          <Runtimes>
            <!-- HTML file including reference to or inline JavaScript event handlers.
                 This is used by Outlook on the web. -->
            <Runtime resid="EventHTML">
              <!-- JavaScript file containing event handlers. This is used by Outlook Desktop. -->
              <Override type="javascript" resid="EventJS"/>
            </Runtime>
          </Runtimes>

          <DesktopFormFactor>
            <SupportsSharedFolders>true</SupportsSharedFolders>
            <ExtensionPoint xsi:type="MessageComposeCommandSurface">
              <OfficeTab id="TabDefault">
                <!-- OfficeTab Definition -->
                <!-- Up to 6 Groups added per Tab -->
                <Group id="msgEditGroup">
                  <Label resid="groupLabelCompose" />
                  <!-- Launch the add-in : task pane button -->
                  <Control xsi:type="Button" id="msgComposePaneButton">
                    <Label resid="composeButtonLabel" />
                    <Supertip>
                      <Title resid="paneReadSuperTipTitle" />
                      <Description resid="paneReadSuperTipDescription" />
                    </Supertip>
                    <Icon>
                      <bt:Image size="16" resid="icon16" />
                      <bt:Image size="32" resid="icon32" />
                      <bt:Image size="80" resid="icon80" />
                    </Icon>
                    <Action xsi:type="ShowTaskpane">
                      <SourceLocation resid="messageComposeTaskPaneUrl" />
                      <SupportsPinning>true</SupportsPinning>
                    </Action>
                  </Control>
                  <!-- Go to http://aka.ms/ButtonCommands to learn how to add more Controls: ExecuteFunction and Menu -->
                </Group>
              </OfficeTab>
            </ExtensionPoint>
            <!-- Message Read -->
            <ExtensionPoint xsi:type="MessageReadCommandSurface">
              <!-- Use the default tab of the ExtensionPoint or create your own with <CustomTab id="myTab"> -->
              <OfficeTab id="TabDefault">
                <!-- Up to 6 Groups added per Tab -->
                <Group id="msgReadGroup">
                  <Label resid="groupLabel" />
                  <!-- Launch the add-in : task pane button -->
                  <Control xsi:type="Button" id="msgReadOpenPaneButton">
                    <Label resid="paneReadButtonLabel" />
                    <Supertip>
                      <Title resid="paneReadSuperTipTitle" />
                      <Description resid="paneReadSuperTipDescription" />
                    </Supertip>
                    <Icon>
                      <bt:Image size="16" resid="icon16" />
                      <bt:Image size="32" resid="icon32" />
                      <bt:Image size="80" resid="icon80" />
                    </Icon>
                    <Action xsi:type="ShowTaskpane">
                      <SourceLocation resid="messageReadTaskPaneUrl" />
                      <SupportsPinning>true</SupportsPinning>
                    </Action>
                  </Control>
                  <!-- Go to http://aka.ms/ButtonCommands to learn how to add more Controls: ExecuteFunction and Menu -->
                </Group>
              </OfficeTab>
            </ExtensionPoint>
            <!-- Go to http://aka.ms/ExtensionPointsCommands to learn how to add more Extension Points: MessageRead, AppointmentOrganizer, AppointmentAttendee -->
            <!-- Enable launching the add-in on the included events. -->
            <ExtensionPoint xsi:type="LaunchEvent">
              <LaunchEvents>
                <LaunchEvent Type="OnNewMessageCompose" FunctionName="onMessageComposeHandler"/>
              </LaunchEvents>
              <!-- Identifies the runtime to be used (also referenced by the Runtime element). -->
              <SourceLocation resid="EventHTML"/>
            </ExtensionPoint>
          </DesktopFormFactor>
        </Host>
      </Hosts>

      <Resources>
        <bt:Images>
          <bt:Image id="icon16" DefaultValue="https://emailgisticsadd-in.azurewebsites.net/Images/icon16.png"/>
          <bt:Image id="icon32" DefaultValue="https://emailgisticsadd-in.azurewebsites.net/Images/icon32.png"/>
          <bt:Image id="icon80" DefaultValue="https://emailgisticsadd-in.azurewebsites.net/Images/icon80.png"/>
        </bt:Images>
        <bt:Urls>
          <bt:Url id="messageReadTaskPaneUrl" DefaultValue="https://emailgisticsadd-in.azurewebsites.net/MessageRead"/>
          <bt:Url id="messageComposeTaskPaneUrl" DefaultValue="https://emailgisticsadd-in.azurewebsites.net/MessageCompose"/>
          <bt:Url id="EventHTML" DefaultValue="https://emailgisticsadd-in.azurewebsites.net/Event" />
          <!-- Entry needed for Outlook Desktop. -->
          <bt:Url id="EventJS" DefaultValue="https://emailgisticsadd-in.azurewebsites.net/Event.js" />
        </bt:Urls>
        <bt:ShortStrings>
          <bt:String id="groupLabel" DefaultValue="Emailgistics Add-in"/>
          <bt:String id="groupLabelCompose" DefaultValue="Emailgistics Add-in"/>
          <bt:String id="customTabLabel"  DefaultValue="Emailgistics Add-in"/>
          <bt:String id="paneReadButtonLabel" DefaultValue="Emailgistics"/>
          <bt:String id="composeButtonLabel" DefaultValue="Emailgistics"/>
          <bt:String id="paneReadSuperTipTitle" DefaultValue="Team Inbox Management"/>
        </bt:ShortStrings>
        <bt:LongStrings>
          <bt:String id="paneReadSuperTipDescription" DefaultValue="Opens a pane displaying user availability, comments and the option to archive messages."/>
        </bt:LongStrings>
      </Resources>
    </VersionOverrides>
  </VersionOverrides>
</OfficeApp>