<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <directoryBrowse enabled="true" />
        <security>
            <requestFiltering>
                <verbs>
                    <remove verb="DELETE" />
                    <add verb="DELETE" allowed="false" />
                    <add verb="PUT" allowed="false" />
                    <add verb="OPTIONS" allowed="false" />
                    <add verb="POST" allowed="false" />
                </verbs>
            </requestFiltering>
        </security>
        <httpProtocol>
            <customHeaders>
                <add name="X-Frame-Options" value="SAMEORIGIN" />
            </customHeaders>
        </httpProtocol>
        <staticContent>
            <mimeMap fileExtension=".pst" mimeType="application/octet-stream" />
            <mimeMap fileExtension=".msg" mimeType="application/octet-stream" />
        </staticContent>
    </system.webServer>
</configuration>
