[SOGo] Multiple Usersources for round-robin / failover ?

2018-09-26 Thread goetz.reini...@filmakademie.de
Hi,

is it possible to use multiple LDAP sources / ADs for failover and/or 
round-robin load balancing?

Thanks for feedback und regards . Götz



smime.p7s
Description: S/MIME cryptographic signature


[SOGo] Automatic Caldav config with Apple and SOGo 4 problem

2018-09-26 Thread goetz.reini...@filmakademie.de
Hi,

we noticed that the manual configuration of an CALDav Account on macOS is not 
working anymore since we moved from SOGo 2 to a new server with SOGo4

Currently I do have to use the extended configuration with entering the URL, 
path and port. That works and accesses all my calendars.

I guess some redirect „httpd-magic“ is missing :) but I can’t see the 
difference with the old setup.

In the https logs I do see some messages like that:

/var/log/httpd/ssl_access_log:192.168.5.81 - - [26/Sep/2018:10:51:32 +0200] 
"PROPFIND /.well-known/caldav HTTP/1.1" 405 244, 
/var/log/httpd/ssl_access_log:192.168.5.81 - - [26/Sep/2018:10:51:32 +0200] 
"HEAD /.well-known/caldav HTTP/1.1" 404 -
/var/log/httpd/ssl_access_log:192.168.5.81 - - [26/Sep/2018:10:51:32 +0200] 
"PROPFIND / HTTP/1.1" 405 236
/var/log/httpd/ssl_access_log:192.168.5.81 - - [26/Sep/2018:10:51:32 +0200] 
"PROPFIND /caldav/v2 HTTP/1.1" 405 235
/var/log/httpd/ssl_access_log:192.168.5.81 - - [26/Sep/2018:10:51:32 +0200] 
"PROPFIND /principals/users/greinick/ HTTP/1.1" 405 252
/var/log/httpd/ssl_access_log:192.168.5.81 - - [26/Sep/2018:10:51:32 +0200] 
"PROPFIND /principals/ HTTP/1.1" 405 237
/var/log/httpd/ssl_access_log:192.168.5.81 - - [26/Sep/2018:10:51:32 +0200] 
"PROPFIND /dav/principals/ HTTP/1.1" 405 241


Any hints / suggestions . Thanks and regards . Götz




smime.p7s
Description: S/MIME cryptographic signature


Re: [SOGo] Multiple Usersources for round-robin / failover ?

2018-09-26 Thread lists

Hi,

We do that using haproxy on localhost, connecting sogo to haproxy 
(localhost:389) , and have haproxy connect to the different ADs 
(dcX:636) servers, with option ldap-check.


Works very well here.

MJ



On 9/26/2018 9:11 AM, Götz Reinicke (goetz.reini...@filmakademie.de) wrote:

Hi,

is it possible to use multiple LDAP sources / ADs for failover and/or 
round-robin load balancing?

Thanks for feedback und regards . Götz


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


Re: [SOGo] Multiple Usersources for round-robin / failover ?

2018-09-26 Thread Alexandre Blanc

Hi,

Something like that could work :

  SOGoUserSources = (
    {
  type = ldap;
  CNFieldName = cn;
  IDFieldName = cn;
  UIDFieldName = sAMAccountName;
  //baseDN = "CN=Users,dc=my,dc=domain,dc=ext";
  baseDN = "dc=my,dc=domain,dc=ext";
  bindDN = "CN=userloginforquery,CN=Users,DC=my,DC=domain,DC=ext";
  bindFields = (sAMAccountName);
  bindPassword = TheuserP4ssword;
  canAuthenticate = YES;
  displayName = "Active Directory";
  hostname = "ldap://ip-of-server-1:389 ldap://ip-of-server-2:389";;
  id = directory;
  isAddressBook = YES;
    }
  );

I hope it helps. Just add many with a space in between :)

Alexandre

On 09/26/2018 03:11 AM, Götz Reinicke wrote:

Hi,

is it possible to use multiple LDAP sources / ADs for failover and/or 
round-robin load balancing?

Thanks for feedback und regards . Götz



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

Re: [SOGo] Thundbird 60 Sogo Connector Nigthtly

2018-09-26 Thread Ludovic Marcotte

Hi,

