[SOGo] installing sogo-openchange-backend
Hi, while installing sogo-openchange-backend \ Trying other mirror. epel | 4.3 kB 00:00 epel/primary_db | 3.9 MB 00:05 remi | 2.9 kB 00:00 remi/primary_db | 335 kB 00:02 Setting up Install Process No package sogo-openchange-backend available. Error: Nothing to do [root@localhost ~]# what should i needed to install these.-- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] LDAP Indexing
Hi, i have some entries in my logs like: bdb_equality_candidates: (member) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (mail) not indexed bdb_equality_candidates: (member) not indexed how should i add them to ldap? eq, pres, approx, special or sub? What i know is:* pres* should be used if use searches http://www.zytrax.com/books/ldap/apa/search.html of the form 'objectclass=person' or 'attribute=mail' will be used. *approx* MUST be used if use searches http://www.zytrax.com/books/ldap/apa/search.html of the form 'sn~=person' (a 'sounds-like' search) will be used. *eq* should be used if searches http://www.zytrax.com/books/ldap/apa/search.html of the form 'sn=smith' will be used i.e no wildcards are included (uses the EQUALITY rule only). *sub* should be used if use searches http://www.zytrax.com/books/ldap/apa/search.html of the form 'sn=sm*' i.e wildcards are included (uses the SUBSTR rule). This rule may be enhanced by a using *subinitial* (optimised for 'sn=s*'), *subany* (optimised for 'sn=*n*') or *subfinal*(optimised for 'sn=*th'). One or more *sub* parameters may be included. but i don't know how this stuff is being used by, for example, SOGo anyone got an advise for me? thanks a lot juergen -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] Bash on Provision
Hi, i got bash while im doing there [root@localhost ~]# provision --realm=kamote.com \ -bash: provision: command not found [root@localhost ~]# any idea? Thanks,-- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] LDAP Indexing
Hi! i have some entries in my logs like: bdb_equality_candidates: (member) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (mail) not indexed bdb_equality_candidates: (member) not indexed how should i add them to ldap? eq, pres, approx, special or sub? From the source (servers/slapd/back-bdb/filterindex.c): bdb_equality_candidates hints at eq; bdb_presence_canditates hint at pres... So eq it should be... What i know is: pres should be used if use [1]searches of the form 'objectclass=person' or 'attribute=mail' will be used. approx MUST be used if use [2]searches of the form 'sn~=person' (a 'sounds-like' search) will be used. eq should be used if [3]searches of the form 'sn=smith' will be used i.e no wildcards are included (uses the EQUALITY rule only). sub should be used if use [4]searches of the form 'sn=sm*' i.e wildcards are included (uses the SUBSTR rule). This rule may be enhanced by a using subinitial (optimised for 'sn=s*'), subany (optimised for 'sn=*n*') or subfinal(optimised for 'sn=*th'). One or more sub parameters may be included. excellent summary btw. -- Adi -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] How to manage IMAP subscription folders via SOGo?
Hi, I would like to manage the subscription of IMAP folders via sogo web interfaces but when I do right click on account name Subscribe options is grey/unavailable. How can I enable this options? From Preferences I can only choose to show/not show subscribed mailboxes only On the same account I can manage subscription via others webmail or Thunderbird fine. Thanks -- Alessio Cecchi is: @ ILS - http://www.linux.it/~alessice/ on LinkedIn - http://www.linkedin.com/in/alessice Assistenza Sistemi GNU/Linux - http://www.cecchi.biz/ @ PLUG - ex-Presidente, adesso senatore a vita, http://www.prato.linux.it -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] LDAP Indexing
Hi, if i'm right, the indices are for cached for faster result on ldap-search. My slapd.conf looks like # Indices to maintain for this database index objectClass eq,pres index ou,cn,mail,maildrop,surname,givenname eq,pres,sub index uidNumber,gidNumber,loginShelleq,pres index uid,memberUid eq,pres,sub index nisMapName,nisMapEntryeq,pres,sub ## Note that using the session log requires searching on the entryUUID #attribute. Setting an eq index on this attribute will greatly benefit the #performance of the session log on the provider. ## http://www.openldap.org/doc/admin24/replication.html index entryCSN,entryUUIDeq If your SOGo-Login and Adressbook-search works like expected, you can simply ignore the log messages. Best Philipp Philipp v. Strobl.-Albeg - PILARKTO.NET - Zellerstr. 19 70180 Stuttgart Tel. +49 711 1215 8269 Fax. +49 711 6583 089 Mobil +49 151 27039 710 Am 02.10.2012 09:37, schrieb Adi Kriegisch: Hi! i have some entries in my logs like: bdb_equality_candidates: (member) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (mail) not indexed bdb_equality_candidates: (member) not indexed how should i add them to ldap? eq, pres, approx, special or sub? From the source (servers/slapd/back-bdb/filterindex.c): bdb_equality_candidates hints at eq; bdb_presence_canditates hint at pres... So eq it should be... What i know is: pres should be used if use [1]searches of the form 'objectclass=person' or 'attribute=mail' will be used. approx MUST be used if use [2]searches of the form 'sn~=person' (a 'sounds-like' search) will be used. eq should be used if [3]searches of the form 'sn=smith' will be used i.e no wildcards are included (uses the EQUALITY rule only). sub should be used if use [4]searches of the form 'sn=sm*' i.e wildcards are included (uses the SUBSTR rule). This rule may be enhanced by a using subinitial (optimised for 'sn=s*'), subany (optimised for 'sn=*n*') or subfinal(optimised for 'sn=*th'). One or more sub parameters may be included. excellent summary btw. -- Adi -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] Authentification Mysql and LDAP
Hello, Is that user authentication with MySQL and LDAP/SAMBA can coexist? Kind Regards -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] LDAP Indexing
Am 02.10.2012 09:37, schrieb Adi Kriegisch: Hi! i have some entries in my logs like: bdb_equality_candidates: (member) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (displayName) not indexed bdb_equality_candidates: (cn) not indexed bdb_equality_candidates: (mail) not indexed bdb_equality_candidates: (member) not indexed how should i add them to ldap? eq, pres, approx, special or sub? From the source (servers/slapd/back-bdb/filterindex.c): bdb_equality_candidates hints at eq; bdb_presence_canditates hint at pres... So eq it should be... What i know is: pres should be used if use [1]searches of the form 'objectclass=person' or 'attribute=mail' will be used. approx MUST be used if use [2]searches of the form 'sn~=person' (a 'sounds-like' search) will be used. eq should be used if [3]searches of the form 'sn=smith' will be used i.e no wildcards are included (uses the EQUALITY rule only). sub should be used if use [4]searches of the form 'sn=sm*' i.e wildcards are included (uses the SUBSTR rule). This rule may be enhanced by a using subinitial (optimised for 'sn=s*'), subany (optimised for 'sn=*n*') or subfinal(optimised for 'sn=*th'). One or more sub parameters may be included. excellent summary btw. -- Adi Hi, not my afford. Sorry forgot to mention where this was found: http://www.zytrax.com/books/ldap/apa/indeces.html -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] how to verify currently running database version
On 2012-10-01 15:16, mayak-cq wrote: On Mon, 2012-10-01 at 15:11 +0200, Christian Mack wrote: Hello mayak On 2012-09-29 14:34, mayak-cq wrote: Just wondering how I can tell what database version sogo is using. Which DBMS do you use? MySQL, Postgresql or Oracle? You can check your access parameters as user sogo with: defaults read sogod OCSSessionsFolderURL defaults read sogod SOGoProfileURL defaults read sogod OCSFolderInfoURL And if you use a DBMS as authorization source with: defaults read sogod SOGoUserSources hi christian, sorry -- i should have been more specific -- i'm running mysql, but i have upgraded and downgraded so many times, that i'm not sure if i have the right database structure to match my sogo version. In order to be absolutely sure just make a full backup with sogo-tool. Then stop sogod. Drop all SOGo tables in MySQL. Then start sogod and restore your backup. When you start sogod, it will create all tables for this given version of SOGo. Beware: This does _not_ include your authorization database! Kind regards, Christian Mack -- Christian Mack Gruppe Informationsdienste Rechenzentrum Universität Konstanz -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Authentification Mysql and LDAP
Hello Sebastien Blin On 2012-10-02 11:01, sebastien.b...@adil71.org wrote: Is that user authentication with MySQL and LDAP/SAMBA can coexist? Yes, you can create different SOGoUserSources. Each one specifies if it uses LDAP/AD or database as authentication source for SOGo. Openchange+SAMBA can be used with both too, but they need their own credentials, which you have to keep in synch by yourself. AFAIK that is so, because SAMBA4 does currently not support shared trust with an AD. Kind regards, Christian Mack -- Christian Mack Gruppe Informationsdienste Rechenzentrum Universität Konstanz -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Authentification Mysql and LDAP
Hi, I have similar query for myself too. Before Outlook Native Compatibility Setup, Authentication was done by Mysql. For the Outlook Setup, I added the below command in the bottom. After this authentication do not work. I have configured same username and password in Samba as in Mysql. Queries : 1. Is Authentication via SAMBA necessary for Outlook Compatibility ? 2. Is LDAP also necessary for Outlook along with Samba as per the statement in help document. Samba 4's directory can be queried over LDAP just like Microsoft Active Directory. defaults write sogod SOGoUserSources '( { CNFieldName = displayName; IDFieldName = cn; UIDFieldName = sAMAccountName; baseDN = cn=Users,dc=example,dc=com; bindDN = cn=Administrator,cn=Users,dc=example,dc=com; bindFields = ( sAMAccountName ); bindPassword = %1OpenChange; canAuthenticate = YES; displayName = Shared Addresses; hostname = 127.0.0.1; id = samba; isAddressBook = YES; port = 389; } )' Thanks Regards, Devinder Singh Birdi On 10/2/2012 3:20 PM, Christian Mack wrote: Hello Sebastien Blin On 2012-10-02 11:01, sebastien.b...@adil71.org wrote: Is that user authentication with MySQL and LDAP/SAMBA can coexist? Yes, you can create different SOGoUserSources. Each one specifies if it uses LDAP/AD or database as authentication source for SOGo. Openchange+SAMBA can be used with both too, but they need their own credentials, which you have to keep in synch by yourself. AFAIK that is so, because SAMBA4 does currently not support shared trust with an AD. Kind regards, Christian Mack -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Authentification Mysql and LDAP
Le 02/10/2012 11:50, Christian Mack a écrit : Hello Sebastien Blin On 2012-10-02 11:01, sebastien.b...@adil71.org wrote: Is that user authentication with MySQL and LDAP/SAMBA can coexist? Yes, you can create different SOGoUserSources. Each one specifies if it uses LDAP/AD or database as authentication source for SOGo. Openchange+SAMBA can be used with both too, but they need their own credentials, which you have to keep in synch by yourself. AFAIK that is so, because SAMBA4 does currently not support shared trust with an AD. Ok thanks you I asked this because I have a big problem with the ldap connection. I have an error message when I test the connection with Webmin SOGo: Failed: IO :: Socket :: INET: connect: Connection refused Have you any idea? -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Native Microsoft Outlook installation 2.0 gone really bad
Hello Thomas Dilts On 2012-10-01 18:18, Thomas Dilts wrote: After what I had thought was the last step of Native Microsoft Outlook installation 2.0 on my Ubuntu server 12.04, Now I am totally locked out of the server. It seems that something is wrong with the sldap setup. I noticed the problem after the Adding Users section where I added only myself. I noticed I could not run anything sudo . I didn't get any error messages when running sudo, just nothing would happen... Then I got kicked out of my ssh session. And now I am locked out from both SSH and the server's terminal. I restarted the server through the hardware button since I can't even log-in. I get a message when restarting that sldap failed... I assume the problem occured perhaps in the OpenChange configuration scripts however they ran exactly as expected. I have tried logging into the server with another administrator's username and password but it is the same thing. I simply can't log in either with the server terminal or ssh. Any ideas on what I can do? strangely enough, I can ftp into the server. That seems my only way in and out. Do you use pam_ldap for authentication of local users on this server? Kind regards, Christian Mack -- Christian Mack Gruppe Informationsdienste Rechenzentrum Universität Konstanz -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Authentification Mysql and LDAP
Hi Christian, Any thoughts on my queries ? Thanks Regards, Devinder Singh Birdi On 10/2/2012 3:30 PM, Devinder Singh wrote: Hi, I have similar query for myself too. Before Outlook Native Compatibility Setup, Authentication was done by Mysql. For the Outlook Setup, I added the below command in the bottom. After this authentication do not work. I have configured same username and password in Samba as in Mysql. Queries : 1. Is Authentication via SAMBA necessary for Outlook Compatibility ? 2. Is LDAP also necessary for Outlook along with Samba as per the statement in help document. Samba 4's directory can be queried over LDAP just like Microsoft Active Directory. defaults write sogod SOGoUserSources '( { CNFieldName = displayName; IDFieldName = cn; UIDFieldName = sAMAccountName; baseDN = cn=Users,dc=example,dc=com; bindDN = cn=Administrator,cn=Users,dc=example,dc=com; bindFields = ( sAMAccountName ); bindPassword = %1OpenChange; canAuthenticate = YES; displayName = Shared Addresses; hostname = 127.0.0.1; id = samba; isAddressBook = YES; port = 389; } )' Thanks Regards, Devinder Singh Birdi On 10/2/2012 3:20 PM, Christian Mack wrote: Hello Sebastien Blin On 2012-10-02 11:01,sebastien.b...@adil71.org wrote: Is that user authentication with MySQL and LDAP/SAMBA can coexist? Yes, you can create different SOGoUserSources. Each one specifies if it uses LDAP/AD or database as authentication source for SOGo. Openchange+SAMBA can be used with both too, but they need their own credentials, which you have to keep in synch by yourself. AFAIK that is so, because SAMBA4 does currently not support shared trust with an AD. Kind regards, Christian Mack -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Calendar and contact roles
Hello Vincent Gatignol On 2012-10-01 19:20, Vincent Gatignol wrote: Le 15/08/2012 11:07, Christian Mack a écrit : On 2012-06-21 13:43, ANAND SHAH wrote: Please pass on all Possible options for SOGoCalendarDefaultRoles SOGoCalendarDefaultRoles sets the access privileges for every user of SOGo on newly created calendars. Create and delete privileges are set once for the whole calendar object. You can set it to ObjectCreator and/or ObjectEraser. Access and modify privileges are separated for the three confidentiality levels of events/tasks: Public, Confidential and Private. For each level you can set it either to DAndTViewer, Viewer, Responder or Modifier. Ok for this ! I've set up custom default rules that are good for internal use. But how can we add a default role to none for anonymous access ? We don't use anonymous access here, sorry. But AFAIK there is no special default configuration for this. So you have to rely on the user to set the privileges right, when they share it anonymously. Perhaps you want to open an enhancement request for this? Then just use http://www.sogo.nu/bugs Kind regards, Christian Mack -- Christian Mack Gruppe Informationsdienste Rechenzentrum Universität Konstanz -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] How to manage IMAP subscription folders via SOGo?
On 02/10/12 04:19, Alessio Cecchi wrote: I would like to manage the subscription of IMAP folders via sogo web interfaces but when I do right click on account name Subscribe options is grey/unavailable. How can I enable this options? From Preferences I can only choose to show/not show subscribed mailboxes only This feature is not yet implemented in SOGo. Thanks, -- Ludovic Marcotte +1.514.755.3630 :: www.inverse.ca Inverse inc. :: Leaders behind SOGo (www.sogo.nu) and PacketFence (www.packetfence.org) -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Calendar and contact roles
SOGoCalendarDefaultRoles does not affect anonymous access, but only Authenticated users. Regards, Igor Christian Mack wrote, On 02/10/2012 12:20: Hello Vincent Gatignol On 2012-10-01 19:20, Vincent Gatignol wrote: Le 15/08/2012 11:07, Christian Mack a écrit : On 2012-06-21 13:43, ANAND SHAH wrote: Please pass on all Possible options for SOGoCalendarDefaultRoles SOGoCalendarDefaultRoles sets the access privileges for every user of SOGo on newly created calendars. Create and delete privileges are set once for the whole calendar object. You can set it to ObjectCreator and/or ObjectEraser. Access and modify privileges are separated for the three confidentiality levels of events/tasks: Public, Confidential and Private. For each level you can set it either to DAndTViewer, Viewer, Responder or Modifier. Ok for this ! I've set up custom default rules that are good for internal use. But how can we add a default role to none for anonymous access ? We don't use anonymous access here, sorry. But AFAIK there is no special default configuration for this. So you have to rely on the user to set the privileges right, when they share it anonymously. Perhaps you want to open an enhancement request for this? Then just use http://www.sogo.nu/bugs Kind regards, Christian Mack -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Calendar and contact roles
Le 02/10/2012 14:07, Igor Vitorac a écrit : SOGoCalendarDefaultRoles does not affect anonymous access, but only Authenticated users. Thanks for the reply, I was asking because setting up this param in GNUStepDefaults make new calendars with the specified ACLs for both authenticated _and_ anonymous/public ! Maybe it's a bug ? Regards -- Vincent Gatignol :: VGSI :: Services Informatiques 04 73 14 26 51 http://www.vgsi.fr signature.asc Description: OpenPGP digital signature
Re: [SOGo] Authentification Mysql and LDAP
Hello Devinder Singh On 2012-10-02 12:00, Devinder Singh wrote: On 10/2/2012 3:20 PM, Christian Mack wrote: On 2012-10-02 11:01, sebastien.b...@adil71.org wrote: Is that user authentication with MySQL and LDAP/SAMBA can coexist? Yes, you can create different SOGoUserSources. Each one specifies if it uses LDAP/AD or database as authentication source for SOGo. Openchange+SAMBA can be used with both too, but they need their own credentials, which you have to keep in synch by yourself. AFAIK that is so, because SAMBA4 does currently not support shared trust with an AD. I have similar query for myself too. Before Outlook Native Compatibility Setup, Authentication was done by Mysql. For the Outlook Setup, I added the below command in the bottom. After this authentication do not work. I have configured same username and password in Samba as in Mysql. Queries : 1. Is Authentication via SAMBA necessary for Outlook Compatibility ? Yes, Openchange uses SAMBA for the authentication with Outlook exclusively. 2. Is LDAP also necessary for Outlook along with Samba as per the statement in help document. Samba 4's directory can be queried over LDAP just like Microsoft Active Directory. No, LDAP is not neccessary. This statement from the help document only means, that you can use SAMBA instead of an LDAP/AD for authentication with SOGo too. defaults write sogod SOGoUserSources '( { CNFieldName = displayName; IDFieldName = cn; UIDFieldName = sAMAccountName; baseDN = cn=Users,dc=example,dc=com; bindDN = cn=Administrator,cn=Users,dc=example,dc=com; bindFields = ( sAMAccountName ); bindPassword = %1OpenChange; canAuthenticate = YES; displayName = Shared Addresses; hostname = 127.0.0.1; id = samba; isAddressBook = YES; port = 389; } )' Is SAMBA really listening on Port 389? Kind regards, Christian Mack -- Christian Mack Gruppe Informationsdienste Rechenzentrum Universität Konstanz -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] SOGo 2.0 Microsoft authentication with Samba
Hello, On my setup, before Outlook Native Compatibility Setup, Authentication was done by Mysql. For the Outlook Setup, I added the SOGoUsers Settings for Samba as per doc. After this authentication do not work. I have configured same username and password in Samba as in Mysql. However, After I reverted the .GNUstepDefaults to original settings, authentication not working. Sogo log mentions below /SOGoRootPage Login for user 'devinder' might not have worked - password policy: 65535 grace: -1 expire: -1 bound: 0// //localhost.localdomain - - [02/Oct/2012:11:52:12 GMT] POST /SOGo/connect HTTP/1.1 403 34/66 0.002 - - 0/ Queries : 1. Is Authentication via SAMBA necessary for Outlook Compatibility ? 2. Is LDAP also necessary for Outlook along with Samba as per the statement in help document. Samba 4's directory can be queried over LDAP just like Microsoft Active Directory. -- Thanks Regards, Devinder Singh Birdi -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] How to manage IMAP subscription folders via SOGo?
Il 02/10/2012 13:38, Ludovic Marcotte ha scritto: On 02/10/12 04:19, Alessio Cecchi wrote: I would like to manage the subscription of IMAP folders via sogo web interfaces but when I do right click on account name Subscribe options is grey/unavailable. How can I enable this options? From Preferences I can only choose to show/not show subscribed mailboxes only This feature is not yet implemented in SOGo. Thanks for telling me, I hope will be implemented in the future. -- Alessio Cecchi is: @ ILS - http://www.linux.it/~alessice/ on LinkedIn - http://www.linkedin.com/in/alessice Assistenza Sistemi GNU/Linux - http://www.cecchi.biz/ @ PLUG - ex-Presidente, adesso senatore a vita, http://www.prato.linux.it -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] How to manage IMAP subscription folders via SOGo?
Il 02/10/2012 13:38, Ludovic Marcotte ha scritto: On 02/10/12 04:19, Alessio Cecchi wrote: I would like to manage the subscription of IMAP folders via sogo web interfaces but when I do right click on account name Subscribe options is grey/unavailable. How can I enable this options? From Preferences I can only choose to show/not show subscribed mailboxes only This feature is not yet implemented in SOGo. Thanks for telling me, I hope will be implemented in the future. -- Alessio Cecchi is: @ ILS - http://www.linux.it/~alessice/ on LinkedIn - http://www.linkedin.com/in/alessice Assistenza Sistemi GNU/Linux - http://www.cecchi.biz/ @ PLUG - ex-Presidente, adesso senatore a vita, http://www.prato.linux.it -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Authentification Mysql and LDAP
Thanks Christian, Queries : 1. Is Authentication via SAMBA necessary for Outlook Compatibility ? _Christian_: Yes, Openchange uses SAMBA for the authentication with Outlook exclusively. _Query_ : But does this mean that Sogo .GNUstepDefaults need to be setup for samba as well or Mysql authentication can work? I have manually added the user in Samba4 setup exactly with same details as in mysql. 2. Is SAMBA really listening on Port 389? Reply: Yes I find samba listening port 389. Also ldap as a child service for samba. please check below output. [root@linux~]# netstat -npl | grep 389 tcp0 0 0.0.0.0:389 0.0.0.0:* LISTEN 27345/samba tcp0 0 :::389 :::*LISTEN 27345/samba udp0 0 192.168.1.185:389 0.0.0.0:* 27346/samba udp0 0 0.0.0.0:389 0.0.0.0:* 27346/samba udp0 0 fe80::e269:95ff:fe9:389 :::*27346/samba udp0 0 :::389 :::* 27346/samba unix 2 [ ACC ] STREAM LISTENING 13891 2942/Xorg /tmp/.X11-unix/X0 unix 2 [ ACC ] STREAM LISTENING 20189 3891/gnome-power-ma /tmp/orbit-kalyani/linc-f33-0-efd6f364bf19 unix 2 [ ACC ] STREAM LISTENING 13890 2942/Xorg @/tmp/.X11-unix/X0 [root@linux~]# netstat -npl | grep ldap unix 2 [ ACC ] STREAM LISTENING 839085 27345/samba /var/lib/samba4/private/ldap_priv/ldapi unix 2 [ ACC ] STREAM LISTENING 839082 27345/samba /var/lib/samba4/private/ldapi [root@newpuneltsp ~]# cat /etc/services | grep 389 ldap389/tcp ldap389/udp Kindly guide. Thanks Regards, Devinder Singh Birdi On 10/2/2012 5:53 PM, Christian Mack wrote: Hello Devinder Singh On 2012-10-02 12:00, Devinder Singh wrote: On 10/2/2012 3:20 PM, Christian Mack wrote: On 2012-10-02 11:01, sebastien.b...@adil71.org wrote: Is that user authentication with MySQL and LDAP/SAMBA can coexist? Yes, you can create different SOGoUserSources. Each one specifies if it uses LDAP/AD or database as authentication source for SOGo. Openchange+SAMBA can be used with both too, but they need their own credentials, which you have to keep in synch by yourself. AFAIK that is so, because SAMBA4 does currently not support shared trust with an AD. I have similar query for myself too. Before Outlook Native Compatibility Setup, Authentication was done by Mysql. For the Outlook Setup, I added the below command in the bottom. After this authentication do not work. I have configured same username and password in Samba as in Mysql. Queries : 1. Is Authentication via SAMBA necessary for Outlook Compatibility ? Yes, Openchange uses SAMBA for the authentication with Outlook exclusively. 2. Is LDAP also necessary for Outlook along with Samba as per the statement in help document. Samba 4's directory can be queried over LDAP just like Microsoft Active Directory. No, LDAP is not neccessary. This statement from the help document only means, that you can use SAMBA instead of an LDAP/AD for authentication with SOGo too. defaults write sogod SOGoUserSources '( { CNFieldName = displayName; IDFieldName = cn; UIDFieldName = sAMAccountName; baseDN = cn=Users,dc=example,dc=com; bindDN = cn=Administrator,cn=Users,dc=example,dc=com; bindFields = ( sAMAccountName ); bindPassword = %1OpenChange; canAuthenticate = YES; displayName = Shared Addresses; hostname = 127.0.0.1; id = samba; isAddressBook = YES; port = 389; } )' Is SAMBA really listening on Port 389? Kind regards, Christian Mack -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] iCal and u...@domain.com
hi list I fond a strage misbehaviour with iCal on sogo. iCal sometimes creates meetings where the ORGANIZER is like u...@domain.com instead of firstname.lastn...@domain.com which is the correct email address in our company. this is ok for most of the meetings, but it makes accepting the meetings impossible for a meeting that's been created by another user with read/write rights on the calendar in question (iCal then thinks that the meeting doesn't belong to the calendar owner). anyone has seen this behaviour? I've seen it happen in ical 4 (OSX 10.6.x) and 6 (OSX 10.8.x). would a sogo bug report help? greets hugo.- -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] NT_STATUS_CONNECTION_REFUSED
Hi, When I run it, I get errors. smbclient -L localhost -U% Unknown parameter encountered: server role Ignoring unknown parameter server role Unknown parameter encountered: dcerpc endpoint servers Ignoring unknown parameter dcerpc endpoint servers Connection to localhost failed (Error NT_STATUS_CONNECTION_REFUSED) Here is my smb.conf : # Global parameters [global] workgroup = EXAMPLE realm = example.com netbios name = SOGO server role = active directory domain controller passdb backend = samba4 dcerpc endpoint servers = epmapper, mapiproxy dcerpc_mapiproxy:server = true dcerpc_mapiproxy:interfaces = exchange_emsmdb, exchange_nsp, exchange_ds_rfr [netlogon] path = /var/lib/samba/sysvol/sivit.org/scripts read only = No [sysvol] path = /var/lib/samba/sysvol read only = No I do not understand where the error come. Kind regards Sebastien Blin -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] How to manage IMAP subscription folders via SOGo?
Hello Alessio Cecchi On 2012-10-02 14:33, Alessio Cecchi wrote: Il 02/10/2012 13:38, Ludovic Marcotte ha scritto: On 02/10/12 04:19, Alessio Cecchi wrote: I would like to manage the subscription of IMAP folders via sogo web interfaces but when I do right click on account name Subscribe options is grey/unavailable. How can I enable this options? From Preferences I can only choose to show/not show subscribed mailboxes only This feature is not yet implemented in SOGo. Thanks for telling me, I hope will be implemented in the future. See bug #255 http://www.sogo.nu/bugs/view.php?id=255 Kind regards, Christian Mack -- Christian Mack Gruppe Informationsdienste Rechenzentrum Universität Konstanz -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Rebuild SOGo package on squeeze
Dne po 1. října 2012 Jean Raby napsal(a): Thank you, I moved forward. However, it is another obstacle: Making all for bundle SOGoBackend... Creating SOGoBackend.MAPIStore/ Compiling file MAPIApplication.m ... Compiling file MAPIStoreActiveTables.m ... Compiling file MAPIStoreAuthenticator.m ... Compiling file MAPIStoreMapping.m ... Compiling file MAPIStoreMIME.m ... Compiling file MAPIStoreTypes.m ... Compiling file MAPIStorePropertySelectors.m ... Compiling file MAPIStoreSamDBUtils.m ... Compiling file MAPIStoreUserContext.m ... Compiling file SOGoMAPIObject.m ... Compiling file SOGoMAPIDBObject.m ... Compiling file SOGoMAPIDBMessage.m ... Compiling file SOGoMAPIDBFolder.m ... In file included from SOGoMAPIDBFolder.m:54: /usr/include/libmapiproxy.h:70: error: field 'server_id' has incomplete type make[4]: *** [obj/SOGoBackend.obj/SOGoMAPIDBFolder.m.o] Error 1 make[3]: *** [internal-bundle-run-compile-submake] Error 2 make[2]: *** [SOGoBackend.all.bundle.variables] Error 2 make[1]: *** [internal-all] Error 2 make[1]: Leaving directory `/tmp/buildd/sogo-2.0.0/OpenChange' Hmm that's weird, struct server_id is defined in gen_ndr/server_id.h which is shipped with samba4-dev Can you re-send the build log? Thanks Slavek -- Jean Raby jr...@inverse.ca :: +1.514.447.4918 (x120) :: www.inverse.ca Inverse inc. :: Leaders behind SOGo (www.sogo.nu) and PacketFence (www.packetfence.org) I tried to prepare a patch with which building is successful. Patch is in GIT am format. However, the fix would probably rather be in libmapiproxy.h in OpenChange. Slavek -- -- users@sogo.nu https://inverse.ca/sogo/lists---BeginMessage--- From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= slavek.ba...@axis.cz Date: Tue, 2 Oct 2012 17:49:42 +0200 Subject: [PATCH] Fix FTBFS in OpenChange backend --- OpenChange/MAPIStoreContext.m |1 + OpenChange/MAPIStoreFolder.m |1 + OpenChange/MAPIStoreFolderTable.m |1 + OpenChange/MAPIStoreTable.m |1 + OpenChange/SOGoMAPIDBFolder.m |1 + 5 files changed, 5 insertions(+) diff --git a/OpenChange/MAPIStoreContext.m b/OpenChange/MAPIStoreContext.m index 43f385c..e892814 100644 --- a/OpenChange/MAPIStoreContext.m +++ b/OpenChange/MAPIStoreContext.m @@ -52,6 +52,7 @@ #undef DEBUG #include stdbool.h #include gen_ndr/exchange.h +#include gen_ndr/server_id.h #include util/attr.h #include libmapiproxy.h #include mapistore/mapistore.h diff --git a/OpenChange/MAPIStoreFolder.m b/OpenChange/MAPIStoreFolder.m index 36d0575..8a3fe50 100644 --- a/OpenChange/MAPIStoreFolder.m +++ b/OpenChange/MAPIStoreFolder.m @@ -55,6 +55,7 @@ #import SOGoMAPIDBMessage.h #include gen_ndr/exchange.h +#include gen_ndr/server_id.h #undef DEBUG #include util/attr.h diff --git a/OpenChange/MAPIStoreFolderTable.m b/OpenChange/MAPIStoreFolderTable.m index d76c989..d2d4391 100644 --- a/OpenChange/MAPIStoreFolderTable.m +++ b/OpenChange/MAPIStoreFolderTable.m @@ -30,6 +30,7 @@ #import MAPIStoreFolderTable.h #undef DEBUG +#include gen_ndr/server_id.h #include mapistore/mapistore.h #include mapistore/mapistore_nameid.h #include libmapiproxy.h diff --git a/OpenChange/MAPIStoreTable.m b/OpenChange/MAPIStoreTable.m index 04dcdf7..499a3b4 100644 --- a/OpenChange/MAPIStoreTable.m +++ b/OpenChange/MAPIStoreTable.m @@ -38,6 +38,7 @@ #import MAPIStoreTable.h #undef DEBUG +#include gen_ndr/server_id.h #include mapistore/mapistore.h #include mapistore/mapistore_errors.h #include libmapiproxy.h diff --git a/OpenChange/SOGoMAPIDBFolder.m b/OpenChange/SOGoMAPIDBFolder.m index 1ed8d23..88764a2 100644 --- a/OpenChange/SOGoMAPIDBFolder.m +++ b/OpenChange/SOGoMAPIDBFolder.m @@ -47,6 +47,7 @@ #undef DEBUG #include stdbool.h +#include gen_ndr/server_id.h #include talloc.h #include util/time.h #include mapistore/mapistore.h -- 1.7.10.4 ---End Message---
[SOGo] Attempting to run Sogo 2 alongside Exchange 2003
Hi there, I'm attempted to set up SOGo to run alongside an existing Exchange 2003 server with a view to replacing exchange in the future. I've managed to get the SOGo box joined to the AD Server and accepting mail for the domain, However I'm having a couple of problems when trying to use the exchange integration. Whenever I try and point Outlook to the SOGo machine as an exchange account it changes the server name from sogo.domain to exchange.domain. Is there any way to stop this an make it use the Openchange Exchange integration so I can test that? Looking to slowly migrate users from one machine to another and any help would be greatly appreciated. Best Regards -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Attempting to run Sogo 2 alongside Exchange 2003
Hi, On Di 02 Okt 2012 18:05:11 CEST, Ryan wrote: Whenever I try and point Outlook to the SOGo machine as an exchange account it changes the server name from sogo.domain to exchange.domain. Is there any way to stop this an make it use the Openchange Exchange integration so I can test that? Just guessing blindly, but I assume this is due to Outlooks server autodiscovery. You could try to override it with automx or similar (after verifying with Wireshark it really probes the autoconfig server). -- Mit freundlichen Grüßen, Sven SCHWEDAS Systemadministrator TAO Beratungs- und Management GmbH | Lendplatz 45 | A - 8020 Graz sven.schwe...@tao.at | +43 (0)680 301 7167 skype: sven.schwedas | xmpp: sven.schwe...@tao.at | www.tao.at -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Rebuild SOGo package on squeeze
Dne út 2. října 2012 Slávek Banko napsal(a): I tried to prepare a patch with which building is successful. Patch is in GIT am format. However, the fix would probably rather be in libmapiproxy.h in OpenChange. Slavek Of course, I forgot to add the build-deps for Debian packaging. Patch attached. Slavek -- users@sogo.nu https://inverse.ca/sogo/lists---BeginMessage--- From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= slavek.ba...@axis.cz Date: Tue, 2 Oct 2012 18:17:55 +0200 Subject: [PATCH 2/2] Add dependencies for Debian packaging --- packaging/debian-multiarch/control |2 +- packaging/debian/control-squeeze |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/debian-multiarch/control b/packaging/debian-multiarch/control index 1f861a8..fe36af2 100644 --- a/packaging/debian-multiarch/control +++ b/packaging/debian-multiarch/control @@ -1,7 +1,7 @@ Source: sogo Priority: optional Maintainer: Inverse Support supp...@inverse.ca -Build-Depends: debhelper (= 8.0.0), gobjc | objc-compiler, libgnustep-base-dev, libsope-appserver4.9-dev, libsope-core4.9-dev, libsope-gdl1-4.9-dev, libsope-ldap4.9-dev, libsope-mime4.9-dev, libsope-xml4.9-dev, libmemcached-dev, libxml2-dev, libsbjson-dev, libssl-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev, libmapi-dev, libmapistore-dev, libmapiproxy-dev +Build-Depends: debhelper (= 8.0.0), gobjc | objc-compiler, libgnustep-base-dev, libsope-appserver4.9-dev, libsope-core4.9-dev, libsope-gdl1-4.9-dev, libsope-ldap4.9-dev, libsope-mime4.9-dev, libsope-xml4.9-dev, libmemcached-dev, libxml2-dev, libsbjson-dev, libssl-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev, libmapi-dev, libmapistore-dev, libmapiproxy-dev, python-samba, samba4-dev Section: web Standards-Version: 3.9.2 diff --git a/packaging/debian/control-squeeze b/packaging/debian/control-squeeze index 7a047b1..164a9c9 100644 --- a/packaging/debian/control-squeeze +++ b/packaging/debian/control-squeeze @@ -1,7 +1,7 @@ Source: sogo Priority: optional Maintainer: Inverse Support supp...@inverse.ca -Build-Depends: debhelper (= 7.0.15), gobjc | objc-compiler, libgnustep-base-dev, libsope-appserver4.9-dev, libsope-core4.9-dev, libsope-gdl1-4.9-dev, libsope-ldap4.9-dev, libsope-mime4.9-dev, libsope-xml4.9-dev, libmemcached-dev, libxml2-dev, libsbjson-dev, libssl-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev, libmapi-dev, libmapistore-dev, libmapiproxy-dev +Build-Depends: debhelper (= 7.0.15), gobjc | objc-compiler, libgnustep-base-dev, libsope-appserver4.9-dev, libsope-core4.9-dev, libsope-gdl1-4.9-dev, libsope-ldap4.9-dev, libsope-mime4.9-dev, libsope-xml4.9-dev, libmemcached-dev, libxml2-dev, libsbjson-dev, libssl-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev, libmapi-dev, libmapistore-dev, libmapiproxy-dev, python-samba, samba4-dev Section: web Standards-Version: 3.9.1 -- 1.7.10.4 ---End Message---
[SOGo] User List / Addressbook Issue with SOGo 2.0.0 + Active Directory Backend
Hello, we are modernizing our IT services. In turn of that I deployed SOGo 2.0 on CentOS 6.3 together with an Active Directory LDAP backend as an evaluation installation. The ad-coupled login works very well, as does sending email, integration with Thunderbird ESR together with SOGo ConnectorIntegrator regarding tasks, calendar and address book. I currently have one show stopping issue left though: Although my AD is marked as being an address book no users are visible in the LDAP address book or can be found during search of shared calendars, address books, task lists or for email completion. I found a bug in the bug tracker that shows similar (or at least closely related) effects and added my issue to it. It can be found here: http://www.sogo.nu/bugs/view.php?id=1937 (See the first note) Details from the bug report: I have a possibly related issue: This instance of sogod 2.0.0 (release version) on CentOs 6.3 runs against a Win2k8r2 active directory. It authenticates fine, anyhow once i try to subscribe to another users address book, calendar or write him an email, i.e. try to access resources from the configured shared address book I get the log entry 2012-09-28 20:29:35.170 sogod[6445] -[NGLdapConnection _searchAtBaseDN:qualifier:attributes:scope:]: search with at base filter for attrs ` Sep 28 20:29:35 sogod [6445]: [ERROR] 0x0x28ecdb8[NGLdapAttribute] cound not convert value of objectGUID to string Sep 28 20:29:35 sogod [6445]: [ERROR] 0x0x28f1598[NGLdapAttribute] cound not convert value of objectSid to string 2012-09-28 20:29:35.180 sogod[6445] WARNING(-[NSNull(misc) count]): called NSNull -count (returns 0) !!! as described above. I'd expect to see the actual values being queried here. And more I'd love to see that user search working as then I'd be able to use it as groupware. Other than that I bug I am rather impressed up to now. The defaults are configured as follows: sogod SOGoSMTPServer smtpserver sogod SOGoUserSources '( { CNFieldName = cn; IDFieldName = cn; UIDFieldName = userPrincipalName; baseDN = CN=Users,DC=test,DC=foo,DC=bar; bindDN = CN=ldapuser,CN=Users,DC=test,DC=foo,DC=bar; bindFields = ( sAMAccountName, userPrincipalName ); bindPassword = password; canAuthenticate = YES; displayName = Active Directory; hostname = dc; id = directory; isAddressBook = YES; port = 389; type = ldap; } )' sogod SOGoCacheCleanupInterval 10 sogod SearchFieldNames '( sn, displayName, userPrincipalName, telephoneNumber )' sogod SOGoIMAPServer imap://imapserver:143 [^] sogod SOGoLanguage German sogod OCSEMailAlarmsFolderURL mysql://sogo:sogo@mysql:3306/sogo/sogo_alarms_folder [^] sogod SOGoFirstDayOfWeek 1 sogod SOGoProfileURL mysql://sogo:sogo@mysql:3306/sogo/sogo_user_profile [^] sogod SOGoTimeZone Europe/Berlin sogod SOGoFoldersSendEMailNotifications YES sogod LDAPDebugEnabled YES sogod SOGoForceIMAPLoginWithEmail YES sogod SOGoMailingMechanism smtp sogod OCSSessionsFolderURL mysql://sogo:sogo@mysql:3306/sogo/sogo_sessions_folder [^] sogod MailFieldNames '( userPrincipalName )' sogod SOGoSuperUsernames '( admin )' sogod SOGoMailDomain thedomain sogod OCSFolderInfoURL mysql://sogo:sogo@mysql:3306/sogo/sogo_folder_info [^] sogod SOGoACLsSendEMailNotifications YES sogod SOGoAppointmentSendEMailNotifications YES The directory looks like a almost pristine Windows 2008r2 active directory domain services directory. No Unix services installed, no extra OUs, no fancy attributes added, just a few users and groups. I'd really appreciate any help or debugging clues on that issue. Kind regards, --- Johannes Tigges Ausbildungszentrum OTA GmbH (gemeinnützig) Josef-Orlopp-Strasse 45-49 10365 Berlin Email : j.tig...@ausbildung-ota.de Web : http://www.ausbildung-ota.de -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] ZEG 2.0 outlook 2007
Hi, I'm testing with ZEG 2.0 Released on September 27th 2012 (virtualbox). I can successfully connect with outlook 2007 (after adding sogo.example.com autodiscover.example.com into client's hosts file) but sending an email fails with error 0x80040115. Calendar and address book seems to work... I wonder if I missed some required config steps to allow Outlook 2007 to work with ZEG 2.0 Thx, Thomas -- users@sogo.nu https://inverse.ca/sogo/lists
Re: [SOGo] Attempting to run Sogo 2 alongside Exchange 2003
On 02/10/12 12:05, Ryan wrote: I've managed to get the SOGo box joined to the AD Server and accepting mail for the domain, However I'm having a couple of problems when trying to use the exchange integration. Out of curiosity, have you joined it as a domain member or DC? -- Ludovic Marcotte +1.514.755.3630 :: www.inverse.ca Inverse inc. :: Leaders behind SOGo (www.sogo.nu) and PacketFence (www.packetfence.org) -- users@sogo.nu https://inverse.ca/sogo/lists
[SOGo] BTS activities for Tuesday, October 02 2012
Title: BTS activities for Tuesday, October 02 2012 BTS Activities Home page: http://www.sogo.nu/bugs Project: SOGo For the period covering: Tuesday, October 02 2012 idlast updatestatus (resolution)categorysummary 2002 2012-10-02 10:21:04 new (open) Web Calendar Proposed Events 2001 2012-10-02 11:27:00 assigned (open) Web Mail Return receipt is broken 1515 2012-10-02 08:36:22 resolved (fixed) Web Calendar Task View is very basic