Changes between Initial Version and Version 3 of Ticket #37166


Ignore:
Timestamp:
Jun 15, 2026, 1:03:00 PM (3 weeks ago)
Author:
Mike Edmunds
Comment:

This should probably be an error system check, not warning. Updated the description.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37166

    • Property Owner set to Vishy
    • Property Status newassigned
  • Ticket #37166 – Description

    initial v3  
    1 Add a deployment-only system check that warns if the `"default"` `MAILERS` configuration uses the console, dummy, file, or locmem EmailBackend. (Any of Django's built-in backends that are documented as "not intended for use in production".)
     1Add a deployment-only system check that errors if the `"default"` `MAILERS` configuration uses the console, dummy, file, or locmem EmailBackend. (Any of Django's built-in backends that are documented as "not intended for use in production".)
    22
    3 The check should only consider the `"default"` configuration. (Having, e.g., a `"test"` or `"archive"` configuration that uses the file backend should not cause a warning.)
     3The check should only consider the `"default"` configuration. (Having, e.g., a `"test"` or `"archive"` configuration that uses the file backend should not cause an error)
    44
    55This is recommended early follow-on work from [https://github.com/django/deps/blob/main/accepted/0018-mailers.md#future-system-checks DEP 0018]. See also #37161.
Back to Top