Are you trying to update mailbox record in Microsoft Dynamics CRM 2013 on-premise and getting “Allow to use Credentials for Email Processing” field grayed out like the following ?? If yes then this post will help to enable this option.
“Allow to use Credentials for Email Processing” option under mailbox in Microsoft Dynamics CRM 2013 allows us to store credentials to access email services, if we are using Microsoft Dynamics CRM 2013 on-premise, we need to configure IFD to enable this options, but if you don’t want to configure IFD we have following workarounds to enable it.
- By Enabling https binding
- By Using registry key
In this post we will discuss the first option. We need a SSL certificate to bind with CRM website. As we are using our demo VPC, we have created a wild card certificate. Use following procedure to bind SSL certificate and configure HTTPS binding to the CRM website.
- Create a SSL certificate. (Please refer our earlier post to create wild card certificate.)
- Run IIS Manager.
- Select Microsoft Dynamics CRM website.
- Click on Bindings… under Action.
- Click on Add under Site Binding dialog.
- Select https from Type dropdown.
- Select your SSL certification under SSL certificate dropdown and keep other setting as default.
- Click Ok and Close.
- Navigate to Microsoft Dynamics CRM Deployment Manager.
- Select Microsoft Dynamics CRM and select Properties under Actions.
- Select Web Address table and click on HTTPS binding type.
- Change port with the port that we used in https binding under Step 7 (443 in our case) in all services.
- Click Ok to close and do IISRESET
Now navigate to the mailbox record in CRM, you should get “Allow to use Credentials for Email Processing” enabled.
HIMBAP | Need any help in MS CRM 2013 Contact US !!
For Non HTTP;
Use Power Shell
PS C:UsersAdministrator>Add-PSSnapin Microsoft.Crm.PowerShell
PS C:UsersAdministrator> $setting = Get-CrmSetting ServerSideSyncEmailSettings
PS C:UsersAdministrator> $setting.AllowCredentialsEntryViaNonSecureChannels=$True
PS C:UsersAdministrator> Set-CrmSetting $setting
PS C:UsersAdministrator> Get-CrmSetting TraceSettings
Pingback: Enable “Allow to use Credentials for Email Processing” in MS CRM 2013 On-premise Continued | HIMBAP
Pingback: Enable “Allow to use Credentials for Email Processing” in MS CRM 2013 On-premise Continued - Microsoft Dynamics CRM Community