We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d997d11 commit 607ea16Copy full SHA for 607ea16
src/backend/core/enums.py
@@ -121,10 +121,6 @@ class MessageTemplateTypeChoices(models.IntegerChoices):
121
SIGNATURE = 2, "signature"
122
123
124
-EML_SUPPORTED_MIME_TYPES = ["message/rfc822", "application/eml"]
125
-MBOX_SUPPORTED_MIME_TYPES = [
126
- "application/octet-stream",
127
- "text/plain",
128
- "application/mbox",
129
-]
+EML_SUPPORTED_MIME_TYPES = ["message/rfc822", "application/eml", "text/plain"]
+MBOX_SUPPORTED_MIME_TYPES = ["application/octet-stream", "text/plain", "application/mbox"]
130
ARCHIVE_SUPPORTED_MIME_TYPES = EML_SUPPORTED_MIME_TYPES + MBOX_SUPPORTED_MIME_TYPES
0 commit comments