From f26c9e6bec8cadb29b91022c534807033bb1da3a Mon Sep 17 00:00:00 2001 From: Timon Engelke Date: Tue, 24 Mar 2020 18:45:24 +0100 Subject: [PATCH] prosody: fix ldap config template --- prosody/rootfs/defaults/saslauthd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prosody/rootfs/defaults/saslauthd.conf b/prosody/rootfs/defaults/saslauthd.conf index 4005ce0..79f38d4 100644 --- a/prosody/rootfs/defaults/saslauthd.conf +++ b/prosody/rootfs/defaults/saslauthd.conf @@ -1,7 +1,7 @@ {{ if eq (.Env.AUTH_TYPE | default "internal") "ldap" }} ldap_servers: {{ .Env.LDAP_URL }} ldap_search_base: {{ .Env.LDAP_BASE }} -{{ if .Env.LDAP_BINDDN | default "" | toBool }} +{{ if .Env.LDAP_BINDDN | default "" }} ldap_bind_dn: {{ .Env.LDAP_BINDDN }} ldap_bind_pw: {{ .Env.LDAP_BINDPW }} {{ end }}