
Hello,
I have configured Server-Side Sync for CRM 2016 on-premise using Exchange 2010 on-premise.I followed the steps on this post : http://quantusdynamics.blogspot.com/2013/11/dynamics-crm-2013-configuring-exchange.html
but CRM couldn't read or update (Sync) Exchange folders, even on the Folder Level Tracking, CRM couldn't show the Exchange mailbox folders!
also I used below commands to allow for the entry of credentials via HTTP:
add-pssnapin Microsoft.Crm.Powershell
$itemSetting = new-object ‘System.Collections.Generic.KeyValuePair[String,Object]'("AllowCredentials EntryViaInsecureChannels",1) $configEntity = New-Object "Microsoft.Xrm.Sdk.Deployment.ConfigurationEntity" $configEntity.LogicalName="Deployment" $configEntity.Attributes = New-Object "Microsoft.Xrm.Sdk.Deployment.AttributeCollection" $configEntity.Attributes.Add($itemSetting) Set-CrmAdvancedSetting -Entity $configEntity
$itemSetting = new-object 'System.Collections.Generic.KeyValuePair[String,Object]'("ECAllowNonSSLEma il",1) $configEntity = New-Object "Microsoft.Xrm.Sdk.Deployment.ConfigurationEntity" $configEntity.LogicalName="Deployment" $configEntity.Attributes = New-Object "Microsoft.Xrm.Sdk.Deployment.AttributeCollection" $configEntity.Attributes.Add($itemSetting) Set-CrmAdvancedSetting -Entity $configEntity
I want to sync any email that will send from any device or outlook to be tracked into CRM.
*This post is locked for comments
I have the same question (0)