Outlook für Android Ent. konfigurieren
Auf dieser Seite
Einleitung
In Relution kann Outlook für Android Enterprise mit Variablen vorkonfiguriert, so dass die Enbenutzer nur noch ihr Passwort eingeben müssen.
In diesem Artikel haben wir eine minimal Konfiguration beschrieben. Diese muss in der Konfiguration als json
Datei importiert werden.
Konfiguration
Folgender Inhalt muss zb als outlook-konfiguration.json
gespeichert werden und kann anschließend in der Outlook App Konfiguration in Relution importiert werden.
{
"type": "BUNDLE",
"entries": {
"com.microsoft.outlook.EmailProfile.ServerAuthentication": {
"type": "STRING"
},
"com.microsoft.outlook.EmailProfile.ServerHostName": {
"type": "STRING",
"value": "outlook.office365.com"
},
"com.microsoft.outlook.EmailProfile.EmailUPN": {
"type": "STRING",
"value": "${user.email}"
},
"com.microsoft.outlook.EmailProfile.EmailAccountName": {
"type": "STRING",
"value": "${user.fullname}"
},
"com.microsoft.outlook.EmailProfile.AccountType": {
"type": "STRING",
"value": "ModernAuth"
},
"com.microsoft.outlook.EmailProfile.EmailAddress": {
"type": "STRING",
"value": "${user.email}"
}
}
}