To modify the web.config settings:
1. Before modifying the web.config file, you must modify the config.xml file. Refer to Step 4: Modifying the Config.xml File for more information.
2. Navigate back to the Personify360OutlookWcfServices folder you copied to your local drive.
3. Open the web.config file in a text editor, such as Notepad.
4. 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>
5. 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="100" />
<add key="EnableBasicAuthentication" value="true"/>
</appSettings>
6. By default,
the maximum number of results that are returned from the Search Personify
Customers screen is 100. To change this setting, modify the highlight
code below:
<appSettings>
<add key="DefaultOrgId" value="" />
<add key="DefaultOrgUnitId" value="" />
<add key="MaxSearchResults" value="100" />
<add key="EnableBasicAuthentication" value="true"/>
</appSettings>
7. By default, the user authentication from the Outlook plug-in is turned off with the EnableBasicAuthentication value of "false". To require your end users to log into the Outlook plug-in with their Personify360 credentials, set the EnableBasicAuthentication value to "true".
8. Save the web.config file.
9. Now you can proceed to the configure IIS.