From 3f8c718d710824578faa7c38efcf113df3e394d2 Mon Sep 17 00:00:00 2001 From: Christopher Broderick Date: Sun, 23 Jul 2023 07:28:42 +0100 Subject: [PATCH] Document the default attachment extensions supported --- docs/settings.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/settings.rst b/docs/settings.rst index d8f5f7af..874afa34 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -37,7 +37,6 @@ If you want to override the default settings for your users, create ``HELPDESK_D 'tickets_per_page': 25 } - Generic Options --------------- These changes are visible throughout django-helpdesk @@ -86,6 +85,10 @@ These changes are visible throughout django-helpdesk **Default:** ``HELPDESK_MAX_EMAIL_ATTACHMENT_SIZE = 512000`` +- **VALID_EXTENSIONS** Valid extensions for file types that can be attached to tickets + + **Default:** ``VALID_EXTENSIONS = ['.txt', '.asc', '.htm', '.html', '.pdf', '.doc', '.docx', '.odt', '.jpg', '.png', '.eml'] + - **QUEUE_EMAIL_BOX_UPDATE_ONLY** Only process mail with a valid tracking ID; all other mail will be ignored instead of creating a new ticket. **Default:** ``QUEUE_EMAIL_BOX_UPDATE_ONLY = False``