Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 739 Bytes

mail.md

File metadata and controls

17 lines (14 loc) · 739 Bytes

Configuring SMTP

If you want to use an SMTP server for emails, you'll need to specify all of these additional arguments to your docker run command.

  • -e TAIGA_ENABLE_EMAIL=True
  • -e [email protected]
  • -e TAIGA_EMAIL_USE_TLS=True (only if you want to use tls)
  • -e TAIGA_EMAIL_HOST=smtp.google.com
  • -e TAIGA_EMAIL_PORT=587
  • -e [email protected]
  • -e TAIGA_EMAIL_PASS=super-secure-pass phrase thing!

Note: This can also be configured directly inside your own config file, with a specific taiga-conf/local.py. You can then configure this and other settings available in Taiga.