Added config for SMTP server to send emails

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2020-02-01 03:09:50 +01:00
parent afe6ab80db
commit dfcbc75630
2 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,12 @@ services:
- OWNER_EMAIL={{ admin_mail }}
- WEB_BASE_URL=https://{{ rt_domain}}
- WEB_PORT=443
- MAIL_HOST={{ rt_mail_host }}
- MAIL_USER={{ rt_mail_user }}
- MAIL_PASS={{ rt_mail_password }}
- MAIL_PORT=587
- CORRESPOND_ADDRESS={{ rt_correspond_address }}
- COMMENT_ADDRESS={{ rt_comment_address }}
- LC_ALL=C.UTF-8
- LANG=C.UTF-8
networks:

View File

@ -2,3 +2,8 @@
rt_domain: best-practical.com
rt_postgres_user: postgres
rt_postgres_password: NotSafePleaseChange
rt_mail_host: example.com
rt_mail_user: alice
rt_mail_pass: unreliable
rt_correspond_address: rt@example.com
rt_comment_address: rt-comment@example.com