mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
office/SOGo: Updated for version 4.0.3.
Signed-off-by: David Spencer <baildon.research@googlemail.com>
This commit is contained in:
parent
d99dcba158
commit
18c122f275
5 changed files with 46 additions and 17 deletions
|
@ -24,13 +24,42 @@ Automatically starting SOGo
|
|||
To start SOGo automatically at system startup, add the following to
|
||||
your /etc/rc.d/rc.local:
|
||||
|
||||
if [ -x /etc/rc.d/rc.sogo ]; then
|
||||
/etc/rc.d/rc.sogo start
|
||||
if [ -x /etc/rc.d/rc.sogod ]; then
|
||||
/etc/rc.d/rc.sogod start
|
||||
fi
|
||||
|
||||
To stop sogo automatically at system shutdown, add the following to
|
||||
your /etc/rc.d/rc.local_shutdown:
|
||||
|
||||
if [ -x /etc/rc.d/rc.sogo ]; then
|
||||
/etc/rc.d/rc.sogo stop
|
||||
if [ -x /etc/rc.d/rc.sogod ]; then
|
||||
/etc/rc.d/rc.sogod stop
|
||||
fi
|
||||
|
||||
Adding users
|
||||
============
|
||||
Users are automatically added to the SOGo groupware server whenever they
|
||||
successfully log onto it with valid IMAP credentials.
|
||||
|
||||
Removing users
|
||||
==============
|
||||
Removing requires the use of the sogo-tool utility. You can remove a
|
||||
user like so:
|
||||
|
||||
$ /usr/sbin/sogo-tool remove USERID
|
||||
|
||||
Configuration file issues
|
||||
=========================
|
||||
The documentation outlines the format required when trying to use TLS
|
||||
with the SOGoIMAPServer and SOGoSieveServer values in the
|
||||
/etc/sogo/sogo.conf file. Unfortunately, what is described doesn't
|
||||
quite work as described. In order for this to work you'll need to quote
|
||||
the parameters, like so:
|
||||
|
||||
..
|
||||
SOGoIMAPServer = "imap://127.0.0.1:143/?tls=YES";
|
||||
..
|
||||
SOGoSieveServer = "sieve://127.0.0.1:4190/?tls=YES";
|
||||
..
|
||||
|
||||
If you ignore the quotes, these two parameters will not work when using
|
||||
TLS.
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=SOGo
|
||||
VERSION=${VERSION:-4.0.2}
|
||||
BUILD=${BUILD:-3}
|
||||
VERSION=${VERSION:-4.0.3}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -101,7 +101,7 @@ chown $PRGUSR:$PRGGRP $PKG/var/log/sogo $PKG/var/spool/sogo $PKG/var/run/sogo
|
|||
|
||||
# Install daemon script
|
||||
mkdir -p $PKG/etc/rc.d
|
||||
sed -e "s,USER=sogo,USER=$PRGUSR,g" $CWD/rc.sogo > $PKG/etc/rc.d/rc.sogo.new
|
||||
sed -e "s,USER=sogo,USER=$PRGUSR,g" $CWD/rc.sogod > $PKG/etc/rc.d/rc.sogod.new
|
||||
|
||||
# Install crontab files
|
||||
mkdir -p $PKG/etc/cron.d
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
PRGNAM="SOGo"
|
||||
VERSION="4.0.2"
|
||||
VERSION="4.0.3"
|
||||
HOMEPAGE="https://sogo.nu/"
|
||||
DOWNLOAD="https://sogo.nu/files/downloads/SOGo/Sources/SOGo-4.0.2.tar.gz
|
||||
https://sogo.nu/files/docs/SOGoInstallationGuide.pdf
|
||||
https://sogo.nu/files/docs/SOGoMozillaThunderbirdConfigurationGuide.pdf
|
||||
DOWNLOAD="https://sogo.nu/files/downloads/SOGo/Sources/SOGo-4.0.3.tar.gz \
|
||||
https://sogo.nu/files/docs/SOGoInstallationGuide.pdf \
|
||||
https://sogo.nu/files/docs/SOGoMozillaThunderbirdConfigurationGuide.pdf \
|
||||
https://sogo.nu/files/docs/SOGoOutlookConnectorConfigurationGuide.pdf"
|
||||
MD5SUM="852fb13d391906e61d3ae4c78f48b80e
|
||||
3d23667578d99d8b683087b3797b0696
|
||||
57fe60a808320f7f4ba5be2670a1d23b
|
||||
32f718228d6d58ee7b0d03c699e70387"
|
||||
MD5SUM="13438e6e0f7a14638ce730d466ce8146 \
|
||||
2c347720dce97c8585357ef57c32f89e \
|
||||
ab3fdf33d9f8f1cb75191092ef7a94e1 \
|
||||
a95762278780ca3b9c05ee645bd4fc3d"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="SOPE libmemcached"
|
||||
|
|
|
@ -26,6 +26,6 @@ config etc/cron.d/sogo.new
|
|||
preserve_perms etc/cron.daily/sogo.new
|
||||
config etc/httpd/extra/httpd-sogo.conf.new
|
||||
config etc/logrotate.d/sogo.new
|
||||
preserve_perms etc/rc.d/rc.sogo.new
|
||||
preserve_perms etc/rc.d/rc.sogod.new
|
||||
config etc/sogo/sogo.conf.new
|
||||
config etc/sysconfig/sogo.new
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# /etc/rc.d/rc.sogo
|
||||
# /etc/rc.d/rc.sogod
|
||||
#
|
||||
# Start/stop/restart the SOGo groupware server.
|
||||
#
|
Loading…
Reference in a new issue