nemonik / taiga-helm

A helm chart for Taiga
BSD 3-Clause "New" or "Revised" License
18 stars 20 forks source link

fix letter case of EMAIL_BACKEND #10

Closed michzimny closed 2 years ago

michzimny commented 2 years ago

Current behaviour:

For the default setting of emailBackend: "django.core.mail.backends.smtp.EmailBackend" in values.yaml, pod taiga-back fails on sending emails with:

ImportError: Module "django.core.mail.backends.smtp" does not define a "emailbackend" attribute/class

Expected behaviour:

Emails are sent properly for that default configuration.

Cause of the error:

Env var EMAIL_BACKEND in that pod is set to django.core.mail.backends.smtp.emailbackend that is incorrect for Django.

Solution:

Remove lower for EMAIL_BACKEND in the template of sts/taiga-back.