On 2018-09-25 5:40 AM, Stefan Mackovik (ste...@mackovik.info) wrote:
If have 156 contacts in my owncloud instance and when I try syncing it 
to Thunderbird 60 with the latest nighty of Sogo Connector , it only 
syncs 99 of them. 


You could do:

1- get a full non-encrypted sync log using tcpflow - remove sensitive 
info and send it directly to me


2- while doing no.1, check to see if you have any errors in the 
Thunderbird console


Thanks,

--
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  https://inverse.ca
Inverse inc. :: Leaders behind SOGo (https://sogo.nu), PacketFence 
(https://packetfence.org) and Fingerbank (https://fingerbank.org)

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


[SOGo] Upgrade SOGO V2 to V4 - HowTo

2018-09-26 Thread "Frank Seuberth"
Hello,

i would like to upgrade from V2 to V4.
The only instructions/guidlines if found on the WEB are
Upgrade V2 to V3 : https://docs.iredmail.org/upgrade.sogo.2.to.3.html
Upgrade V3 to V4: https://docs.iredmail.org/upgrade.sogo.3.to.4.html
on the above websites.

Can i directly move from V2 to V4 ?
In case Yes can i use the V3 to V4 guide ?
Are there any guidlines from the community or any hints?

Thanks
Frank

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

Re: [SOGo] Multiple Usersources for round-robin / failover ?

2018-09-26 Thread goetz.reini...@filmakademie.de
Thanks for the feedback … true. 

I took a much closer look at the SOGo doc and found: „hostname: A 
space-delimited list of LDAP URLs or LDAP hostnames."

Regards . Götz

> Am 26.09.2018 um 16:18 schrieb Alexandre Blanc (alexandre.bl...@mayahtt.com) 
> :
> 
> Hi,
> 
> Something like that could work :
> 
>   SOGoUserSources = (
> {
>   type = ldap;
>   CNFieldName = cn;
>   IDFieldName = cn;
>   UIDFieldName = sAMAccountName;
>   //baseDN = "CN=Users,dc=my,dc=domain,dc=ext";
>   baseDN = "dc=my,dc=domain,dc=ext";
>   bindDN = "CN=userloginforquery,CN=Users,DC=my,DC=domain,DC=ext";
>   bindFields = (sAMAccountName);
>   bindPassword = TheuserP4ssword;
>   canAuthenticate = YES;
>   displayName = "Active Directory";
>   hostname = "ldap://ip-of-server-1:389  
> ldap://ip-of-server-2:389 ";
>   id = directory;
>   isAddressBook = YES;
> }
>   );
> 
> I hope it helps. Just add many with a space in between :)
> 
> Alexandre
> 
>  
> On 09/26/2018 03:11 AM, Götz Reinicke wrote:
>> Hi,
>> 
>> is it possible to use multiple LDAP sources / ADs for failover and/or 
>> round-robin load balancing?
>> 
>> Thanks for feedback und regards . Götz
>> 
> 
> -- 
> users@sogo.nu
> https://inverse.ca/sogo/lists

     
Götz Reinicke 
IT-Koordinator
IT-OfficeNet
+49 7141 969 82420 
goetz.reini...@filmakademie.de 
Filmakademie Baden-Württemberg GmbH 
Akademiehof 10
71638 Ludwigsburg 
http://www.filmakademie.de 
   
 
  
 
Eintragung Amtsgericht Stuttgart HRB 205016
Vorsitzende des Aufsichtsrates:
Petra Olschowski
Staatssekretärin im Ministerium für Wissenschaft,
Forschung und Kunst Baden-Württemberg
Geschäftsführer:
Prof. Thomas Schadt




smime.p7s
Description: S/MIME cryptographic signature


[SOGo] BTS activities for Wednesday, September 26 2018

2018-09-26 Thread SOGo reporter
Title: BTS activities for Wednesday, September 26 2018





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Wednesday, September 26 2018

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
4554
	2018-09-26 09:15:14
	updated (open)
	Web Calendar
	Month view does not show all days of month
	
	  
	
2640
	2018-09-26 01:12:27
	updated (open)
	with SOGo
	SOGo should be able to log to syslog
	
	  
	
  
  


-- users@sogo.nuhttps://inverse.ca/sogo/lists