The Fabasoft Folio app supports the following MDM settings:
Key | Type | Required | Description |
---|---|---|---|
ShowSupportWhenUserShake | boolean | no | Defines whether the support dialog should be opened when the user shakes the device. Value can be true or false. |
ShowSupportWhenUserShake.Forced | boolean | no | Defines whether the setting for ShowSupportWhenUserShake should be forced from MDM. Value can be true or false. |
ShowSupportWhenUserTakeScreenshot | boolean | no | Defines whether the support dialog should be opened when the user takes a screenshot. Value can be true or false. |
ShowSupportWhenUserTakeScreenshot.Forced | boolean | no | Defines whether the setting for ShowSupportWhenUserTakeScreenshot should be forced from MDM. Value can be true or false. |
ShowPreviewForWorklistFolders | boolean | no | Defines whether folders opened from the worklist should be shown as PDF overview. Value can be true or false. |
ShowPreviewForWorklistFolders.Forced | boolean | no | Defines whether the setting for ShowPreviewForWorklistFolders should be forced from MDM. Value can be true or false. |
ReduceImageSizeForUploadOption | integer | no | Defines the option for reducing the image size for uploads. Value can be 0 (original size), 1 (large), 2 (medium), 3 (small), or 4 (ask user every time). |
ReduceImageSizeForUploadOption.Forced | boolean | no | Defines whether the setting for ReduceImageSizeForUploadOption should be forced from MDM. Value can be true or false. |
SyncOnLan.Disabled.Forced | boolean | no | Defines whether the feature LAN synchronization is available. Value can be true or false. |
SyncOnLan.Port.Forced | integer | no | Defines the port which will be used for the LAN synchronization service. |
SyncOnLan.SSIDs | array | no | Defines the trusted networks in which LAN synchronization can be used. The defined values from MDM cannot be altered by the user. The user might define additional trusted networks. Value must be an array of strings. |
SyncOnLan.SSIDs.Forced | boolean | no | Defines whether the setting for SyncOnLan.SSIDs should be forced from MDM. Value can be true or false. |
Services | array | no | Defines the available services for the user. Value must be an array of dictionaries, see description below. |
Services.Forced | boolean | no | Defines whether the setting for Services should be forced from MDM. Value can be true or false. When true, all other defined services will be removed and adding new services is disabled. When false, the services will be added to the list of available services. |
OptionalPasscode | boolean | no | Defines whether the user can decide if the passcode should be activated or disabled. When not set the passcode is always active and cannot be disabled. Value can be true or false. |
Each entry in the Services array is a dictionary (dict) and must contain the following settings:
Key | Type | Required | Description |
---|---|---|---|
Service | dict | yes | Dictionary container for values. |
Service.URL | string | yes | Defines the webserver URL. Value must be a valid URL. |
Service.Name | string | yes | Defines the name for the service. Value can be any string. |
Service.LoginMethod | integer | no | Defines the login method for the service. Value can be 1 (basic authentication), 2 (client certificate authentication) or 3 (single sign-on). |
Service.Username | string | no | Defines the user's login username for the service. Value can be empty or any string. |
Service.KeepSignedIn | boolean | no | Defines whether the user should stay logged in. Value can be true or false. |
Service.DomainType | string | no | Defines the domain type of the service. Value can be “Folio”, “eGov” or “Cloud”. |
Service.Forced | boolean | no | Defines whether the settings “LoginMethod”, “Username” and “KeepSignedIn” should be forced from MDM. Value can be true or false. When true, all valid values will be forced. When false, the MDM values will be used when no user configured values are available. |
Configuration Example |
---|
<?xml version="1.0" encoding="UTF-8"?> |
Some MDM systems do not support nested dictionaries (dict), therefor it is not possible to configure services using the key “Services”. As an alternative services can be configured using multiple arrays. To use the alternative format the key “Services” must be replaced with the following values:
Key | Type | Required | Description |
---|---|---|---|
Services.List.URL | array | no | Defines the available services for the user. Value must be an array of strings, see description below. |
Services.List.Name | array | no | Defines the available services for the user. Value must be an array of strings, see description below. |
Services.List.LoginMethod | array | no | Defines the login methods for the services. Value must be an array of integers, see description below. |
Services.List.Username | array | no | Defines the users' login usernames for the services. Value must be an array of strings, see description below. |
Services.List.KeepSignedIn | array | no | Defines whether the users should stay logged in. Value must be an array of booleans, see description below. |
Services.List.DomainType | array | no | Defines the domain types of the services. Value must be an array of strings, see description below. |
Services.List.Forced | array | no | Defines whether the settings “LoginMethod”, “LoginMethod” and “KeepSignedIn” should be forced from MDM. Value must be an array of booleans, see description below. |
Each entry in the Services.List.Name/Services.List.URL array is a string (string). The number of entries in both arrays must match.
The entries in Services.List.Name define the names for the services. Values can be any string.
The entries in Services.List.URL define the URLs for the services. Values must be unique. Values must be a valid URL.
Multiple services with the same URL are not allowed. When multiple services with the same URL are configured, the name from the last configured entry will be used.
All other keys starting with Services.List are optional and can be omitted, but if a key is specified the number of its entries must match Services.List.Name/Services.List.URL.
For possible values of settings starting with Services.List see their equivalent settings in chapter “Apple iOS”.
Configuration Example |
---|
<?xml version="1.0" encoding="UTF-8"?> |