Unable to let EV outlook extension , OWA Differentiates btween internal URL and external URL
I have enterprise Vault for exchange 10 an i implement and EV to archive the PST file only
in internal use the user can see the the archive explorer and retrieve mail from exchange OWA , Outlook Client and enterprise vault OWA .
After I publish the Enterprise Vault OWA through port 443 and add this line in web.config for each CAS server <add key="EnterpriseVault_UseExternalWebAppUrl" value="true"/>
and modify the desktop policy setting "External Web Application URL" TO my external URL >
I face this problem :
if user in internal network and try to access the archive the EV-outlook add-in and internal explorer establish connection to Outside network "my external URL" that i add in External Web Application URL >
i need the EV to Differentiates between internal use and external use
It sounds like:
- the users access OWA using the same URL internally and externally
- External users come through a firewall.
- EV is accessed externally using an IP address in the URL, but internally using hostname
So in the web.config files on your CAS server, add the following setting:
<add key="EnterpriseVault_UseExternalIPAddresses" value="123.123.123.123"/>
where 123.123.123.123 is the internal IP address of your firewall.
Make sure you remove the EnterpriseVault_UseExternalWebAppUrl setting.
In the desktop policy, advanced, OWA versions before 2013 section, set the "External Web Application URL" to "https://publicIPAddress/enterprisevault" where "publicIPAddress" is the external IP address for your firewall.
This should get things working for OWA once you have synchronised the mailboxes and restarted the OWA session.