Configure Outlook for Android Enterprise
On this page
Introduction
In Relution, Outlook for Android Enterprise can be preconfigured with variables so that end users only have to enter their password.
In this article, we have described a minimal configuration. This must be imported into the configuration as a json
file.
Configuration
The following content must be saved as outlook-konfiguration.json
, for example, and can then be imported into the Outlook App configuration in Relution.
{
"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}"
}
}
}