Changes between Initial Version and Version 3 of Ticket #37166
- Timestamp:
- Jun 15, 2026, 1:03:00 PM (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #37166
- Property Owner set to
- Property Status new → assigned
-
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".)1 Add 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".) 2 2 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.)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 an error) 4 4 5 5 This 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.