diff --git a/management/daemon.py b/management/daemon.py
index cbbfd6bf..520711b7 100755
--- a/management/daemon.py
+++ b/management/daemon.py
@@ -134,6 +134,8 @@ def index():
backup_s3_hosts=backup_s3_hosts,
csr_country_codes=csr_country_codes,
+
+ nextcloud_enable=env['NEXTCLOUD_ENABLE']
)
# Create a session key by checking the username/password in the Authorization header.
diff --git a/management/templates/index.html b/management/templates/index.html
index f9c87f2c..dc52210a 100644
--- a/management/templates/index.html
+++ b/management/templates/index.html
@@ -139,7 +139,9 @@
Two-Factor Authentication
+ {% if nextcloud_enable==1 %}
Contacts/Calendar
+ {% endif %}
Web
@@ -190,9 +192,11 @@
{% include "aliases.html" %}
+ {% if nextcloud_enable==1 %}
{% include "sync-guide.html" %}
+ {% endif %}
{% include "web.html" %}
diff --git a/setup/management.sh b/setup/management.sh
index cebed8d5..195b12fd 100755
--- a/setup/management.sh
+++ b/setup/management.sh
@@ -103,6 +103,8 @@ mkdir -p /var/lib/mailinabox
tr -cd '[:xdigit:]' < /dev/urandom | head -c 32 > /var/lib/mailinabox/api.key
chmod 640 /var/lib/mailinabox/api.key
+source /etc/mailinabox.conf
+
source $venv/bin/activate
export PYTHONPATH=$(pwd)/management
exec gunicorn -b localhost:10222 -w 1 wsgi:app