diff options
Diffstat (limited to 'office/SOGo/README.SBo')
-rw-r--r-- | office/SOGo/README.SBo | 37 |
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. |