Configuring ITPAM Mail Triggers for OAuth authentication
searchcancel
Configuring ITPAM Mail Triggers for OAuth authentication
book
Article ID: 370212
calendar_today
Updated On: 08-13-2024
Products
CA Process Automation BaseProcess Automation Manager
Issue/Introduction
The basic steps are found in the release notes for ITPAM 4.3.05 CP08, and ITPAM 4.4 CP02. This document adds a little more detail to the instructions already given.
Environment
IT Process Automation 4.3 SP05 CP06 or higher and 4.4 CP02 or higher
On this page, follow the instructions in the following sections: Register your application Get an access token Add the POP, IMAP, or SMTP permissions to your Entra AD application (enables ITPAM to talk to MS Exchange)
Apply CP08 for ITPAM 4.3.05 or CP02 for ITPAM 4.4
Execute these Powershell commands:
Install-Module -Name ExchangeOnlineManagement
Import-module ExchangeOnlineManagement
Connect-ExchangeOnline -Organization <tenantId> $MyApp = Get-AzureADServicePrincipal -SearchString "ITPAM Mail Trigger"
New-ServicePrincipal -AppId $MyApp.AppID -ServiceID $MyApp.ObjectId -DisplayName "Service Principal for IMAP APP" Add-MailboxPermission -Identity "xxx@yyyy.onmicrosoft.com" -User $MyApp.ObjectId -AccessRights FullAccess
Additional Information
We are leaving this validated internally for now as we double check with L2 to verify all the steps are correct. As soon as this is confirmed we will publish externally.