Created
March 18, 2015 19:31
-
-
Save bureado/37750f9d8b5f3c339eeb to your computer and use it in GitHub Desktop.
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" | |
xsi:type="MailApp"> | |
<!-- Id is a unique UUID for the mail app --> | |
<Id>FA22EEEA-5845-4198-B298-F106D124C863</Id> | |
<Version>1.0</Version> | |
<ProviderName>Contoso</ProviderName> | |
<DefaultLocale>en-us</DefaultLocale> | |
<DisplayName DefaultValue="Open Source App in Azure" /> | |
<Description DefaultValue="A simple first mail app." /> | |
<Requirements> | |
<Sets DefaultMinVersion="1.1"> | |
<Set Name="Mailbox" /> | |
</Sets> | |
</Requirements> | |
<FormSettings> | |
<Form xsi:type="ItemRead"> | |
<DesktopSettings> | |
<!-- Specify your web server and path in place of 'webserver'. --> | |
<SourceLocation DefaultValue="https://op02.azurewebsites.net/default.htm" /> | |
<RequestedHeight>250</RequestedHeight> | |
</DesktopSettings> | |
</Form> | |
</FormSettings> | |
<Permissions>ReadItem</Permissions> | |
<Rule xsi:type="ItemIs" FormType="Read" ItemType="Message" /> | |
</OfficeApp> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment