1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-19 05:46:17 +00:00

Restore LDAP_BASE_DN question (in case it differs from the FQDN)

This commit is contained in:
Philipp Holzer 2018-12-02 12:54:06 +01:00
parent 05dc3cd62b
commit c062ff5c1f
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5

View File

@ -34,6 +34,10 @@ if [ ! -e ./.env ]; then
read -p "Email address to use for Lets Encrypt. Use 'self_signed' as your email to create self signed certificates [$value_default]: " new_value
EMAIL=${new_value:-$value_default}
value_default="$LDAP_BASE_DN"
read -p "Name of the BASE DN for LDAP [$value_default]: " new_value
LDAP_BASE_DN=${new_value:-$value_default}
value_default="kopano123"
read -p "Password of the admin user (in bundled LDAP) [$value_default]: " new_value
LDAP_ADMIN_PASSWORD=${new_value:-$value_default}