System administrators

Page tree

Versions Compared

Key

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

...

Code Block
languagetext
resources.mail.transport.type = ZfExtended_Zend_Mail_Transport_MSGraph

resources.mail.transport.email = translate5@domain.com    ; used as uniq user id
resources.mail.transport.tenantId = *your-tenantId*
resources.mail.transport.clientId = *your-clientId-or-applicationId-depends-on-ms-ui-version*
resources.mail.transport.clientSecret = '*your-client-secret*'   


Summary

The installation.ini contains basic system configuration:

  • database connection information
  • resources.mail.defaultFrom.email  
    => this is the default email-address of your translate5 installation
  • runtimeOptions.sendMailDisabled
    => set to 1, to disable all mail sending. This is the recommended setting, if you have no mailserver installed.
    => set to 0 to enable mail sending. If you use this setting, your php-installation must know a mailserver to pass emails to.
    For your information: If you enable mails in translate5, in case of php errors translate5 will send an email about the error to the mail address configured in resources.mail.defaultFrom.email  
Warning

Be careful: Configuration values in installation.ini overwrite values set in Zf_configuration

...

in a immutable way.

That can be used to preset configuration values fixed and changeable only by the admin of the server then.

...