<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
  TransferGuard Outlook add-in manifest.

  ⚠️ Structuur is CANONICAL — herbouwd op 11-06-2026 nadat Outlook.com
  (persoonlijke accounts: hotmail.com/outlook.com) drie eerdere varianten
  weigerde met "De sectie VersionOverrides 1.1 van het manifest is
  ongeldig. De tag resid is ongeldig". Een minimaal bisect-manifest in
  exact deze stijl installeerde wél. Regels die hieruit volgen:

  1. GEEN punten in id's/resids (dus "msgComposeGroup", NIET
     "TransferGuard.Group"; "Icon16", NIET "Icon.16x16"). De strenge
     consumer-validator van Outlook on the web keurt die af; de losse
     office-addin-manifest-validator vangt dit NIET.
  2. Version is 4-delig ("1.0.0.0").
  3. DefaultMinVersion/MinVersion 1.3 (bewezen werkend; runtime-API's
     worden tijdens gebruik gegate, niet bij installatie).
  4. AppDomains + DisableEntityHighlighting aanwezig (sjabloon-conform).
  5. Geen geneste VersionOverrides V1_1 nodig.
  6. Alleen ASCII in zichtbare strings (geen em-dashes; huisstijl).
  7. De Id-GUID is uniek gegenereerd; nooit vervangen door een
     voorbeeld-GUID en nooit hergebruiken uit mislukte installaties.
-->
<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"
  xsi:type="MailApp">
  <Id>a07a774b-80d2-45ae-992b-8fb145c86937</Id>
  <Version>1.0.0.1</Version>
  <ProviderName>PVG Technologies B.V.</ProviderName>
  <DefaultLocale>nl-NL</DefaultLocale>
  <DisplayName DefaultValue="TransferGuard" />
  <Description DefaultValue="Stuur aangetekende documenten rechtstreeks vanuit Outlook, met forensisch bewijs van ontvangst." />
  <IconUrl DefaultValue="https://transferguard.eu/addin/icons/icon-32.png" />
  <HighResolutionIconUrl DefaultValue="https://transferguard.eu/addin/icons/icon-128.png" />
  <SupportUrl DefaultValue="https://transferguard.eu/contact" />
  <AppDomains>
    <AppDomain>https://transferguard.eu</AppDomain>
  </AppDomains>
  <Hosts>
    <Host Name="Mailbox" />
  </Hosts>
  <Requirements>
    <Sets>
      <Set Name="Mailbox" MinVersion="1.3" />
    </Sets>
  </Requirements>
  <FormSettings>
    <Form xsi:type="ItemEdit">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://transferguard.eu/addin/taskpane.html" />
      </DesktopSettings>
    </Form>
  </FormSettings>
  <Permissions>ReadWriteItem</Permissions>
  <Rule xsi:type="ItemIs" ItemType="Message" FormType="Edit" />
  <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>
          <ExtensionPoint xsi:type="MessageComposeCommandSurface">
            <OfficeTab id="TabDefault">
              <Group id="msgComposeGroup">
                <Label resid="GroupLabel" />
                <Control xsi:type="Button" id="msgComposeOpenPaneButton">
                  <Label resid="TaskpaneButtonLabel" />
                  <Supertip>
                    <Title resid="TaskpaneButtonLabel" />
                    <Description resid="TaskpaneButtonTooltip" />
                  </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="TaskpaneUrl" />
                  </Action>
                </Control>
              </Group>
            </OfficeTab>
          </ExtensionPoint>
        </DesktopFormFactor>
      </Host>
    </Hosts>
    <Resources>
      <bt:Images>
        <bt:Image id="Icon16" DefaultValue="https://transferguard.eu/addin/icons/icon-16.png" />
        <bt:Image id="Icon32" DefaultValue="https://transferguard.eu/addin/icons/icon-32.png" />
        <bt:Image id="Icon80" DefaultValue="https://transferguard.eu/addin/icons/icon-80.png" />
      </bt:Images>
      <bt:Urls>
        <bt:Url id="TaskpaneUrl" DefaultValue="https://transferguard.eu/addin/taskpane.html" />
      </bt:Urls>
      <bt:ShortStrings>
        <bt:String id="GroupLabel" DefaultValue="TransferGuard" />
        <bt:String id="TaskpaneButtonLabel" DefaultValue="Aangetekend versturen" />
      </bt:ShortStrings>
      <bt:LongStrings>
        <bt:String id="TaskpaneButtonTooltip" DefaultValue="Stuur dit bericht aangetekend via TransferGuard, met forensisch bewijs van ontvangst." />
      </bt:LongStrings>
    </Resources>
  </VersionOverrides>
</OfficeApp>
