The fallback setting of EMAIL_USE_TLS
changed from a hardcoded True
to
reading from an environment variable with a fallback to False
in 1.36.0.
This broke at least one site that used the settings file
argus.site.settings.base
directly and did not set EMAIL_USE_TLS
explicitly.
This prevented the sending of emails.
We recommend setting EMAIL_USE_TLS
explicitly in your own settings, either as
an environment variable ("1"
for True
, "0"
for False
) or directly in
a production settings file.
Changed
- The example production settings file (
argus.site.settings.prod
) now runs
the new frontend and no longer supports the old frontend. In this
settings-file,EMAIL_USE_TLS
falls back toTrue
if not set as an
environment variable. - Added "level"-filter for incidents in admin
Frontend
Fixed
- Fixed autocreation of tickets