Enable email service
By default, emails are not enabled and email verification for users is disabled. To enable the email service, specify the following parameters in the docker-compose file:
Name | Type | Default value | Description |
---|---|---|---|
| String | Not defined | Sender's email: the email address Datalore will use as "From". |
| String | Not defined | Sender's name |
| String | Not defined | Username of SMTP user |
| String | Not defined | Password of SMTP user |
| String | Not defined | SMTP server host |
| String | Not defined | SMTP server port |
| Boolean | false | Refer to Using TCP keepalive under Linux, |
| Boolean | true | Enables new user notification emails. Users are automatically verified if this variable is set to |
| Boolean | false | Enable a whitelist for new user registration. Only users with whitelisted emails can be registered. The respective tab is available on the Admin panel |
Example
services:
datalore:
...
environment:
...
MAIL_SMTP_SERVER: "email-smtp.your_domain.com"
MAIL_SMTP_PORT: "465"
MAIL_SENDER_USERNAME: "email_user"
MAIL_SENDER_PASSWORD: "pa$$w0rd"
MAIL_SENDER_EMAIL: "no_reply.datalore@you_domain.com"
MAIL_SENDER_NAME: "Datalore Team"
FORCE_EMAIL_VERIFICATION: "false"