- [docker](Dockerfile) Install kopano-archiver in target `core`.
parent
7ff783c870
commit
8e9a9bcf67
|
@ -1,5 +1,6 @@
|
|||
# 1.2.5
|
||||
|
||||
- [docker](Dockerfile) Install [kopano archiver](https://documentation.kopano.io/kopano_archiver_manual/) in target `core`.
|
||||
- [docker](Dockerfile) Install the smime webapp plugin providing [S/MIME](https://kopano.com/blog/s-mime-plugin-description/).
|
||||
- [docker](Dockerfile) Install the mdm webapp plugin providing [Mobile Device Management](https://documentation.kopano.io/webapp_mdm_manual/).
|
||||
- [demo](demo) Add [S/MIME](https://kopano.com/blog/s-mime-plugin-description/) cert generation.
|
||||
|
|
|
@ -98,6 +98,10 @@ RUN mkdir -p $DOCKER_BUILD_DEB_DIR \
|
|||
https://download.kopano.io/community ${DIST} ${REL} ${ARCH}) \
|
||||
&& echo "$webaddr<->${DIST} ${REL} ${ARCH}<-" \
|
||||
&& curl $webaddr | tar -xzC $DOCKER_BUILD_DEB_DIR \
|
||||
&& webaddr=$(kopano-webaddr.sh archiver \
|
||||
https://download.kopano.io/community ${DIST} ${REL} ${ARCH}) \
|
||||
&& echo "$webaddr<->${DIST} ${REL} ${ARCH}<-" \
|
||||
&& curl $webaddr | tar -xzC $DOCKER_BUILD_DEB_DIR \
|
||||
&& apt-get update \
|
||||
&& for i in $(seq ${DOCKER_BUILD_PASSES}); do echo "\033[1;36mKOPANO CORE INSTALL PASS: $i\033[0m" \
|
||||
&& dpkg --install --force-depends --skip-same-version --recursive $DOCKER_BUILD_DEB_DIR \
|
||||
|
|
|
@ -300,6 +300,10 @@ Adds an extra filter to the user search. Default `LDAP_USER_SEARCH_FILTER=`
|
|||
|
||||
Hint: Use the `kopanoAccount` attribute in the filter to differentiate between non-Kopano and Kopano users.
|
||||
|
||||
#### `LDAP_BIND_USER`, `LDAP_BIND_PASSWD`
|
||||
|
||||
The defaults for these environment variables are empty. If you cannot bind anonymously, do it with this distinguished name and password. Example: LDAP_BIND_USER=uid=admin,dc=example,dc=com, LDAP_BIND_PASSWD=secret.
|
||||
|
||||
### Kopano LDAP attributes `LDAP_PROPMAP`
|
||||
|
||||
The Kopano services needs to know which of the users LDAP attributes, like addresses, phone numbers and company information, to use. This information is defined in the `propmap` file, which is included in the Kopano installation files here `/usr/share/kopano/ldap.propmap.cfg`. When using `USER_PLUGIN=ldap` this LDAP `propmap` file is used by the Kopano services by setting `LDAP_PROPMAP=` to an empty string. Optionally you can use another file, for example`LDAP_PROPMAP=/etc/kopano/ldap.propmap.cfg`. If no file can be found there the installed one will be copied there.
|
||||
|
|
Loading…
Reference in New Issue