Re: [SOGo] Best practice to force https in SOGo.conf

2014-08-06 Thread Sven Arnold

Hello Samuel,


What is the best way to force people using HTTPS when they come in sogo
site? ( virtual hosts? .htaccess file? )


That depends (of course) on your webserver and setup. If you are using 
apache you can perform a simple redirect on requests on port 80 similar to:


VirtualHost *:80
RedirectMatch ^/$ https://yourdomain.yourdomain/SOGo
/VirtualHost

and of course put your SOGo configuration inside of:

IfModule mod_ssl.c
VirtualHost _default_:443
...
/VirtualHost
/IfModule


Is there a way to enable https just for authentification?


Maybe that is possible, but is this useful? I suppose you do not only 
want to secure authentication but also email content?



Thanks all!
Samuel


Regards,

Sven

--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Thunderbird Upgrade: Best Practice?

2013-09-27 Thread Sven Arnold

Dear List,

it is possible to configure the update server in a way that simultaneous 
support of Thunderbird 17 and 24 is given?


Right now I deliver sogo-integrator, sogo-connector and lightning using 
the update server (see below). I would think that this configuration 
implies that these add-ons would only pushed to thunderbird 17.


But if I upgrade a thunderbird client from 17 to 24 the client still 
tries to install the updates. Even more strangely, lightning will then 
be disabled (what is correct since it is not compatible) but 
sogo-connector and sogo-integrator are activated (despite having version 
restrictions in their install.rdf).


Am I doing something wrong? How do you serve different versions of 
thunderbird clients?


Best regards,

Sven

Note: I observed this behaviour with linux clients (ubuntu 13.04). I did 
not check the behaviour of windows yet.



=== excerpt from updates.php ===

$plugins
= array(
sogo-connec...@inverse.ca
 = array( application = thunderbird,
   version = 17.0.5,
   filename = sogo-connector-17.0.5.xpi ),
sogo-integra...@inverse.ca
 = array( application = thunderbird,
   version = 17.0.5,
   filename = sogo-integrator-17.0.5.xpi ),
{e2fda1a4-762b-4020-b5ad-a41df1933103}
 = array( application = thunderbird,
   version = 1.9.1,
   filename = lightning-1.9.1.xpi )
);

$applications
= array( thunderbird = 
em:id{3550f703-e582-4d05-9a08-453d09bdfdc6}/em:id

em:minVersion17.0/em:minVersion
em:maxVersion17.*/em:maxVersion );


===

--
Sven Arnold

LOCALITE GmbH
Biomedical Visualization Systems

Fon   +49 2241 14-2174
Fax   +49 2241 14-42175

Schloss Birlinghoven
D-53757 St. Augustin

Amtsgericht Siegburg, Register-Nr. HRB 9263
Certified according to EN ISO 13485

http://www.localite.de
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Thunderbird Upgrade: Best Practice?

2013-09-27 Thread Sven Arnold

Ups. I am sorry - don't know why I missed this.

Thanks for pointing out!

Regards,

Sven

Am 27.09.2013 14:36, schrieb Szládovics Péter:

Dear Sven,

André Schild posted an upgrade script yesterday. I think, this is
exactly what you need.

2013-09-27 13:11 keltezéssel, Sven Arnold írta:

Dear List,

it is possible to configure the update server in a way that
simultaneous support of Thunderbird 17 and 24 is given?

Right now I deliver sogo-integrator, sogo-connector and lightning
using the update server (see below). I would think that this
configuration implies that these add-ons would only pushed to
thunderbird 17.

But if I upgrade a thunderbird client from 17 to 24 the client still
tries to install the updates. Even more strangely, lightning will then
be disabled (what is correct since it is not compatible) but
sogo-connector and sogo-integrator are activated (despite having
version restrictions in their install.rdf).

Am I doing something wrong? How do you serve different versions of
thunderbird clients?

Best regards,

Sven

Note: I observed this behaviour with linux clients (ubuntu 13.04). I
did not check the behaviour of windows yet.


=== excerpt from updates.php ===

$plugins
= array(
sogo-connec...@inverse.ca
 = array( application = thunderbird,
   version = 17.0.5,
   filename = sogo-connector-17.0.5.xpi ),
sogo-integra...@inverse.ca
 = array( application = thunderbird,
   version = 17.0.5,
   filename = sogo-integrator-17.0.5.xpi ),
{e2fda1a4-762b-4020-b5ad-a41df1933103}
 = array( application = thunderbird,
   version = 1.9.1,
   filename = lightning-1.9.1.xpi )
);

