summaryrefslogtreecommitdiffstats
path: root/office/SOGo/README.SBo
diff options
context:
space:
mode:
author Chris Walker2018-10-20 23:12:07 +0200
committer Willy Sudiarto Raharjo2018-10-21 01:47:03 +0200
commit18c122f275bda96962a727040d4697c678d9a01c (patch)
treed7742536ede231daa6d32d7ce270c2c299130848 /office/SOGo/README.SBo
parentd99dcba158045657653572c515d7c146e1c9c6d3 (diff)
downloadslackbuilds-18c122f275bda96962a727040d4697c678d9a01c.tar.gz
office/SOGo: Updated for version 4.0.3.
Signed-off-by: David Spencer <baildon.research@googlemail.com>
Diffstat (limited to 'office/SOGo/README.SBo')
-rw-r--r--office/SOGo/README.SBo37
1 files changed, 33 insertions, 4 deletions
diff --git a/office/SOGo/README.SBo b/office/SOGo/README.SBo
index b47315370b..16923b3c2b 100644
--- a/office/SOGo/README.SBo
+++ b/office/SOGo/README.SBo
@@ -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.