From 5b0796d955930ff953f503c9f1966dfbbe876fec Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Tue, 1 Oct 2013 15:23:16 +0200 Subject: Disable the arch_month_mbox view, there's a privacy leak --- hyperkitty/views/compat.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'hyperkitty/views/compat.py') 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: -- cgit