From 15503efdc92b223cb3abecdc11d6ab83510e7082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Tue, 4 Feb 2014 09:03:33 +0000 Subject: [PATCH] Mailman: don't auto-redirect to SSL In the Fedora infra, SSL is handled by the proxy and we can't detect it. --- roles/mailman/templates/settings.py.j2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/mailman/templates/settings.py.j2 b/roles/mailman/templates/settings.py.j2 index f819bb5d99..3499638129 100644 --- a/roles/mailman/templates/settings.py.j2 +++ b/roles/mailman/templates/settings.py.j2 @@ -327,7 +327,9 @@ KITTYSTORE_URL = 'postgres://kittystoreapp:{{ mailman_ks_db_pass }}@{{ mailman_d KITTYSTORE_SEARCH_INDEX = '{{ mailman_webui_basedir }}/kittystore_search_index' # Use SSL when logged in -USE_SSL = True +#USE_SSL = True +# In the Fedora infra, SSL is handled by the proxy and we can't detect it +USE_SSL = False # Only display mailing-lists from the same virtual host as the webserver FILTER_VHOST = False