Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Mobile Push URL
Mobile push notifications gateway url. If not specified "http://push.emakin.com" address is used by default.

Default Domain Level
Default domain level for new domains. 

...

Connection String
Connection string of system database.

Archive Connection

Archive connection is used to access archived data and if specified Emakin moves the aged data to archive database automatically and fetches from this database when needed.

Database Adapter
Type of database provider for system connections.

Name
Display name of database connection. Used for diagnostics.

Connection String
Connection string of system database.

Repository Connections

List of repository connections to store domain specific data.

...

Is Enabled
Specifies the file repository is active

Integrated Services

List of integrated other applications. These services are used by other features like SSO Login or File access.

Is Enabled ?
Specifies the this service is enabled. Disabling a service also disables other features like login.

Service Type
Type of integrated OpenAuth service.

Name
Identifier of service. Given name will not displayed to end users and only used to identity service in features. Name is required.

Client Id
Open auth client id.

Client Secret
Open auth secret

Service Callback
Specifies the open auth callback type. Some of Open Auth services requires the specify callback address for security and callback address must be same.

Selecting the application callback uses a generic "oauth" callback address with application name. Example; "oauth.emakin.com".

Selecting the domain callback generates the callback address with same with active domain address like "mydomain.emakin.com".

Scopes
Specifies the enabled open auth scopes granted.

Login Services

List of integrated login services to allow user logins. 

Login Service
Specifies the type of login service. In addition to builtin Emakin and Active Directory services other integrated open auth services can be used as a login service.

Name
Identifier of login service to display end users.

Is Enabled ?
Specifies the service is enabled. If not enabled service is not displayed to users.

Requires 2FA
Specifies the two factor authentication is required. If checked after service login has succeeded users are also has to enter 2FA code (SMS etc) to login. 2FA provisioning (for example registering mobile number of user) is automatically handled by emakin.

Scopes
Specifies the requested open auth scopes from service. Only displayed for integrated services and not available for builtin services.

Other Services

File Services

Specifies the enabled file access services. File services are allows the select a file from integrated system for end users.

Client Type
Type of file service. Desktop and Web Cam are builtin services. Google Drive and Office 365 also can be selected but requires a integrated service definition.

Service
Type of integrated service. Only displayed for open auth type file services.

Name
Name of file service to display users.

Scopes
Requested open auth service scopes.

Calendar Services

Specifies the enabled calendar services.

Client Type
Type of calendar service. Delegation is built in service. Google and Office 365 also can be selected but requires a integrated service definition.

Service
Type of integrated service. Only displayed for open auth type file services.

Name
Name of file service to display users.

Scopes
Requested open auth service scopes.

Editor Services

Specifies the WOPI based editor services. WOPI services allows the edit files without any upload or download operations.

Name
Name of service to display end users.

Discovery Url
WOPI discovery url

Full Text Services

Specifies the full text extraction service address.

Security

SSL Options

Force SSL ?
Specifies the force SSL connections if http used. If enabled all web access connections automatically redirected to https protocol.

...

Single Session
When selected, only one device session is allowed for all devices in user sessions. Otherwise, no session control is performed.

Use Session Cookie
When selected browser cookie also is used in addition to bearer tokens for preventing the cross site scripting attacks. Since some browsers rejects the cookies to prevent tracking it must be tested before enabled.

Login Token Expiration
It determines the validity period of the tickets produced for system logins such as invitations or password change links. The default value is 10 days in the format 10.00:00:00.

...

Required Characters
List of at least of one of characters must be included in password. For example if set to "!@" value user passwords must be include '!' or '@' character.

Files

Antivirus Service Url
Specifies the antivirus scanning address to scan files before importing to system. If not specified no scanning is performed.

Allowed File Types
List of allowed file extensions or mime types. If any specified only listed files are allowed to upload.

...

SSL Enabled ?
If selected SSL connection is used to connect SMTP server. By default SSL connection automatically preferred but if this setting checked all connections are forced to use SSL connections.

SMS Services

List of integrated SMS services. Primarily is used for 2FA and if no service defined system uses the push service as SMS gateway.

Is Enabled ?
If set no service is disabled and system does not try to use service.

Name
Identifier of service

SMS Gateway Code
Script to process SMS request. If script returns any not null value system assumes SMS has been sent.

Code Block
languagejs
collapsetrue
var client = $Rest.Create('http://smsservice/sendsms');

var request = client.Request('', {
    to : $Destination,
    message : $Message
});

request.ExecuteJson();

return true;


Workers

Configuration of background job workers. This list allows to customize worker queue priority and error handing configurations. Please see Background Jobs page for more detail.

...