summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/views')
-rw-r--r--hyperkitty/views/compat.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/hyperkitty/views/compat.py b/hyperkitty/views/compat.py
index b8c0666..521d9b7 100644
--- a/hyperkitty/views/compat.py
+++ b/hyperkitty/views/compat.py
@@ -62,6 +62,12 @@ def arch_month(request, list_name, year, month_name, summary_type="thread"):
def arch_month_mbox(request, list_name, year, month_name):
+ """
+ The messages must be rebuilt before being added to the mbox file, including
+ headers and the textual content, making sure to escape email addresses.
+ """
+ return HttpResponse("Not implemented yet.",
+ content_type="text/plain", status=500)
store = get_store(request)
mlist = get_list_by_name(list_name, store, request)
if mlist is None: