Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
super-simple-outlook-add-in/manifest.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (34 sloc)
1.67 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp"> | |
<Id>24e902db-8e7b-419b-843f-bfc6fcdcce19</Id> | |
<Version>1.0.0.0</Version> | |
<ProviderName>Marc LaFleur</ProviderName> | |
<DefaultLocale>en-US</DefaultLocale> | |
<DisplayName DefaultValue="Persona Cards" /> | |
<Description DefaultValue="Display Persona Cards for every person on an email or appointment." /> | |
<IconUrl DefaultValue="https://officekiss.azurewebsites.net/images/64x64.png" /> | |
<HighResolutionIconUrl DefaultValue="https://officekiss.azurewebsites.net/images/128x128.png" /> | |
<SupportUrl DefaultValue="http://massivescale.com" /> | |
<Hosts> | |
<Host Name="Mailbox" /> | |
</Hosts> | |
<Requirements> | |
<Sets> | |
<Set Name="MailBox" MinVersion="1.1" /> | |
</Sets> | |
</Requirements> | |
<FormSettings> | |
<Form xsi:type="ItemRead"> | |
<DesktopSettings> | |
<SourceLocation DefaultValue="https://officekiss.azurewebsites.net/index.html" /> | |
<RequestedHeight>250</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> | |
</OfficeApp> |