Modifying Web.Config Settings for the Outlook 2010 Plug-In

Various optional settings specific to your association can be configured in the web.config file.

To modify the web.config settings:

1.    Open the web.config file.

2.    By default, the maximum size of an activity or email attachment that can be saved to the server is 3 MB. To change this setting, modify the code below:
<bindings>
<webHttpBinding>
<binding name="Outlook2010Binding" maxBufferSize="10485760" maxBufferPoolSize="10485760" maxReceivedMessageSize="10485760">
<readerQuotas maxDepth="32" maxStringContentLength="10485760" maxArrayLength="10485760" maxBytesPerRead="10485760"/>
</binding>
</webHttpBinding>
</bindings>

3.    To set the Default Org Id and Default Org Unit Id for all users, modify the highlighted code below:
<appSettings>
<add key="DefaultOrgId" value="" />
<add key="DefaultOrgUnitId" value="" />
<add key="MaxSearchResults" value="300" />
<add key="EnableBasicAuthentication" value="true"/>
</appSettings>

4.    By default, the maximum number of results that are returned from the Search Personify Customers screen is 300. To change this setting, modify the highlight code below:
<appSettings>
<add key="DefaultOrgId" value="" />
<add key="DefaultOrgUnitId" value="" />
<add key="MaxSearchResults" value="300" />
<add key="EnableBasicAuthentication" value="true"/>
</appSettings>

5.    Save the web.config file.