eBiss 3

Hilfe & Dokumentation

Benutzer-Werkzeuge

Webseiten-Werkzeuge


Seitenleiste

Themen

howtos:oauth20office365

Authentifizierung über OAuth 2.0. mit Office 365

eBiss Host

For SMTP the host should be *.mail.protection.outlook.com on port 25, .e.g.:

  • <you mail>.mail.protection.outlook.com on port 25 to get it to work

The information is from: https://learn.microsoft.com/en-us/microsoft-365/enterprise/urls-and-ip-address-ranges?view=o365-worldwide

Azure Konfiguration

Auf Micosoft Azure müssen Sie unter „App-Registrierungen“ eine neue Registrierung eintragen. Auf dieser Finden Sie dann die:

  1. Anwendungs-ID (Client)
  2. Tenant ID = Verzeichnis-ID (Mandant) und
  3. das Client Secret unter „Zertifikate & Geheimnisse“

Die Registrierte App muss dann über „API-Berechtigungen“ für den Zugriff mittels POP3 und SMTP freigeschaltet werden. Unter Berechtigung hinzufügen und dann das Register „Von meiner Organisation verwendete APIs“ dort „Office 365 Exchange Online“ auswählen dann „Anwednungsberechtigungen“ und dort finden Sie POP und SMTP

Nach dem muss man in die Power Shell folgendes durchführen:

Install-Module -Name ExchangeOnlineManagement
Install-Module -Name AzureAD
Install-Module Microsoft.Graph

Connect-AzureAD -TenantID <Ihre ID>

Connect-ExchangeOnline -Organization <Ihre ID>

 
# prüfen
Get-AzureADServicePrincipal -SearchString "<Display name of your application id>"

$MyApp = Get-AzureADServicePrincipal -SearchString "<Display of your application id>"

New-ServicePrincipal -AppId $MyApp.AppId -ServiceID $MyApp.ObjectID -Display "Sercie Principal for POP3 App"

Add-MailboxPermission -Identity "<login user>" -User $MyApp.ObjectId -AccessRights FullAccess

howtos/oauth20office365.txt · Zuletzt geändert: 2024/02/20 08:15 von 127.0.0.1