Initial commit: OL Rescue Outlook add-in (New Outlook + Graph)

Made-with: Cursor
This commit is contained in:
2026-04-06 23:01:07 -07:00
commit 21e2ac98cd
18 changed files with 1062 additions and 0 deletions

39
manifest.xml Normal file
View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:type="MailApp">
<Id>0b5e2d6a-8a1c-4f2e-9e0b-4a1c2d3e4f5a</Id>
<Version>1.0.0.0</Version>
<ProviderName>OL Rescue</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="OL Rescue"/>
<Description DefaultValue="File mail by TrackingID into Inbox subfolders for New Outlook (Microsoft Graph)."/>
<IconUrl DefaultValue="https://localhost:3000/icon-32.png"/>
<HighResolutionIconUrl DefaultValue="https://localhost:3000/icon-128.png"/>
<SupportUrl DefaultValue="https://localhost:3000"/>
<AppDomains>
<AppDomain>https://localhost:3000</AppDomain>
<AppDomain>https://login.microsoftonline.com</AppDomain>
</AppDomains>
<Hosts>
<Host Name="Mailbox"/>
</Hosts>
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.8"/>
</Sets>
</Requirements>
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="https://localhost:3000/index.html"/>
<RequestedHeight>450</RequestedHeight>
</DesktopSettings>
</Form>
</FormSettings>
<Permissions>ReadWriteItem</Permissions>
<Rule xsi:type="Rule" FormType="Read">
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read"/>
</Rule>
<DisableEntityHighlighting>false</DisableEntityHighlighting>
</OfficeApp>