Skip to content

Email

Email are primarily used for an organization to provide credentials to users but also for sending monitoring emails. In the case where email is not used for an organization, the credentials for users will be provided on the screen to the creating users who will be responsible to distribute them to the correct user.

Email and SMTP settings

mailservice: If email should be used, (true/false)
mailservice.bounce: An email to use for bounce emails
mailservice.dkim.privatekey.path: Path to the private key for DKIM
mailservice.dkim.selector: Points to what public key to use
mailservice.domain: The domain that emails should be sent from
mailservice.reply: The reply email address used in credential emails to users
mailservice.sender: The name that should be displayed as the "from" user
mailservice.startup: If an email should be sent at startup to indicate the organization use of email is correctly configured, provide the recipient email address here
mailservice.smtp.host: FQDN for SMTP host ex mail.serviceprovider.com
mailservice.smtp.port: 587/465
mailservice.smtp.credentials: Path to credentials to access the email server

Configuration examples

Email with DKIM

mailservice: true
mailservice.bounce: bounce@test.com
mailservice.dkim.privatekey.path: /config/mailservice-dkim.privatekey
mailservice.dkim.selector: s1
mailservice.domain: test.com
mailservice.reply: help@test.com
mailservice.sender: Synkzone
mailservice.startup: startup@test.com
mailservice.smtp.host: smtp.test.com
mailservice.smtp.port: 587
mailservice.smtp.credentials: /config/mailservice-credentials.properties

Email without DKIM

mailservice: true
mailservice.bounce: bounce@test.com
mailservice.domain: test.com
mailservice.reply: help@test.com
mailservice.sender: Synkzone
mailservice.startup: startup@test.com
mailservice.smtp.host: smtp.test.com
mailservice.smtp.port: 587
mailservice.smtp.credentials: /config/mailservice-credentials.properties

No email

mailservice: false