$applications
= array( thunderbird =
em:id{3550f703-e582-4d05-9a08-453d09bdfdc6}/em:id
em:minVersion17.0/em:minVersion
em:maxVersion17.*/em:maxVersion );


===




--
Szládovics, Péter

Onlinedemo.HU http://www.onlinedemo.hu
Any sufficiently advanced technology is indistinguishable from magic.
/Arthur C. Clarke/



--
Sven Arnold

LOCALITE GmbH
Biomedical Visualization Systems

Fon   +49 2241 14-2174
Fax   +49 2241 14-42175

Schloss Birlinghoven
D-53757 St. Augustin

Amtsgericht Siegburg, Register-Nr. HRB 9263
Certified according to EN ISO 13485

http://www.localite.de
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] SOGoSuperUsernames - is this a typo in the documentation?

2013-07-01 Thread Sven Arnold


I can't remember if that syntax has a proper name.


It's part of the EBNF:

https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_Form

HTH,

Sven

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Problem while installing sogo on ubuntu 12.04

2013-06-19 Thread Sven Arnold

Hi Stéphane,


1) Sogo try to use libmemcached.so.2 ... But I only have
libmemcached.so.6 on ubuntu 12.04 ...
So I have created a link with :
  ln -s /usr/lib/libmemcached.so.6 /usr/lib/libmemcached.so.2


That's part of your problem. You need the packages:

- libmemcached6
- memcached

They should be in the repositories.


 2) Following the instructions, I have completed the file
 /etc/sogo/sogo.conf with my database and ldap preferences.
 But when starting sogo, I got the message that the default file is not
 found ... So It seems that sogo.conf is not used !!!
 I have completed the file : ~sogo/GNUstep/Defaults/.GNUstepDefaults
 with my preferences and now, and then sogo started normally  ( always
 with the message /usr/sbin/sogod: /usr/lib/libmemcached.so.2: no
 version information available (required by /usr/lib/libSOGo.so.2) )

I do not know if /etc/sogo/sogo.conf is used or not, but if you leave it 
untouched and configure everything in GNUStep you should be fine.



Many thanks for your help

Stéphane


Best regards,

Sven
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Problem while installing sogo on ubuntu 12.04

2013-06-19 Thread Sven Arnold

Hi Stéphane,



Thanks for you answer but the packages  libmemcached6 and memcached are
already installed ! The ubuntu package of sogo installed automatically
them.

Take a fresh install of ubuntu 12.04 .. And you will see that it is
impossible to have /usr/lib/libmemcached.so.2 as desired by sogo


I am sorry, I did misread your email.
Anyways I still believe that memcached6 is the right version. I just 
looked onto a system runnging sogo 2.0.5a on Ubuntu 12.04.2 (granted, 
not a fresh install), and libSOGo is linked properly against 
libmemcached.so.6


$ ldd /usr/lib/libSOGo.so.2 | grep memcached
libmemcached.so.6 = /usr/lib/libmemcached.so.6

Maybe you should restore the original links and run ldconfig?

Hope this helps,

Sven



Stéphane

Le 19/06/2013 20:02, Sven Arnold a écrit :

Hi Stéphane,


1) Sogo try to use libmemcached.so.2 ... But I only have
libmemcached.so.6 on ubuntu 12.04 ...
So I have created a link with :
  ln -s /usr/lib/libmemcached.so.6 /usr/lib/libmemcached.so.2


That's part of your problem. You need the packages:

- libmemcached6
- memcached

They should be in the repositories.


 2) Following the instructions, I have completed the file
 /etc/sogo/sogo.conf with my database and ldap preferences.
 But when starting sogo, I got the message that the default file is not
 found ... So It seems that sogo.conf is not used !!!
 I have completed the file : ~sogo/GNUstep/Defaults/.GNUstepDefaults
 with my preferences and now, and then sogo started normally ( always
 with the message /usr/sbin/sogod: /usr/lib/libmemcached.so.2: no
 version information available (required by /usr/lib/libSOGo.so.2) )

I do not know if /etc/sogo/sogo.conf is used or not, but if you leave
it untouched and configure everything in GNUStep you should be fine.


Many thanks for your help

Stéphane


Best regards,

Sven





--
Sven Arnold

LOCALITE GmbH
Biomedical Visualization Systems

Fon   +49 2241 14-2172
Fax   +49 2241 14-42175

Schloss Birlinghoven
D-53757 St. Augustin

Amtsgericht Siegburg, Register-Nr. HRB 9263

http://www.localite.de
--
users@sogo.nu
https://inverse.ca/sogo/lists