From 8e8b9d8f163226f501d1ab5a8dbb693b4901e773 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Fri, 2 Oct 2015 16:22:33 +0000 Subject: [PATCH] HyperKitty: fix the BROWSERID_AUDIENCES setting --- roles/mailman/templates/settings.py.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mailman/templates/settings.py.j2 b/roles/mailman/templates/settings.py.j2 index e3255eeccc..3aa79e95c5 100644 --- a/roles/mailman/templates/settings.py.j2 +++ b/roles/mailman/templates/settings.py.j2 @@ -33,7 +33,7 @@ ALLOWED_HOSTS = [ # http://django-browserid.rtfd.org/page/user/settings.html#django.conf.settings.BROWSERID_AUDIENCES BROWSERID_AUDIENCES = [ {% for host in mailman_domains %} - "{{ host }}", + "https://{{ host }}", {% endfor %} ]