Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
fe6566c427 | |
|
313d954381 |
|
@ -1,3 +1,9 @@
|
|||
# 1.3.1
|
||||
|
||||
- [docker](Dockerfile) Update Z-Push package URL.
|
||||
- [kopano](src/kopano) Now use ubuntu:20.04 in `kopano-webaddr.sh`.
|
||||
- [docker](ROADMAP.md) Update roadmap.
|
||||
|
||||
# 1.3.0
|
||||
|
||||
- [docker](Dockerfile) Now use ubuntu:20.04 as base image.
|
||||
|
|
|
@ -236,7 +236,7 @@ ENV DEBIAN_FRONTEND=noninteractive \
|
|||
#
|
||||
# Add Z-Push repository and install Z-Push configured to be used with Kopano and Apache
|
||||
#
|
||||
RUN debaddr="$(kopano-webaddr.sh --deb final http://repo.z-hub.io/z-push: ${DIST} ${REL})" \
|
||||
RUN debaddr="$(kopano-webaddr.sh --deb final https://download.kopano.io/zhub/z-push: ${DIST} ${REL})" \
|
||||
&& echo "deb $debaddr/ /" > /etc/apt/sources.list.d/z-push.list \
|
||||
&& wget -qO - $debaddr/Release.key | apt-key add - \
|
||||
&& mkdir -p /var/lib/z-push && chown www-data: /var/lib/z-push \
|
||||
|
|
27
ROADMAP.md
27
ROADMAP.md
|
@ -1,22 +1,33 @@
|
|||
# Road map
|
||||
|
||||
## Logs
|
||||
|
||||
kopano-spamd and kopano-search does not use syslog. Try to fix.
|
||||
|
||||
## kDAV
|
||||
|
||||
Consider integrating support for kDAV which provides CalDAV and CardDAV.
|
||||
|
||||
## Revisit Persistent Data
|
||||
|
||||
Consider consolidating directories which are candidates for persistence under `/srv`.
|
||||
|
||||
- /etc/kopano
|
||||
- /var/lib/kopano
|
||||
- /var/lib/z-push
|
||||
|
||||
### Kopano Search
|
||||
|
||||
The kopano-search module keeps its database here, /var/lib/kopano/search.
|
||||
Consider to also consolidating it under /srv to simplify making it persistent?
|
||||
|
||||
## kDAV
|
||||
|
||||
Consider integrating support for kDAV which provides CalDAV and CardDAV.
|
||||
|
||||
## webapp-passwd
|
||||
|
||||
Integrate [webapp-passwd](https://github.com/silentsakky/zarafa-webapp-passwd)?
|
||||
|
||||
## kopano-spamd and kopano-search logs
|
||||
|
||||
In [KC-1858](https://github.com/Kopano-dev/kopano-core/commit/4a7f833e170167ebfa4f4c55835f8760ce7617f3) we find:
|
||||
|
||||
> The syslog log method does not work correctly and thus this change
|
||||
> disables it. Until it is fixed, Python services do not support
|
||||
> the syslog log_method. Additionally an environment variable is
|
||||
> added, which allow to lift this restriction for testing when it
|
||||
> it set.
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ _webroot="https://download.kopano.io/community"
|
|||
_debroot="http://repo.z-hub.io/z-push:"
|
||||
_component="core"
|
||||
_stage="final"
|
||||
_dist="debian"
|
||||
_rel="9"
|
||||
_dist="ubuntu"
|
||||
_rel="20.04"
|
||||
_arch="amd64"
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue