These options are set in installation scenarios of translate5

Normal options are set in the database table Zf_configuration.

In contrast, installation specific options are set in the file

application/config/installation.ini

which resides in your translate5 installation directory. If you followed translate5 Ubuntu installation manual, your installation directory is located at

/var/www/translate5

If you used translate5 windows installer, it is located at

c:\xampp\htdocs\translate5\

Options in installation.ini

;mandatory database connection information:
resources.db.params.host = "DB_HOST"
resources.db.params.username = "DB_USERNAME"
resources.db.params.password = "DB_PASSWORD"
resources.db.params.dbname = "DB_NAME"

;mandatory default sender email address and name; same address is used as receiver for error mails
resources.mail.defaultFrom.email = MAILADRESSE
resources.mail.defaultFrom.name = Support Translate5 ; should be changed to a speakable name

;If there is no local mail server configured, mail sending can optionally be configured to use a third party mail server
resources.mail.transport.type = Zend_Mail_Transport_Smtp
resources.mail.transport.host = SMTPSERVER

; The following lines about mail configuration are all optional!
resources.mail.transport.ssl = tls | ssl → with ssl the port 465 is used automatically
; If authentication is needed for above configure mail server:
resources.mail.transport.auth = login | plain | crammd5 ; → choose the correct authtype here
resources.mail.transport.username = USERNAME
resources.mail.transport.password = PASSWORD

runtimeOptions.sendMailDisabled = 1 ; with this optional setting all mail sending can be disabled. set to 0 or remove entry to enable mail sending.

Additional Information to the e-mail configuration:

MAILADRESSE: muss mit einer gültigen Mail Adresse ersetzt werden. Diese

wird zum einen als Absender verwendet, zum anderen empfängt diese aber

standardmäßig alle Fehler E-Mails. Durch das Absenderthema, sollte das

eine gültige Adresse bei euch sein, welche die empfangenen Mails an dich

weiterleitet. Die Log Mails können wir dann dediziert auf unsere Support

Adresse umbiegen.


SMTPSERVER: wäre entsprechend der SMTP Server

USERNAME und PASSWORD entsprechend die Zugangsdaten, sofert ein auth

type gewählt wurde.

Summary

The installation.ini contains:

Be careful: Configuration values in installation.ini overwrite values set in Zf_configuration. With the exception of the above listed options this IS NOT recommended.