Skip to content

Commit 37f6735

Browse files
committed
Document possible values for ldap_start_tls
I had this set to the value of yes (no quotes), which was interpreted as a boolean somewhere in the chain, causing my rendered configuration to have `start_tls = true`. Unfortuantely postfix only accepts a literal `yes` or `no`. Thus, to make sure it gets all the way to Postfix in the correct form, it is important that this string is quoted.
1 parent 7552397 commit 37f6735

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

charts/docker-mailserver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ pod:
168168
enable_fetchmail: 0
169169
fetchmail_poll: 300
170170
enable_ldap:
171-
ldap_start_tls:
171+
ldap_start_tls: # MUST BE "yes" or "no" - quoted strings
172172
ldap_server_host:
173173
ldap_search_base:
174174
ldap_bind_dn:

0 commit comments

Comments
 (0)