<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
  Classic Outlook Add-in XML manifest. Outlook uses the MailApp schema
  (different from Word/Excel TaskPaneApp). We expose the task pane on
  both message Read and Compose forms so the user gets the Moegent
  panel whether they're triaging an open message or drafting a reply.
-->
<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>d24d0bbf-9238-4ae9-a9f5-59d78856c6f3</Id>
  <Version>0.1.0.0</Version>
  <ProviderName>Moegent</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="Moegent for Outlook"/>
  <Description DefaultValue="Domain-specialist AI in Outlook — install plugins (Triage Assistant, Meeting Brief, Follow-up Writer) for the open message."/>
  <IconUrl DefaultValue="https://addin.moegent.com/assets/icon-color-32.png"/>
  <HighResolutionIconUrl DefaultValue="https://addin.moegent.com/assets/icon-color-128.png"/>
  <SupportUrl DefaultValue="https://moegent.com/support"/>

  <AppDomains>
    <AppDomain>https://api.moegent.com</AppDomain>
    <AppDomain>https://gateway.ops360.io</AppDomain>
  </AppDomains>

  <Hosts>
    <Host Name="Mailbox"/>
  </Hosts>

  <Requirements>
    <Sets>
      <Set Name="Mailbox" MinVersion="1.5"/>
    </Sets>
  </Requirements>

  <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://addin.moegent.com/taskpane.html"/>
        <RequestedHeight>250</RequestedHeight>
      </DesktopSettings>
    </Form>
    <Form xsi:type="ItemEdit">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://addin.moegent.com/taskpane.html"/>
      </DesktopSettings>
    </Form>
  </FormSettings>

  <Permissions>ReadWriteMailbox</Permissions>

  <Rule xsi:type="RuleCollection" Mode="Or">
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read"/>
    <Rule xsi:type="ItemIs" ItemType="Message" FormType="Edit"/>
  </Rule>

  <DisableEntityHighlighting>false</DisableEntityHighlighting>
</OfficeApp>
