From sogo@opengroupware.org Wed Apr 18 17:18:58 2007 From: sogo@opengroupware.org (Rick) Date: Wed, 18 Apr 2007 10:18:58 -0600 Subject: [SOGo] Agenor LDAP/SOGo Message-ID: <462644F2.4000607@holmestheater.com> I've been wanted to play with sogo myself so I decided to compile and install. Compile went smooth. Setup Apache according to the README files... Alias, AliasMatch and the LocationMatch blocks. The first LocationMatch block is regarding "^SOGoHH*" Am I to understand that the SOGo interface is accessed from http://localhost/SOGoHH/ ? If done so, I'm presented with the 'Enter username and password for "Agenor LDAP" at http://10.0.0.80' My question is Where is it pulling this information from, and how do i setup the proper username and passwords to get into SOGo? What steps have I missed and what steps should I be taking to be able to logon? Does the SOGo interface have a 'root' user that I should be logging on with first much like OGO? Thanks! From sogo@opengroupware.org Wed Apr 18 18:45:29 2007 From: sogo@opengroupware.org (Helge Hess) Date: Wed, 18 Apr 2007 19:45:29 +0200 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <462644F2.4000607@holmestheater.com> References: <462644F2.4000607@holmestheater.com> Message-ID: <6E49FD5D-C92C-40A5-9E9A-ADC4DCAE03AC@opengroupware.org> On Apr 18, 2007, at 18:18, Rick wrote: > Setup Apache according to the README files... Alias, AliasMatch and > the LocationMatch blocks. Not sure whether the README files are still correct. > The first LocationMatch block is regarding "^SOGoHH*" This looks wrong, it should be at least ^/SOGo* > Am I to understand that the SOGo interface is accessed from http:// > localhost/SOGoHH/ ? Whatever you map it to. SOGoHH looks like it was a testing prefix of me, just SOGo is what is usually used. > If done so, I'm presented with the 'Enter username and password for > "Agenor LDAP" at http://10.0.0.80' Whatever you configure in Apache. > My question is Where is it pulling this information from, and how > do i setup the proper username and passwords to get into SOGo? You don't, authentication is not done by SOGo. You manage passwords in Apache, for example in htpasswd or OpenLDAP or Active Directory etc. > What steps have I missed and what steps should I be taking to be > able to logon? SOGo is non-trivial to install (its not a shrinkwrapped product), you shouldn't approach this unless you have sufficient time to find out all the details. And most likely you also need to modify the code to suite your needs. And no, there is no documentation. > Does the SOGo interface have a 'root' user that I should be logging > on with first much like OGO? No. Greets, Helge -- Helge Hess http://www.helgehess.eu/ From sogo@opengroupware.org Wed Apr 18 19:18:46 2007 From: sogo@opengroupware.org (Wolfgang Sourdeau) Date: Wed, 18 Apr 2007 14:18:46 -0400 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <462644F2.4000607@holmestheater.com> Message-ID: <4516b06c9b20133938922508d069341f@mozzarella> Hi Rick, I take the liberty of answering your questions because I assume you are talking about the Inverse branch of SOGo, which is the only one that's currently active. If I am wrong, I apologize... First of all, sorry for the poor state of the documentation in SOGO. This is something that we will take care of in the following days... The instructions you have read are only partly accurate because they are outdated. So I am going to give you quick instructions on how to have a test server running. To compile SOPE and SOGo, I suggest the use of gnustep-base whiich I guess you are already using. For basic testing, invoke both SOPE and SOGo configure script this way: ./configure --enable-strip --disable-debug --with-gnustep After both are built, you should copy the SOGo/UI/WebServerResources and SOGo/UI/Templates directories into $GNUSTEP_LOCAL_ROOT/Library/SOGo-0.9/ (this directory should be created by "make install") Now on with Apache configuration. Create a file in /etc/apache2/conf.d/ named "SOGo.conf" (you might not run Apache 2 or your configuration directory might be named "/etc/httpd" instead but it's all fine)... The SOGo.conf file should contain those settings or something that looks like it: Alias /sogo.woa/WebServerResources/ \ /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/WebServerResources/ Alias /SOGo.woa/WebServerResources/ \ /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/WebServerResources/ Alias /SOGO.woa/WebServerResources/ \ /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/WebServerResources/ AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) \ /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/$1.SOGo/Resources/$2 SetHandler ngobjweb-adaptor SetAppPort 25000 Don't mind the LDAP clauses, they are not required for a simple test environment. Restart apache. You will now need to set up SOGo defaults configuration. For each of the following key/value pairs, use the command "defaults write sogod-0.9 " WOMessageUseUTF8 YES AuthentificationMethod none WOPort 25000 SOGoServerTimeZone (should be the same as your TZ environment var) SOGo needs access to a postgres database via TCP/IP. Let' s say your server runs on 127.0.0.1 and that the database, its username and password are all set to "sogo" . You will need to append the following: OCSFolderInfoURL http://sogo:sogo@127.0.0.1:5432/sogo/sogo_folder_info AgenorProfileURL http://sogo:sogo@127.0.0.1:5432/sogo/sogo_user_profile If you have access to an IMAP mail server, you can access it from the mail interface of SOGo: SOGoDefaultMailDomain SOGoFallbackIMAP4Server You might also want to configure appropriate values for SOGoDraftsFolderName, SOGoTrashFolderName and SOGoSentFolderName. The last step is to initialize the database, both the basic structure and the tables for the all the users you want to test SOGO with. There are scripts in /OGoContentStore/sql/ which we will need. Actually only 3, the rest being there for historical reasons. From the psql shell, run the folderinfo-create.psql and profile-create.psql scripts. You will have to edit the first lines in generate-folderinfo-sql-for-users.sh and run it with the usernames of your user(s) as parameters and with a pipe to psql. This should look like this: ./generate-folderinfo-sql-for-users.sql tom barbara ludovic | psql -U sogo -h sogo sogo After those rather lengthy steps, you are now ready to launch SOGo. Just run sogod-0.9 and point your Firefox/Iceweasel browser to localhost/SOGo/. A login window will popup, just enter one of the usernames you've chosen and anything (except an empty string) as password. If you have an IMAP server, this will not work howver since SOGo relies on the user' s login informations to connect to the imap server. So if you have one, use the same login names and password you use for it. There is no "root" nor admin configuration facilities in the SOGo interface, however there are plans to simplify those things in a near future. Especially with regards to the handling of the user db tables and entries. Should you have any problem following the instructions I just wrote, please let me know. Wolfgang From sogo@opengroupware.org Thu Apr 19 23:02:38 2007 From: sogo@opengroupware.org (Rick) Date: Thu, 19 Apr 2007 16:02:38 -0600 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <4516b06c9b20133938922508d069341f@mozzarella> References: <4516b06c9b20133938922508d069341f@mozzarella> Message-ID: <4627E6FE.4050703@holmestheater.com> Thanks Wolfgang! I have a question relating to your use of the defaults command, is that only for MacOSX? I've found it on my OSX install, but in Fedora (FC3) i'm unable to find such a utility; any suggestions? >> RR Wolfgang Sourdeau wrote: > Hi Rick, > > > I take the liberty of answering your questions because I assume you > are talking about the Inverse branch of SOGo, which is the only one > that's currently active. If I am wrong, I apologize... > > First of all, sorry for the poor state of the documentation in SOGO. > This is something that we will take care of in the following days... > The instructions you have read are only partly accurate because they > are outdated. > So I am going to give you quick instructions on how to have a test > server running. > > To compile SOPE and SOGo, I suggest the use of gnustep-base whiich I > guess you are already using. > For basic testing, invoke both SOPE and SOGo configure script this way: > ./configure --enable-strip --disable-debug --with-gnustep > > After both are built, you should copy the SOGo/UI/WebServerResources > and SOGo/UI/Templates directories into > $GNUSTEP_LOCAL_ROOT/Library/SOGo-0.9/ (this directory should be > created by "make install") > > Now on with Apache configuration. > Create a file in /etc/apache2/conf.d/ named "SOGo.conf" (you might not > run Apache 2 or your configuration directory might be named > "/etc/httpd" instead but it's all fine)... The SOGo.conf file should > contain those settings or something that looks like it: > > Alias /sogo.woa/WebServerResources/ \ > /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/WebServerResources/ > Alias /SOGo.woa/WebServerResources/ \ > /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/WebServerResources/ > Alias /SOGO.woa/WebServerResources/ \ > /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/WebServerResources/ > AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) \ > > /usr/local/lib/GNUstep/Local/Library/SOGo-0.9/$1.SOGo/Resources/$2 > > > SetHandler ngobjweb-adaptor > SetAppPort 25000 > > > Don't mind the LDAP clauses, they are not required for a simple test > environment. > > Restart apache. > > You will now need to set up SOGo defaults configuration. For each of > the following key/value pairs, use the command "defaults write > sogod-0.9 " > > WOMessageUseUTF8 YES > AuthentificationMethod none > WOPort 25000 > SOGoServerTimeZone (should be the same as your TZ > environment var) > > SOGo needs access to a postgres database via TCP/IP. > Let' s say your server runs on 127.0.0.1 and that the database, its > username and password are all set to "sogo" . You will need to append > the following: > > OCSFolderInfoURL http://sogo:sogo@127.0.0.1:5432/sogo/sogo_folder_info > AgenorProfileURL http://sogo:sogo@127.0.0.1:5432/sogo/sogo_user_profile > > If you have access to an IMAP mail server, you can access it from the > mail interface of SOGo: > SOGoDefaultMailDomain > SOGoFallbackIMAP4Server > > You might also want to configure appropriate values for > SOGoDraftsFolderName, SOGoTrashFolderName and SOGoSentFolderName. > > The last step is to initialize the database, both the basic structure > and the tables for the all the users you want to test SOGO with. There > are scripts in /OGoContentStore/sql/ which we will need. > Actually only 3, the rest being there for historical reasons. > > From the psql shell, run the folderinfo-create.psql and > profile-create.psql scripts. You will have to edit the first lines in > generate-folderinfo-sql-for-users.sh and run it with the usernames of > your user(s) as parameters and with a pipe to psql. This should look > like this: > ./generate-folderinfo-sql-for-users.sql tom barbara ludovic | psql -U > sogo -h sogo sogo > > After those rather lengthy steps, you are now ready to launch SOGo. > Just run sogod-0.9 and point your Firefox/Iceweasel browser to > localhost/SOGo/. > A login window will popup, just enter one of the usernames you've > chosen and anything (except an empty string) as password. If you have > an IMAP server, this will not work howver since SOGo relies on the > user' s login informations to connect to the imap server. So if you > have one, use the same login names and password you use for it. > > There is no "root" nor admin configuration facilities in the SOGo > interface, however there are plans to simplify those things in a near > future. Especially with regards to the handling of the user db tables > and entries. > > Should you have any problem following the instructions I just wrote, > please let me know. > > > Wolfgang > From sogo@opengroupware.org Thu Apr 19 23:20:10 2007 From: sogo@opengroupware.org (Wolfgang Sourdeau) Date: Thu, 19 Apr 2007 18:20:10 -0400 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <4627E6FE.4050703@holmestheater.com> Message-ID: <889d243c814b22a62b059184363ba598@Maestro.local> On 2007-04-19 18:02:38 -0400 Rick wrote: > Thanks Wolfgang! > > I have a question relating to your use of the defaults command, is > that only > for MacOSX? I've found it on my OSX install, but in Fedora (FC3) i'm > unable > to find such a utility; any suggestions? Yes, this utility is available with the gnustep packages. To build SOGo, have you built libFoundation or have you installed gnustep? With gnustep, you should source /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh first (yes, it's that complicated, but you can include that in your login scripts if you wish) or the same script in a different but similar location. With libFoundation, you have to use the "Defaults" (with a capital "D") utility instead. However I suggest you use gnustep. Wolfgang From sogo@opengroupware.org Fri Apr 20 00:17:41 2007 From: sogo@opengroupware.org (Rick) Date: Thu, 19 Apr 2007 17:17:41 -0600 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <889d243c814b22a62b059184363ba598@Maestro.local> References: <889d243c814b22a62b059184363ba598@Maestro.local> Message-ID: <4627F895.2050301@holmestheater.com> Ahhh sweet, was trying to find "defaults" instead of "Defaults".... (libFoundation) I have followed the steps you outlined from compiling and apache configure. Using "Defaults" i entered the suggested values. Also followed the psql instructions you gave with success. However, when time came to boot up sogod, here's what i get: [root@UNIX1 Tools]# ./sogod-0.9 ./sogod-0.9: error while loading shared libraries: libSOGo.so.0.9: cannot open shared object file: No such file or directory [root@UNIX1 Tools]# find / "libSOGo.so.0.9" | grep "libSOGo.so.0.9" /usr/GNUstep/Local/Library/Libraries/libSOGo.so.0.9 /usr/GNUstep/Local/Library/Libraries/libSOGo.so.0.9.0 /home/rick/SOGo/SoObjects/SOGo/shared_obj/libSOGo.so.0.9 /home/rick/SOGo/SoObjects/SOGo/shared_obj/libSOGo.so.0.9.0 find: libSOGo.so.0.9: No such file or directory [root@UNIX1 Tools]# Where is sogod looking for in order to find these library files? Did I FUBAR something during compile time? Is there directive i missed? Almost there, so close i can taste it! Thank you SO MUCH for your help and instruction Wolfgang! I really appreciate the time and help you've offered thus far! >> RR Wolfgang Sourdeau wrote: > On 2007-04-19 18:02:38 -0400 Rick wrote: > >> Thanks Wolfgang! >> >> I have a question relating to your use of the defaults command, is >> that only for MacOSX? I've found it on my OSX install, but in Fedora >> (FC3) i'm unable to find such a utility; any suggestions? > > Yes, this utility is available with the gnustep packages. To build > SOGo, have you built libFoundation or have you installed gnustep? > > With gnustep, you should source > /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh first (yes, it's > that complicated, but you can include that in your login scripts if > you wish) or the same script in a different but similar location. With > libFoundation, you have to use the "Defaults" (with a capital "D") > utility instead. > > However I suggest you use gnustep. > > > Wolfgang > From sogo@opengroupware.org Fri Apr 20 01:31:34 2007 From: sogo@opengroupware.org (Wolfgang Sourdeau) Date: Thu, 19 Apr 2007 20:31:34 -0400 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <4627F895.2050301@holmestheater.com> Message-ID: On 2007-04-19 19:17:41 -0400 Rick wrote: > Ahhh sweet, was trying to find "defaults" instead of "Defaults".... > (libFoundation) > > I have followed the steps you outlined from compiling and apache > configure. > > Using "Defaults" i entered the suggested values. Also followed the > psql > instructions you gave with success. > > However, when time came to boot up sogod, here's what i get: > > [root@UNIX1 Tools]# ./sogod-0.9 > ./sogod-0.9: error while loading shared libraries: libSOGo.so.0.9: > cannot > open shared object file: No such file or directory > [root@UNIX1 Tools]# find / "libSOGo.so.0.9" | grep "libSOGo.so.0.9" > /usr/GNUstep/Local/Library/Libraries/libSOGo.so.0.9 > /usr/GNUstep/Local/Library/Libraries/libSOGo.so.0.9.0 This is because you need so source the GNUstep.sh script. From what I see in your mail you should source it by typing this: source /usr/GNUstep/System/Library/Makefiles/GNUstep.sh Afterwards, those libraries will be found. Also, make sure you have installed the latest SVN version of SOPE which has support for creating additional addressbooks. Cheers, Wolfgang From sogo@opengroupware.org Fri Apr 20 16:49:56 2007 From: sogo@opengroupware.org (Rick) Date: Fri, 20 Apr 2007 09:49:56 -0600 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: References: Message-ID: <4628E124.8080108@holmestheater.com> Success...almost! I logged into sogo, the interface comes up with a text only frame: Calendar | Address Book | Mail tb-mail-getmail-flat-24x24.png Get Mail tb-mail-write-flat-24x24.png Write tb-mail-addressbook-flat-24x24.png Addressbook tb-mail-reply-flat-24x24.png Reply tb-mail-replyall-flat-24x24.png Reply All tb-mail-forward-flat-24x24.png Forward tb-mail-delete-flat-24x24.png Delete tb-mail-junk-flat-24x24.png Junk tb-mail-print-flat-24x24.png Print tb-mail-stop-flat-24x24.png Stop and its all vertically placed like i've pasted it....the bottom frame is also all stacked vertically. Is this the default setup for sogo? Bottom frame snip: * Subscribe... * Get Messages for Account * New Folder... * * Search Messages... * Properties. Any thoughts / input on this? >> RR Wolfgang Sourdeau wrote: > On 2007-04-19 19:17:41 -0400 Rick wrote: > >> Ahhh sweet, was trying to find "defaults" instead of "Defaults".... >> (libFoundation) >> >> I have followed the steps you outlined from compiling and apache >> configure. >> >> Using "Defaults" i entered the suggested values. Also followed the >> psql instructions you gave with success. >> >> However, when time came to boot up sogod, here's what i get: >> >> [root@UNIX1 Tools]# ./sogod-0.9 >> ./sogod-0.9: error while loading shared libraries: libSOGo.so.0.9: >> cannot open shared object file: No such file or directory >> [root@UNIX1 Tools]# find / "libSOGo.so.0.9" | grep "libSOGo.so.0.9" >> /usr/GNUstep/Local/Library/Libraries/libSOGo.so.0.9 >> /usr/GNUstep/Local/Library/Libraries/libSOGo.so.0.9.0 > > This is because you need so source the GNUstep.sh script. From what I > see in your mail you should source it by typing this: > > source /usr/GNUstep/System/Library/Makefiles/GNUstep.sh > > Afterwards, those libraries will be found. > > Also, make sure you have installed the latest SVN version of SOPE > which has support for creating additional addressbooks. > > Cheers, > > > Wolfgang > From sogo@opengroupware.org Fri Apr 20 17:09:02 2007 From: sogo@opengroupware.org (Wolfgang Sourdeau) Date: Fri, 20 Apr 2007 12:09:02 -0400 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <4628E124.8080108@holmestheater.com> Message-ID: <2f6a5afd5edc9b676a89d5f91b206c65@mozzarella> On 2007-04-20 11:49:56 -0400 Rick wrote: > > Success...almost! > > I logged into sogo, the interface comes up with a text only frame: It's a new theme I am experimenting on. Because it uses less resources and is thus more scalable... ;) Seriously, this is either because SOGo does not find the resource files and produces wrong urls (which Firefox can thus not find), or this is because Apache is misconfigured. Have you put lines similar to these in you apache configuration: Alias /sogo.woa/WebServerResources/ /usr/GNUstep/Local/Library/SOGo-0.9/WebServerResources Alias /SOGo.woa/WebServerResources/ /usr/GNUstep/Local/Library/SOGo-0.9/WebServerResources When you look at the page source, what does the img tag's src attribute look like? Are they empty or do you still have something like "http://localhost:80/SOGo.woa/WebServerResources/tb-mail-write-flat-24x24.png"? Wolfgang From sogo@opengroupware.org Sun Apr 22 20:14:22 2007 From: sogo@opengroupware.org (Helge Hess) Date: Sun, 22 Apr 2007 21:14:22 +0200 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: <4516b06c9b20133938922508d069341f@mozzarella> References: <4516b06c9b20133938922508d069341f@mozzarella> Message-ID: On Apr 18, 2007, at 20:18, Wolfgang Sourdeau wrote: > From the psql shell, run the folderinfo-create.psql and profile- > create.psql scripts. The latter seems to be outdated. SOGo queries 'defaults' and 'settings' columns which are not in Svn. Thanks, Helge -- Helge Hess http://www.helgehess.eu/ From sogo@opengroupware.org Mon Apr 23 14:29:13 2007 From: sogo@opengroupware.org (Wolfgang Sourdeau) Date: Mon, 23 Apr 2007 09:29:13 -0400 Subject: [SOGo] Agenor LDAP/SOGo In-Reply-To: Message-ID: On 2007-04-22 15:14:22 -0400 Helge Hess wrote: > On Apr 18, 2007, at 20:18, Wolfgang Sourdeau wrote: >> From the psql shell, run the folderinfo-create.psql and profile- >> create.psql scripts. > > The latter seems to be outdated. SOGo queries 'defaults' and > 'settings' > columns which are not in Svn. You are right. I forgot to update those files. It's done now. Thanks. Wolfgang From sogo@opengroupware.org Tue Apr 24 17:32:03 2007 From: sogo@opengroupware.org (Rick) Date: Tue, 24 Apr 2007 10:32:03 -0600 Subject: [SOGo] The SOGo woe's In-Reply-To: References: Message-ID: <462E3103.1040609@holmestheater.com> Hey guys, I'm not sure where I went wrong. My previous posts stated that I was able to login and get 'some' sort of an interface for sogo up, which was great. After restarting sogo, apache and postgresql (NOT forgetting to source GNUstep.sh) everything appears to be working until I hit http://localhost/SOGo with firefox. I login using the user names i entered in the generate-folderinfo-sql-for-users.sql script and it dumps me to a 500 Internal Server Error... I noticed you were talking about some changes to the scripts so I did end up checking out the latest SOGo/SOPE from svn and recompiling. It seems to be loading ok, except for where I've indicated with -----ATTN----- blocks below. I'm not sure what the Error 500 is all about, but here's a copy of what sogod is dumping to the teminal: I was hoping you was be able to shed some light on why it doesn't like the PostgreSQL url (I figured it wanted an https url, but that didn't work either) [root@UNIX1 Tools]# source /usr/GNUstep/System/Library/Makefiles/GNUstep.sh [root@UNIX1 Tools]# ./sogod-0.9 & [1] 5177 [root@UNIX1 Tools]# Apr 24 10:20:27 sogod-0.9 [5178]: Note: vmem size check enabled: shutting down app when vmem > 200 MB Apr 24 10:20:27 sogod-0.9 [5178]: SNS support disabled. Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> scanning SOGo products in: /root/GNUstep/Library/SOGo-0.9 Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> scanning SOGo products in: /usr/GNUstep/Local/Library/SOGo-0.9 Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: MainUI.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: Contacts.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: ContactsUI.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: MailPartViewers.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: Mailer.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: CommonUI.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: Appointments.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: SchedulerUI.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: MailerUI.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> register SOGo product: iCalHTTP.SOGo Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> scanning SOGo products in: /usr/GNUstep/System/Library/SOGo-0.9 Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> scanning SOGo products in: /usr/local/lib/sogod-0.9 Apr 24 10:20:27 sogod-0.9 [5178]: <0x0x880c1bc[SOGoProductLoader]> scanning SOGo products in: /usr/lib/sogod-0.9 Apr 24 10:20:27 sogod-0.9 [5178]: Note(SOGoMailBodyPart): using constant etag for mail parts: '"imap4url_0_9_126"' Apr 24 10:20:27 sogod-0.9 [5178]: Note: using SOGo mail spool folder: /tmp/ Apr 24 10:20:27 sogod-0.9 [5178]: Note: using shared-folders name: '' Apr 24 10:20:27 sogod-0.9 [5178]: Note: using other-users-folders name: '' Apr 24 10:20:27 sogod-0.9 [5178]: Note: using other-users-folders name: '' Apr 24 10:20:27 sogod-0.9 [5178]: Note: fetching full mail header. Apr 24 10:20:27 sogod-0.9 [5178]: Note(SOGoMailObject): using constant etag for mail parts: '"imap4url_0_9_126"' Apr 24 10:20:27 sogod-0.9 [5178]: Note: no 'SOGoInternetMailSuffix' is configured. Apr 24 10:20:27 sogod-0.9 [5178]: |SOGo-0.9| WOHttpAdaptor listening on address *:25000 Apr 24 10:20:44 sogod-0.9 [5178]: Note(SoObject): SoDebugKeyLookup is enabled! Apr 24 10:20:44 sogod-0.9 [5178]: Note(SoObject): SoDebugBaseURL is enabled! Apr 24 10:20:44 sogod-0.9 [5178]: Note(SoObject): relative base URLs are enabled. 10.0.0.95 - - [24/Apr/2007:10:20:44 GMT] "GET /SOGo HTTP/1.1" 401 0/0 0.013 - - 140K Apr 24 10:20:48 sogod-0.9 [5178]: WARNING(-[SaxXMLReaderFactory _loadBundlePath:infoDictionary:nameMap:typeMap:]): multiple parsers available for MIME type 'text/x-vcard', using 'VSvCardSaxDriver' as default for type text/x-vcard. Apr 24 10:20:48 sogod-0.9 [5178]: WARNING(-[SaxXMLReaderFactory _loadBundlePath:infoDictionary:nameMap:typeMap:]): multiple parsers available for MIME type 'text/calendar', using 'VSiCalSaxDriver' as default for type text/calendar. Apr 24 10:20:48 sogod-0.9 [5178]: SOGoRootPage URL: /SOGo.woa/so/ 10.0.0.95 - - [24/Apr/2007:10:20:48 GMT] "GET /SOGo HTTP/1.1" 302 0/0 0.044 - - 736K 10.0.0.95 - - [24/Apr/2007:10:20:48 GMT] "GET /SOGo.woa/so/ HTTP/1.1" 302 0/0 0.006 - - 8K 10.0.0.95 - - [24/Apr/2007:10:20:48 GMT] "GET /SOGo/so/poonnor/ HTTP/1.1" 302 0/0 0.004 - - 4K Apr 24 10:20:48 sogod-0.9 [5178]: <0x0x88fee24[GCSFolderManager]> Note: loading 2 GCS folder types: Apr 24 10:20:48 sogod-0.9 [5178]: <0x0x88fee24[GCSFolderManager]> appointment: OK Apr 24 10:20:48 sogod-0.9 [5178]: <0x0x88fee24[GCSFolderManager]> contact: OK -----ATTN----- Apr 24 10:20:48 sogod-0.9 [5178]: Note: setup default manager at: <_NSAbsoluteHTTPURL 0x088fedec: 'http://sogo:sogo@127.0.0.1:5432/sogo/sogo_folder_info'> Apr 24 10:20:48 sogod-0.9 [5178]: WARNING(+[EOAdaptor adaptorNameForURLScheme:]): asked for 'http' URL, please fix the URLs to 'postgresql'! Apr 24 10:20:48 sogod-0.9 [5178]: EOAdaptor: cannot find adaptor bundle: 'PostgreSQL' EXCEPTION: (Exception name:InvalidArgumentException class:InvalidArgumentException reason:nil object to be added in dictionary (key=127.0.0.1 5432 sogo sogo) info:) ### child 5178 (#1) was terminated by signal 6 (uptime=21s). -----ATTN----- Apr 24 10:20:48 sogod-0.9 [5179]: Note: vmem size check enabled: shutting down app when vmem > 200 MB Apr 24 10:20:48 sogod-0.9 [5179]: SNS support disabled. My 'Defaults' are setup as follows also: Defaults write sogod-0.9 WOMessageUseUTF8 YES Defaults write sogod-0.9 AuthentificationMedthod none Defaults write sogod-0.9 WOPort 25000 Defaults write sogod-0.9 SOGoServerTimeZone Canada/Mountain Defaults write sogod-0.9 OCSFolderInfoURL http://sogo:sogo@127.0.0.1:5432/sogo/sogo_folder_info Defaults write sogod-0.9 AgenorProfileURL https://sogo:sogo@127.0.0.1:5432/sogo/sogo_user_profile Defaults write sogod-0.9 SOGoDefaultMainDomain holmestheater.com Defaults write sogod-0.9 SOGoFallbackIMAP4Server 10.0.0.250 Any ideas guys? Thanks again... From sogo@opengroupware.org Tue Apr 24 19:23:04 2007 From: sogo@opengroupware.org (Wolfgang Sourdeau) Date: Tue, 24 Apr 2007 14:23:04 -0400 Subject: [SOGo] The SOGo woe's In-Reply-To: <462E3103.1040609@holmestheater.com> Message-ID: Hi Rick, Your problem seems to be related to this message: > Apr 24 10:20:48 sogod-0.9 [5178]: EOAdaptor: cannot find adaptor > bundle: 'PostgreSQL' For whatever reason, it can't find the appropriate "database driver" bundle. If you do an "ls" on /usr/GNUstep/Library/GDLAdaptors-4.7, you should have a bundle named "PostgreSQL.gdladaptor". Is that what you have ? Wolfgang From sogo@opengroupware.org Fri Apr 27 23:55:39 2007 From: sogo@opengroupware.org (Wolfgang Sourdeau) Date: Fri, 27 Apr 2007 18:55:39 -0400 Subject: [SOGo] new pre-release of SOGo Message-ID: <9fee3622ec05f3a6dfd7cae9b44a091b@mozzarella> Hi everyone, We are happy to announce the snapshot pre-release 0.9-20070427 of Scalable OpenGroupware.org (alias "SOGo")... [What is SOGo?] SOGo is a favour of OGo that was redesigned for scalability while keep the basic and fundamental functionalities of a groupware server. Inverse groupe conseil has been working on it for nearly one year and has added many enhancements and features: - Fresh AJAX-based user interface which mimics the Thunderbird / Lighthing / Sunbird look and feel - Calendar and address book sharing capabilities - Exchange and Oracle Calendar-compatible ACLs - Tasks support and vCard storage support for contacts - Multiple address books and LDAP-based address books - CalDAV support We still actively work on the project and much more is to come very soon! [What has changed since the last annoucenement?] - complete refactoring of the ACL system, which makes it more fine-grained and able to transpose Exchange acls to SOGo - a lot of bugfixes in the both Objective-C and JavaScript code [Where can I download it?] SOGo is free software and is distributed under the GNU GPL. As such, you are free to download and try it the way you see fit and from the following locations.... The mentionned snapshot is available here: http://www.inverse.ca/uploads/SOGo/SOGo-20070427.tar.gz ... but SOGo is also available with SVN from here: http://svn.opengroupware.org/SOGo/inverse/trunk/ [Support] For any questions, do not hesitate to contact us by writing an email to : support@inverse.ca