diff --git a/core/assets/run.sh b/core/assets/run.sh index 1dabcb7..1d610f9 100755 --- a/core/assets/run.sh +++ b/core/assets/run.sh @@ -60,6 +60,10 @@ if [[ ! -v SMTP_PORT ]]; then export SMTP_PORT=25 fi +if [[ ! -v HYPERKITTY_URL ]]; then + export HYPERKITTY_URL=http://mailman-web:8000/ +fi + if [[ ! -d /config/ ]]; then mkdir /config/ fi diff --git a/web/mailman-web/settings.py b/web/mailman-web/settings.py index cf67613..173ed20 100644 --- a/web/mailman-web/settings.py +++ b/web/mailman-web/settings.py @@ -91,8 +91,7 @@ INSTALLED_APPS = ( 'allauth.socialaccount.providers.github', 'allauth.socialaccount.providers.gitlab', 'allauth.socialaccount.providers.google', - #'allauth.socialaccount.providers.facebook', - #'allauth.socialaccount.providers.twitter', + 'allauth.socialaccount.providers.facebook', #'allauth.socialaccount.providers.stackexchange', )