From users@opengroupware.org Sat Mar 1 06:39:29 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Sat, 01 Mar 2008 07:39:29 +0100 Subject: [OGo-Users] postgres connection limit exceeded Message-ID: <20080301063930.3D4B5813A5@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > On 29.02.2008, at 18:19, Sebastian Reitenbach wrote: > >> What did you raise it too? The defaults in PostgreSQL are so low > >> it is > >> silly, so unless you raised them ALLOT I wouldn't be concerned. > > right now, I doubled the default value from 100 to 200. Not sure to > > what > > values I can raise it until I run into trouble. > > 10.000+? Well, you might need to raise limits. > > I think its some kind of non-critical problem that OGo allocates a > connection per session. I've seen this problem only since we use the snsd on one instance. As since we use this, it happens from time to time that someone logged in, just gets kicked out of ogo. I haven't found a reason for that yet, so maybe the snsd or the ogo instance dies, or the snsd makes some errors fiddling around with the sessions, and sends the user to a "wrong" instance. I've no idea what the snsd is doing internally with the sessions. maybe that could cause a steadily growing usage of database connections? But as said, I'm only guessing here. > > > above mentioned connections, 100 was not enough, there the problems > > happened. Well, as long as I can raise the connection limit without > > noticing > > problems I'm fine, and do not need pgbouncer. > > Unlikely that you need pgbouncer. well, when I can raise the limit up to values that you proposed, then I think I'm fine for a while ;) thanks Sebastian From users@opengroupware.org Sat Mar 1 06:47:01 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Sat, 01 Mar 2008 07:47:01 +0100 Subject: [OGo-Users] postgres connection limit exceeded Message-ID: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > > Anyways, I think PG forks a process per connection, this might have > > some cost associated. But I doubt it will become an issue unless you > > go 1000+. > > I found - > http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=497 oh, this is very interesting, especially as all the users are LDAP authenticated. also the mentioned default there: Defaults write NSGlobalDomain PGMaxOpenConnectionCount 200 however, I think this is per instance. On one host, I have snsd running serving 10 ogo instance, so these 10 instances together could then use up to 2000 database connections. Then, with my 200 maximum connections configured in postgres, this is by far not enough. So I assume I should raise it to something like 3000 to be safe. cheers Sebastian From users@opengroupware.org Sat Mar 1 07:00:01 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Sat, 01 Mar 2008 08:00:01 +0100 Subject: [OGo-Users] ogo session information handling Message-ID: <20080301070002.87B30815A7@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > On 29.02.2008, at 14:43, Sebastian Reitenbach wrote: > > I am wondering, how ogo keeps track of active sessions, does it save > > the > > session id's like PHP on the filesystem somewhere? > > Technically this is a pluggable mechanism (WOSessionStore), but for > practical reasons everything is kept in RAM. > > > How are the differences between accessing ogo with and without cookies > > enabled in the browser? > > Don't know. You can put the SOPE session id into a cookie which allows > you to open links from a native mail client w/o relogin. But using > cookies for authentication tokens is vulnerable to XSS attacks, so its > better to turn that off and keep the sids in the URL. > > I have some plans to introduce 'authentication tokens', but this may > not be what you want. actually I am looking into a way to speed up my private ogo instance a bit, as I wanted to open it for the rest of family and some friends. As I am running OpenBSD, I doubt that I get the snsd for it, and especially not for free ;) So I thought about ways how I can do sth. equivalent, just without the snsd. As I am running OpenBSD anyways, I just got the idea, taking a look at the relayd, and it seems, it is exactly what I am looking for: http://www.openbsd.org/cgi-bin/man.cgi?query=relayd&sektion=8&arch=i386&apropos=0&manpath=OpenBSD+Current unfortunately it seems that I ran into this bug yesterday evening, that right now exists in relayd in OpenBSD -current. However, I'll go reinstall another box with a plain OpenBSD 4.2 today, and try the hoststated (the hoststated got renamed to relayd after the 4.2 release) there. I'll let you know how that works out. thanks Sebastian From users@opengroupware.org Sat Mar 1 23:49:25 2008 From: users@opengroupware.org (Helge Hess) Date: Sun, 2 Mar 2008 00:49:25 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> References: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> Message-ID: <2E7E4B50-3A0C-47ED-9601-4EE4E5A7C04C@opengroupware.org> On 01.03.2008, at 07:47, Sebastian Reitenbach wrote: > Defaults write NSGlobalDomain PGMaxOpenConnectionCount 200 > however, I think this is per instance. On one host, I have snsd > running serving 10 ogo instance, so these 10 instances together > could then use up to 2000 database connections. > Then, with my 200 maximum connections configured in postgres, this > is by far not enough. So I assume I should raise it to something > like 3000 to be safe. Having more instances doesn't raise the number of sessions (hence open channels), they are load balanced, thats the idea after all. Each of the servers will have less channels open. Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Sat Mar 1 23:52:21 2008 From: users@opengroupware.org (Helge Hess) Date: Sun, 2 Mar 2008 00:52:21 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <20080301063930.3D4B5813A5@smtp.l00-bugdead-prods.de> References: <20080301063930.3D4B5813A5@smtp.l00-bugdead-prods.de> Message-ID: On 01.03.2008, at 07:39, Sebastian Reitenbach wrote: > I've no idea what the snsd is doing internally with the sessions. > maybe that could cause a steadily growing usage of database > connections? The snsd is not really magic. It only changes the routing of Apache. Backend. When an instance starts, it registers with the snsd. Every time a new session (+ ID) is created, this is registered with the snsd. So snsd always knows which process is driving which session. Frontend. Every time Apache (mod_ngobjweb) receives a request (with a session-id), it asks the snsd for the instance port maintaining that session. Well, and routes the request to that instance. Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Sat Mar 1 23:55:45 2008 From: users@opengroupware.org (Helge Hess) Date: Sun, 2 Mar 2008 00:55:45 +0100 Subject: [OGo-Users] ogo session information handling In-Reply-To: <20080301070002.87B30815A7@smtp.l00-bugdead-prods.de> References: <20080301070002.87B30815A7@smtp.l00-bugdead-prods.de> Message-ID: <283979D3-DC4A-4CA1-A3A3-30D8832B7FE8@opengroupware.org> On 01.03.2008, at 08:00, Sebastian Reitenbach wrote: > As I am running OpenBSD, I doubt that I get the snsd for it, and > especially not for free ;) Well, its not perfect, but a frontend Pound or mod_proxy with sticky session-ids are close to what snsd provides. (snsd gets directly notified by instances if they go up or down, but thats more for QoS, ie snsd knows better about the state of instances). Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Sun Mar 2 09:05:52 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Sun, 02 Mar 2008 10:05:52 +0100 Subject: [OGo-Users] ogo session information handling Message-ID: <20080302090552.F22168158E@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > On 01.03.2008, at 08:00, Sebastian Reitenbach wrote: > > As I am running OpenBSD, I doubt that I get the snsd for it, and > > especially not for free ;) > > Well, its not perfect, but a frontend Pound or mod_proxy with sticky > session-ids are close to what snsd provides. (snsd gets directly > notified by instances if they go up or down, but thats more for QoS, > ie snsd knows better about the state of instances). thanks for that hint regarding mod_proxy, I'll take a look. Also thanks for the explanation about how snsd is working in the other mail. I see it has more knowledge about the availability of instances. I'll take a look into it if I do not get the relayd/hoststated working. This one measures response times of the instances too, when deciding where to send a client, so it recognizes if a particular instance is down. I think, mod_proxy won't do. But I'm still fiddling around, getting one session sticking to a particular instance. thanks Sebastian From users@opengroupware.org Mon Mar 3 14:35:13 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Mon, 03 Mar 2008 09:35:13 -0500 Subject: [OGo-Users] ogo session information handling In-Reply-To: <20080302090552.F22168158E@smtp.l00-bugdead-prods.de> References: <20080302090552.F22168158E@smtp.l00-bugdead-prods.de> Message-ID: <1204554913.5529.3.camel@WM_ADAM1.morrison.iserv.net> On Sun, 2008-03-02 at 10:05 +0100, Sebastian Reitenbach wrote: > users@opengroupware.org wrote: > > On 01.03.2008, at 08:00, Sebastian Reitenbach wrote: > > > As I am running OpenBSD, I doubt that I get the snsd for it, and > > > especially not for free ;) > > Well, its not perfect, but a frontend Pound or mod_proxy with sticky > > session-ids are close to what snsd provides. (snsd gets directly > > notified by instances if they go up or down, but thats more for QoS, > > ie snsd knows better about the state of instances). > thanks for that hint regarding mod_proxy, I'll take a look. Also thanks for There was a post about that http://mail.opengroupware.org/pipermail/users/2005-January/012468.html The post isn't perfect but it serves as a starting point; I've been meaning to add information about that to WMOGAG. It is roughly the same concept as http://www.johnandcailin.com/blog/john/scaling-drupal-step-two-sticky-load-balancing-apache-mod_proxy > the explanation about how snsd is working in the other mail. I see it has > more knowledge about the availability of instances. I'll take a look into it > if I do not get the relayd/hoststated working. This one measures response > times of the instances too, when deciding where to send a client, so it > recognizes if a particular instance is down. I think, mod_proxy won't do. > But I'm still fiddling around, getting one session sticking to a particular > instance. From users@opengroupware.org Mon Mar 3 14:52:18 2008 From: users@opengroupware.org (Helge Hess) Date: Mon, 3 Mar 2008 15:52:18 +0100 Subject: [OGo-Users] ogo session information handling In-Reply-To: <1204554913.5529.3.camel@WM_ADAM1.morrison.iserv.net> References: <20080302090552.F22168158E@smtp.l00-bugdead-prods.de> <1204554913.5529.3.camel@WM_ADAM1.morrison.iserv.net> Message-ID: <6AC6214A-ACB4-480A-8EE4-98A14A7C045C@opengroupware.org> On 03.03.2008, at 15:35, Adam Tauno Williams wrote: > There was a post about that > http://mail.opengroupware.org/pipermail/users/2005-January/012468.html I think things very much improved in Apache 2.2. Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Mon Mar 3 19:12:42 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Mon, 03 Mar 2008 20:12:42 +0100 Subject: [OGo-Users] ogo session information handling Message-ID: <20080303191242.C032481B0F@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > > On Sun, 2008-03-02 at 10:05 +0100, Sebastian Reitenbach wrote: > > users@opengroupware.org wrote: > > > On 01.03.2008, at 08:00, Sebastian Reitenbach wrote: > > > > As I am running OpenBSD, I doubt that I get the snsd for it, and > > > > especially not for free ;) > > > Well, its not perfect, but a frontend Pound or mod_proxy with sticky > > > session-ids are close to what snsd provides. (snsd gets directly > > > notified by instances if they go up or down, but thats more for QoS, > > > ie snsd knows better about the state of instances). > > thanks for that hint regarding mod_proxy, I'll take a look. Also thanks for > > There was a post about that > http://mail.opengroupware.org/pipermail/users/2005-January/012468.html > > The post isn't perfect but it serves as a starting point; I've been > meaning to add information about that to WMOGAG. It is roughly the same > concept as > http://www.johnandcailin.com/blog/john/scaling-drupal-step-two-sticky-load-balancing-apache-mod_proxy > yeah, and I found another, very similar one. However, OpenBSD ships its own apache 1.3, so mod_proxy_balance is not working there. Well, there is a apache 2.X package, that could be installed. However, there I'd prefer to get relayd working ;) Nevertheless, I'm just fiddling around with mod_proxy_balance on a Linux box, I'll see how far I get. Sebastian From users@opengroupware.org Wed Mar 5 11:47:18 2008 From: users@opengroupware.org (Christian Naumer) Date: Wed, 05 Mar 2008 12:47:18 +0100 Subject: [OGo-Users] XA_64 Question In-Reply-To: <1193137584.11550.5.camel@aleph> References: <471D9DB6.2090608@kensnet.org> <1193137584.11550.5.camel@aleph> Message-ID: <47CE8846.2070000@brain-biotech.de> Adam Tauno Williams schrieb: > Sent the SPEC file offlist; you'll need to grab the latest TGZ for > sope47 and put it in the SOURCES directory as sope.tar.gz. Then an > rpmbuild -bb ngobjweb.spec (in SPECS, of course) should build the modul= e > without much fuss I think. Not sure though, haven't built on xa_64 > before. It might require a 64bit built of the SOPE & libFoundation > libraries. Hi There, I have the same Problem now. Could you send me the spec-file as well. Thanks in advance Christian >=20 --=20 Dr. Christian Naumer Scientist Molecular Biology B.R.A.I.N Aktiengesellschaft Darmstaedter Str. 34-36, D-64673 Zwingenberg e-mail cn@brain-biotech.de, homepage www.brain-biotech.de fon +49-6251-9331-30 / fax +49-6251-9331-11 Sitz der Gesellschaft: Zwingenberg/Bergstrasse Registergericht AG Darmstadt, HRB 24758 Vorstand: Dr. Holger Zinke (Vorsitz), Dr. J=FCrgen Eck Vorsitzender des Aufsichtsrats: Ulrich Putsch From users@opengroupware.org Wed Mar 5 15:41:46 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Wed, 05 Mar 2008 10:41:46 -0500 Subject: [OGo-Users] XA_64 Question In-Reply-To: <47CE8846.2070000@brain-biotech.de> References: <471D9DB6.2090608@kensnet.org> <1193137584.11550.5.camel@aleph> <47CE8846.2070000@brain-biotech.de> Message-ID: <1204731706.5514.5.camel@WM_ADAM1.morrison.iserv.net> On Wed, 2008-03-05 at 12:47 +0100, Christian Naumer wrote: > Adam Tauno Williams schrieb: > > Sent the SPEC file offlist; you'll need to grab the latest TGZ for > > sope47 and put it in the SOURCES directory as sope.tar.gz. Then an > > rpmbuild -bb ngobjweb.spec (in SPECS, of course) should build the module > > without much fuss I think. Not sure though, haven't built on xa_64 > > before. It might require a 64bit built of the SOPE & libFoundation > > libraries. > Hi There, > I have the same Problem now. Could you send me the spec-file as well. SPEC file are here and probably (although possibly older versions) in the docs plone. From users@opengroupware.org Wed Mar 5 16:07:51 2008 From: users@opengroupware.org (Christian Naumer) Date: Wed, 05 Mar 2008 17:07:51 +0100 Subject: [OGo-Users] XA_64 Question In-Reply-To: <1204731706.5514.5.camel@WM_ADAM1.morrison.iserv.net> References: <471D9DB6.2090608@kensnet.org> <1193137584.11550.5.camel@aleph> <47CE8846.2070000@brain-biotech.de> <1204731706.5514.5.camel@WM_ADAM1.morrison.iserv.net> Message-ID: <47CEC557.6030209@brain-biotech.de> Adam Tauno Williams schrieb: > >> I have the same Problem now. Could you send me the spec-file as well. >=20 > SPEC file are here and > probably (although possibly older versions) in the docs plone. >=20 Thanks! Found them after a while. Had to tweak the spec file a bit for the use in Centos (change apache2 to httpd) and hat to edit the sources to work with apache 2.2. changed "ap_run_http_method" to "ap_hook_http_scheme" in handler.c of the ngobjweb sources. regards Christian --=20 Dr. Christian Naumer Scientist Molecular Biology B.R.A.I.N Aktiengesellschaft Darmstaedter Str. 34-36, D-64673 Zwingenberg e-mail cn@brain-biotech.de, homepage www.brain-biotech.de fon +49-6251-9331-30 / fax +49-6251-9331-11 Sitz der Gesellschaft: Zwingenberg/Bergstrasse Registergericht AG Darmstadt, HRB 24758 Vorstand: Dr. Holger Zinke (Vorsitz), Dr. J=FCrgen Eck Vorsitzender des Aufsichtsrats: Ulrich Putsch From users@opengroupware.org Wed Mar 5 16:36:02 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Wed, 05 Mar 2008 11:36:02 -0500 Subject: [OGo-Users] XA_64 Question In-Reply-To: <47CEC557.6030209@brain-biotech.de> References: <471D9DB6.2090608@kensnet.org> <1193137584.11550.5.camel@aleph> <47CE8846.2070000@brain-biotech.de> <1204731706.5514.5.camel@WM_ADAM1.morrison.iserv.net> <47CEC557.6030209@brain-biotech.de> Message-ID: <1204734962.5514.8.camel@WM_ADAM1.morrison.iserv.net> > >> I have the same Problem now. Could you send me the spec-file as well. > > SPEC file are here and > > probably (although possibly older versions) in the docs plone. > Thanks! Found them after a while. Had to tweak the spec file a bit for > the use in Centos (change apache2 to httpd) Please provide a diff of your changes. > and hat to edit the sources to work with apache 2.2. > changed > "ap_run_http_method" to "ap_hook_http_scheme" in handler.c of the > ngobjweb sources. I suspect you are using an old version of SOPE, current versions do *NOT* require that change. I'd recommend against building the 1.0/SOPE4.5 code base, it probably won't work as xa_64. From users@opengroupware.org Wed Mar 5 17:06:58 2008 From: users@opengroupware.org (Christian Naumer) Date: Wed, 05 Mar 2008 18:06:58 +0100 Subject: [OGo-Users] XA_64 Question In-Reply-To: <1204734962.5514.8.camel@WM_ADAM1.morrison.iserv.net> References: <471D9DB6.2090608@kensnet.org> <1193137584.11550.5.camel@aleph> <47CE8846.2070000@brain-biotech.de> <1204731706.5514.5.camel@WM_ADAM1.morrison.iserv.net> <47CEC557.6030209@brain-biotech.de> <1204734962.5514.8.camel@WM_ADAM1.morrison.iserv.net> Message-ID: <47CED332.5000400@brain-biotech.de> This is a multi-part message in MIME format. --------------070907040009030103070901 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Adam Tauno Williams schrieb: >>>> I have the same Problem now. Could you send me the spec-file as well= . >>> SPEC file are here and >>> probably (although possibly older versions) in the docs plone. >> Thanks! Found them after a while. Had to tweak the spec file a bit for >> the use in Centos (change apache2 to httpd)=20 >=20 > Please provide a diff of your changes. Is attached. >=20 > I suspect you are using an old version of SOPE, current versions do > *NOT* require that change. =20 I downloaded: http://download.opengroupware.org/releases/unstable/sope-4.7.1-fwd/source= /sope-4.7.1-fwd-r1502.tar.gz and had to make that change. I choose this release because I used the Centos RPMS and as far as I know they are build against sope 4.7. regards Christian --=20 Dr. Christian Naumer Scientist Molecular Biology B.R.A.I.N Aktiengesellschaft Darmstaedter Str. 34-36, D-64673 Zwingenberg e-mail cn@brain-biotech.de, homepage www.brain-biotech.de fon +49-6251-9331-30 / fax +49-6251-9331-11 Sitz der Gesellschaft: Zwingenberg/Bergstrasse Registergericht AG Darmstadt, HRB 24758 Vorstand: Dr. Holger Zinke (Vorsitz), Dr. J=FCrgen Eck Vorsitzender des Aufsichtsrats: Ulrich Putsch --------------070907040009030103070901 Content-Type: text/x-patch; name="specfile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="specfile.diff" 1,2c1,2 < %define apache_modules_dir %{_usr}/lib/apache2 < %define apache_conf_dir %{_sysconfdir}/apache2/conf.d --- > %define apache_modules_dir %{_usr}/lib/httpd > %define apache_conf_dir %{_sysconfdir}/httpd/conf.d 4c4 < %define ngobjweb_requires apache2 --- > %define ngobjweb_requires httpd 7c7 < %define ngobjweb_release trunk_r1551 --- > %define ngobjweb_release trunk_r1504 37c37 < /usr/sbin/apxs2 -c *.c --- > /usr/sbin/apxs -c *.c --------------070907040009030103070901-- From users@opengroupware.org Wed Mar 5 20:15:58 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Wed, 05 Mar 2008 15:15:58 -0500 Subject: [OGo-Users] XA_64 Question In-Reply-To: <47CED332.5000400@brain-biotech.de> References: <471D9DB6.2090608@kensnet.org> <1193137584.11550.5.camel@aleph> <47CE8846.2070000@brain-biotech.de> <1204731706.5514.5.camel@WM_ADAM1.morrison.iserv.net> <47CEC557.6030209@brain-biotech.de> <1204734962.5514.8.camel@WM_ADAM1.morrison.iserv.net> <47CED332.5000400@brain-biotech.de> Message-ID: <1204748158.5514.27.camel@WM_ADAM1.morrison.iserv.net> On Wed, 2008-03-05 at 18:06 +0100, Christian Naumer wrote: > Adam Tauno Williams schrieb: > >>>> I have the same Problem now. Could you send me the spec-file as well. > >>> SPEC file are here and > >>> probably (although possibly older versions) in the docs plone. > >> Thanks! Found them after a while. Had to tweak the spec file a bit for > >> the use in Centos (change apache2 to httpd) > > Please provide a diff of your changes. > Is attached. > > I suspect you are using an old version of SOPE, current versions do > > *NOT* require that change. > I downloaded: > http://download.opengroupware.org/releases/unstable/sope-4.7.1-fwd/source/sope-4.7.1-fwd-r1502.tar.gz > and had to make that change. I choose this release because I used the > Centos RPMS and as far as I know they are build against sope 4.7. I'd recommend checking SOPE out from trunk; there are a couple of nice fixes lately. Then create a tar ball from the checkout. From users@opengroupware.org Thu Mar 6 17:19:16 2008 From: users@opengroupware.org (Andreas 'ads' Scherbaum) Date: Thu, 6 Mar 2008 18:19:16 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <20080229133912.A001E813C4@smtp.l00-bugdead-prods.de> References: <20080229133912.A001E813C4@smtp.l00-bugdead-prods.de> Message-ID: <20080306181916.2fd0a8f7@iridium.home> Hello, On Fri, 29 Feb 2008 14:39:12 +0100 Sebastian Reitenbach wrote: > I figured out, that the postgres database had its connection limit exceeded. > Raising the connection limit fixes the problem for a while, but I don't > think that this is the best idea, if good at all. What's wrong with the connection limit? > Well, after googling for a solution to the problem, the recommended answer > is either fix the application, or use a connection pooling daemon like > pgbouncer. PGbouncer have some implications which the application has to be aware of. The only mode without limitations is "session pooling" - but this will be the same behavior like the current situation. > Is there an ogo default, allowing me to kill idle database sessions? > Or anybody uses such a postgresql connection pooling daemon in conjunction > with OGo? The database session is idle because one OGo process is still connected. One solution could be sOGo, but i think, Helge can tell you more. Bye -- Andreas 'ads' Scherbaum German PostgreSQL User Group European PostgreSQL User Group - Board of Directors From users@opengroupware.org Thu Mar 6 18:49:36 2008 From: users@opengroupware.org (Andreas 'ads' Scherbaum) Date: Thu, 6 Mar 2008 19:49:36 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> References: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> Message-ID: <20080306194936.70002d40@iridium.home> On Sat, 01 Mar 2008 07:47:01 +0100 Sebastian Reitenbach wrote: > Then, with my 200 maximum connections configured in postgres, this is by far > not enough. So I assume I should raise it to something like 3000 to be safe. Seems like you have too much memory, or? ;-) Your OS has to schedule 3000 processes (more, this 3k is just PostgreSQL). Each backend needs some memory plus you need a lot shared mem for managing all the backends and the data. Can't say a number here but with 3000 running processes you will have some trouble anyway. Bye -- Andreas 'ads' Scherbaum German PostgreSQL User Group European PostgreSQL User Group - Board of Directors From users@opengroupware.org Thu Mar 6 23:33:47 2008 From: users@opengroupware.org (Helge Hess) Date: Fri, 7 Mar 2008 00:33:47 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <2E7E4B50-3A0C-47ED-9601-4EE4E5A7C04C@opengroupware.org> References: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> <2E7E4B50-3A0C-47ED-9601-4EE4E5A7C04C@opengroupware.org> Message-ID: <5C19A100-B831-4F05-9A46-DF6CEB2947C8@opengroupware.org> On 02.03.2008, at 00:49, Helge Hess wrote: > Having more instances doesn't raise the number of sessions (hence > open channels), they are load balanced, thats the idea after all. > Each of the servers will have less channels open. BTW: I checked. OGo does *not* keep the connections open, so its not 1 connection per session. There is a timeout which closes connections after some time. The actual timeout can be configured using the LSSessionChannelTimeOut default, which is in seconds (defaults to 300s aka 5min). Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Fri Mar 7 02:18:39 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Thu, 06 Mar 2008 21:18:39 -0500 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <5C19A100-B831-4F05-9A46-DF6CEB2947C8@opengroupware.org> References: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> <2E7E4B50-3A0C-47ED-9601-4EE4E5A7C04C@opengroupware.org> <5C19A100-B831-4F05-9A46-DF6CEB2947C8@opengroupware.org> Message-ID: <1204856319.16568.3.camel@aleph> On Fri, 2008-03-07 at 00:33 +0100, Helge Hess wrote: > On 02.03.2008, at 00:49, Helge Hess wrote: > > Having more instances doesn't raise the number of sessions (hence > > open channels), they are load balanced, thats the idea after all. > > Each of the servers will have less channels open. > BTW: I checked. OGo does *not* keep the connections open, so its not 1 > connection per session. There is a timeout which closes connections > after some time. Potentially stupid question: why does OGo need to open a connection per session in the first place? Why can't/doesn't each session just use (and share) a common connection? My understanding is that OGo (SOPE?) serializes requests, only doing one-at-a-time. > The actual timeout can be configured using the LSSessionChannelTimeOut > default, which is in seconds (defaults to 300s aka 5min). Understood, and will be in the next edition of WMOGAG. From users@opengroupware.org Fri Mar 7 03:22:41 2008 From: users@opengroupware.org (Helge Hess) Date: Fri, 7 Mar 2008 04:22:41 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <1204856319.16568.3.camel@aleph> References: <20080301064702.3E3CC8147D@smtp.l00-bugdead-prods.de> <2E7E4B50-3A0C-47ED-9601-4EE4E5A7C04C@opengroupware.org> <5C19A100-B831-4F05-9A46-DF6CEB2947C8@opengroupware.org> <1204856319.16568.3.camel@aleph> Message-ID: <7FB3EBFC-E1A3-42EE-AE3A-AB2F926FBF8E@opengroupware.org> On 07.03.2008, at 03:18, Adam Tauno Williams wrote: > On Fri, 2008-03-07 at 00:33 +0100, Helge Hess wrote: >> BTW: I checked. OGo does *not* keep the connections open, so its >> not 1 >> connection per session. There is a timeout which closes connections >> after some time. > Potentially stupid question: why does OGo need to open a connection > per > session in the first place? Why can't/doesn't each session just use > (and share) a common connection? My understanding is that OGo > (SOPE?) > serializes requests, only doing one-at-a-time. I think the original reason was the layering of EOF(1) (or a misunderstanding of it). OGo would open an EODatabaseChannel to track objects which then would open an EOAdaptorChannel to do the connection. Technically this isn't required and I think there is no good reason to do it this way. The EODatabaseChannel should acquire/release adaptor channels on demand. That SOPE (currently) serializes requests doesn't matter that much from a design perspective. We wouldn't want to restrict things to a one-channel design. It basically requires a proper connection pool (in JOPE this is actually done by the EOAdaptor in a thread safe way). Greets, Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Fri Mar 7 12:06:27 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Fri, 07 Mar 2008 13:06:27 +0100 Subject: [OGo-Users] postgres connection limit exceeded Message-ID: <20080307120628.029DA823FB@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > > Hello, > > On Fri, 29 Feb 2008 14:39:12 +0100 Sebastian Reitenbach wrote: > > > I figured out, that the postgres database had its connection limit exceeded. > > Raising the connection limit fixes the problem for a while, but I don't > > think that this is the best idea, if good at all. > > What's wrong with the connection limit? The limit was just exceeded, and then new connections were unable to use ogo, existing sessions did not had a problem. Meanwhile I raised it to 800 or such, that should be sufficient for a while ;) cheers Sebastian > > > > Well, after googling for a solution to the problem, the recommended answer > > is either fix the application, or use a connection pooling daemon like > > pgbouncer. > > PGbouncer have some implications which the application has to be aware > of. > > The only mode without limitations is "session pooling" - but > this will be the same behavior like the current situation. > > > > Is there an ogo default, allowing me to kill idle database sessions? > > Or anybody uses such a postgresql connection pooling daemon in conjunction > > with OGo? > > The database session is idle because one OGo process is still connected. > One solution could be sOGo, but i think, Helge can tell you more. > > > Bye > > -- > Andreas 'ads' Scherbaum > German PostgreSQL User Group > European PostgreSQL User Group - Board of Directors > -- > OpenGroupware.org Users > users@opengroupware.org > http://mail.opengroupware.org/mailman/listinfo/users > From users@opengroupware.org Fri Mar 7 13:48:19 2008 From: users@opengroupware.org (Helge Hess) Date: Fri, 7 Mar 2008 14:48:19 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <20080307120628.029DA823FB@smtp.l00-bugdead-prods.de> References: <20080307120628.029DA823FB@smtp.l00-bugdead-prods.de> Message-ID: <8B3FA55C-04B3-4100-AB8C-5BF29647CA88@opengroupware.org> On 07.03.2008, at 13:06, Sebastian Reitenbach wrote: > Meanwhile I raised it to 800 > or such, that should be sufficient for a while ;) I think it might make more sense to try to lower LSSessionChannelTimeOut, eg -LSSessionChannelTimeOut 20. Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Fri Mar 7 16:03:11 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Fri, 07 Mar 2008 17:03:11 +0100 Subject: [OGo-Users] postgres connection limit exceeded Message-ID: <20080307160312.1C5BB82628@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > On 07.03.2008, at 13:06, Sebastian Reitenbach wrote: > > Meanwhile I raised it to 800 > > or such, that should be sufficient for a while ;) > > > I think it might make more sense to try to lower > LSSessionChannelTimeOut, eg -LSSessionChannelTimeOut 20. when I run into that trouble again, then I'll try that. thanks Sebastian From users@opengroupware.org Fri Mar 7 17:07:59 2008 From: users@opengroupware.org (Andreas 'ads' Scherbaum) Date: Fri, 7 Mar 2008 18:07:59 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <20080307160312.1C5BB82628@smtp.l00-bugdead-prods.de> References: <20080307160312.1C5BB82628@smtp.l00-bugdead-prods.de> Message-ID: <20080307180759.450ecb57@iridium.home> On Fri, 07 Mar 2008 17:03:11 +0100 Sebastian Reitenbach wrote: > users@opengroupware.org wrote: ^^^^^^^^^^^^^^^^^^^^^^^ Could you please fix your email program? That's not the person who wrote the mail you are answering. > > On 07.03.2008, at 13:06, Sebastian Reitenbach wrote: > > > Meanwhile I raised it to 800 > > > or such, that should be sufficient for a while ;) > > > > > > I think it might make more sense to try to lower > > LSSessionChannelTimeOut, eg -LSSessionChannelTimeOut 20. > when I run into that trouble again, then I'll try that. You will run into other kind of trouble like memory problems or performance impacts. Maybe you cannot even pin down the problems in the same way like you can right now with the error message telling you that you reached a configured limit. We discussed that topic a bit on IRC yesterday and just raising the connection limit is not solving your problems at all. As example, with 1000 or 2000 running but idle processes your OS hat to schedule all this processes. Each PG backend needs some memory for the data structures and for managing state. Ok, your OS can save you a lot trouble with copy-on-write and/or overcommitting. But this wall will break in the moment your system is low on mem anyway. In addition, behind every open database connection is another process (normally one OGo process) who is also consuming resources. Kind regards -- Andreas 'ads' Scherbaum German PostgreSQL User Group European PostgreSQL User Group - Board of Directors From users@opengroupware.org Fri Mar 7 18:20:24 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Fri, 07 Mar 2008 19:20:24 +0100 Subject: [OGo-Users] postgres connection limit exceeded Message-ID: <20080307182025.7A8E3826FA@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > On Fri, 07 Mar 2008 17:03:11 +0100 Sebastian Reitenbach wrote: > > > users@opengroupware.org wrote: > ^^^^^^^^^^^^^^^^^^^^^^^ > > Could you please fix your email program? > That's not the person who wrote the mail you are answering. I use ogo webmail, so you might want to file a bug report in ogo bugzilla for that ;) cheers Sebastian From users@opengroupware.org Fri Mar 7 18:26:16 2008 From: users@opengroupware.org (Wolfgang Sourdeau) Date: Fri, 07 Mar 2008 13:26:16 -0500 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: 20080307182025.7A8E3826FA@smtp.l00-bugdead-prods.de Message-ID: <16fb-47d18900-27-b7360af0@198288702> Le 07 Mar. 2008 13:20 EST, "Sebastian Reitenbach" a =C3=A9crit: > users@opengroupware.org wrote: > > On Fri, 07 Mar 2008 17:03:11 +0100 Sebastian Reitenbach wrote: > > > > > users@opengroupware.org wrote: > > ^^^^^^^^^^^^^^^^^^^^^^^ > > > > Could you please fix your email program? > > That's not the person who wrote the mail you are answering. > I use ogo webmail, so you might want to file a bug report in ogo bugzilla > for that ;) Not to be rude... But SOGo does not have that problem :-P -- Wolfgang Sourdeau T: +1 514 989-2000 ext. 2602 C: +1 514 755-3520 AVIS - Ce courriel pourrait contenir des renseignements confidentiels ou privil=C3=A9gi=C3=A9s. Si vous n'en =C3=AAtes pas le v=C3=A9ritable destinataire, veuillez nous aviser imm=C3=A9diatement. Merci. NOTICE - This e-mail may contain confidential or privileged information. If you are not the intended recipient, please notify us immediately. Thank you. From users@opengroupware.org Fri Mar 7 20:54:14 2008 From: users@opengroupware.org (Helge Hess) Date: Fri, 7 Mar 2008 21:54:14 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <20080307180759.450ecb57@iridium.home> References: <20080307160312.1C5BB82628@smtp.l00-bugdead-prods.de> <20080307180759.450ecb57@iridium.home> Message-ID: <54B50C12-18EE-4C63-9A55-4ECDCFBCB114@opengroupware.org> On 07.03.2008, at 18:07, Andreas 'ads' Scherbaum wrote: > We discussed that topic a bit on IRC yesterday and just raising the > connection limit is not solving your problems at all. As example, > with 1000 or 2000 running but idle processes your OS hat to schedule > all this processes. Scheduling 2000 processes is a no brainer for modern operating systems like Linux or BSD (my MacOS runs 400 threads just after I started ...). And memory is no big issue with forked but IDLE PostgreSQL processes either (as you say, allmost all of it is shared memory and the big memory is the FS cache, which is shared anyways). Unless you are running a REALLY big install, you won't get hurt by this. All this is besides the point nevertheless ;-) I agree that the current OGo behaviour is unnecessary and suboptimal :-) Greets, Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Fri Mar 7 23:21:11 2008 From: users@opengroupware.org (Helge Hess) Date: Sat, 8 Mar 2008 00:21:11 +0100 Subject: [OGo-Users] postgres connection limit exceeded In-Reply-To: <16fb-47d18900-27-b7360af0@198288702> References: <16fb-47d18900-27-b7360af0@198288702> Message-ID: <55A74016-17C0-4661-926A-2EF806EAA2DF@opengroupware.org> On 07.03.2008, at 19:26, Wolfgang Sourdeau wrote: >>> Could you please fix your email program? >>> That's not the person who wrote the mail you are answering. >> I use ogo webmail, so you might want to file a bug report in ogo >> bugzilla for that ;) > Not to be rude... But SOGo does not have that problem :-P Well, it belongs to discuss, not to users, but anyways. But true, I've written the original ScalableOGo mailer to have broad support for mailing lists, eg it used to contain handling for all the "List-" mail headers (actually exposed in the app, not sure how many mailclients do this, except maybe KMail). We've put a lot of work in doing things right in SOGo which we have done wrong before ;-) Eg another thing is letting the server do the MIME parsing (aka IMAP4 bodystructure). Might be interesting to add all this to the OGo mailer, after all it has a lot of interesting addon functionality. Though its more focused on business mail processing (eg managing the document flows), less on mailing lists (actually I don't know anyone using mailing lists with a webmail client, except maybe GMail because of its threading feature). Hm, might be interesting for someone to work on the 'SOGo Mailer on top of ZideStore' thing I've started a few years back. This would be quite cool and reintegrate the two backends under a new frontend. In fact it would be nice to get all of the new SOGo frontend work running on top of ZideStore/OGo. We could then enhance it with all those small things we love in OGo :-) Thanks, Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Sat Mar 8 19:30:18 2008 From: users@opengroupware.org (Mark Pavlichuk) Date: Sun, 09 Mar 2008 05:30:18 +1000 Subject: [OGo-Users] OGo/CalDAV & latest Sunbird 0.8 nightly Message-ID: <47D2E94A.9080409@internode.on.net> Just in case anyone is interested : The latest Sunbird nightlies seem to connect fine to a new empty OGo calendar, and events save and can be viewed from within OGo. On subsequent connections however Sunbird can't seem to display existing events. -- Mark Pavlichuk Strategic IT ph. (07) 47242890 m. 0409 124577 From users@opengroupware.org Mon Mar 10 18:06:16 2008 From: users@opengroupware.org (Jeff) Date: Mon, 10 Mar 2008 14:06:16 -0400 Subject: [OGo-Users] Holidays Message-ID: ------=_Part_718_10823476.1205172376445 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Where are the holidays defined? (such as the summertimeChange holiday) I started following some instructions here http://docs.opengroupware.org/Members/sasepp/sasepp/view to customize holidays, but it's not working completely as expected since I still have many holidays showing up on the calendar that I do not want shown. As a side note, are there any plans at providing a way to create holidays through the normal scheduler? Seems like that would be a great way to create holidays without having to create an entry for each year (for repeating holidays that do not fall on the same exact date). Thanks, Jeff ------=_Part_718_10823476.1205172376445 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Where are the holidays defined? (such as the summertimeChange holiday)

I started following some instructions here http://docs.opengroupware.org/Members/sasepp/sasepp/view to customize holidays, but it's not working completely as expected since I still have many holidays showing up on the calendar that I do not want shown.

As a side note, are there any plans at providing a way to create holidays through the normal scheduler?  Seems like that would be a great way to create holidays without having to create an entry for each year (for repeating holidays that do not fall on the same exact date).

Thanks,
Jeff
------=_Part_718_10823476.1205172376445-- From users@opengroupware.org Mon Mar 10 19:24:56 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Mon, 10 Mar 2008 15:24:56 -0400 Subject: [OGo-Users] Holidays In-Reply-To: References: Message-ID: <1205177096.5017.16.camel@WM_ADAM1.morrison.iserv.net> > Where are the holidays defined? (such as the summertimeChange holiday) Via defaults. http://docs.opengroupware.org/Members/olivier/holidays-reloaded/view > I started following some instructions here > http://docs.opengroupware.org/Members/sasepp/sasepp/view to customize > holidays, but it's not working completely as expected since I still > have many holidays showing up on the calendar that I do not want > shown. Did you enable/disable holiday groups in your scheduler preferences? > As a side note, are there any plans at providing a way to create > holidays through the normal scheduler? Seems like that would be a > great way to create holidays without having to create an entry for > each year (for repeating holidays that do not fall on the same exact > date). http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=252 http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=926 http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1278 I agree that the current holidays system kind of stinks; at least to me it seems like serious overkill to a relatively simple problem. But I suppose if you user's are global it makes sense. From users@opengroupware.org Mon Mar 10 21:18:43 2008 From: users@opengroupware.org (Jeff) Date: Mon, 10 Mar 2008 17:18:43 -0400 Subject: [OGo-Users] Holidays In-Reply-To: References: <1205177096.5017.16.camel@WM_ADAM1.morrison.iserv.net> Message-ID: ------=_Part_1773_1471058.1205183923604 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline On Mon, Mar 10, 2008 at 3:24 PM, Adam Tauno Williams wrote: > > Where are the holidays defined? (such as the summertimeChange holiday) > > Via defaults. > > http://docs.opengroupware.org/Members/olivier/holidays-reloaded/view Thanks for the link... > > > I started following some instructions here > > http://docs.opengroupware.org/Members/sasepp/sasepp/view to customize > > holidays, but it's not working completely as expected since I still > > have many holidays showing up on the calendar that I do not want > > shown. > > Did you enable/disable holiday groups in your scheduler preferences? My problem was that I made the holiday groups unavailable with the Defaults.plist file, but did not first de-select them from the templates/users. So I effectively made it impossible to remove the holidays! So I restored the original Defaults.plist and then disabled the holiday groups from the template user, and then re-hid the holiday groups. > > As a side note, are there any plans at providing a way to create > > holidays through the normal scheduler? Seems like that would be a > > great way to create holidays without having to create an entry for > > each year (for repeating holidays that do not fall on the same exact > > date). > > http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=252 > http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=926 > http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1278 > > I agree that the current holidays system kind of stinks; at least to me > it seems like serious overkill to a relatively simple problem. But I > suppose if you user's are global it makes sense. Thanks again for those bug links. Yes, it would be really handy to be able to add holidays via the scheduler instead of having to look up dates and enter many years in advance. But thanks, at least I got rid of those that didn't make any sense to us! Jeff ------=_Part_1773_1471058.1205183923604 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

On Mon, Mar 10, 2008 at 3:24 PM, Adam Tauno Williams <adam@morrison-ind.com> wrote:
> Where are the holidays defined? (such as the summertimeChange holiday)

Via defaults.

http://docs.opengroupware.org/Members/olivier/holidays-reloaded/view

Thanks for the link...



> I started following some instructions here
> http://docs.opengroupware.org/Members/sasepp/sasepp/view to customize
> holidays, but it's not working completely as expected since I still
> have many holidays showing up on the calendar that I do not want
> shown.

Did you enable/disable holiday groups in your scheduler preferences?


My problem was that I made the holiday groups unavailable with the Defaults.plist file, but did not first de-select them from the templates/users.  So I effectively made it impossible to remove the holidays!

So I restored the original Defaults.plist and then disabled the holiday groups from the template user, and then re-hid the holiday groups. 

 
> As a side note, are there any plans at providing a way to create
> holidays through the normal scheduler?  Seems like that would be a
> great way to create holidays without having to create an entry for
> each year (for repeating holidays that do not fall on the same exact
> date).

http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=252
http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=926
http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1278

I agree that the current holidays system kind of stinks;  at least to me
it seems like serious overkill to a relatively simple problem.  But I
suppose if you user's are global it makes sense.

Thanks again for those bug links.  Yes, it would be really handy to be able to add holidays via the scheduler instead of having to look up dates and enter many years in advance.  

But thanks, at least I got rid of those that didn't make any sense to us!

Jeff
 

------=_Part_1773_1471058.1205183923604-- From users@opengroupware.org Wed Mar 12 21:32:07 2008 From: users@opengroupware.org (Jeff) Date: Wed, 12 Mar 2008 17:32:07 -0400 Subject: [OGo-Users] Default Appointment Types and Requiring an Appointment Type Message-ID: ------=_Part_11235_27415313.1205357527830 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I have a few questions: 1) Where can I find the default appointment types? I know I can override them with SkyScheduler_defaultAppointmentTypes, but I'd like to make sure I define the few that we want to keep exactly how they currently are. 2) If I do that, that will not affect any existing appointments, right? 3) I'd like to force the choosing of an appointment type. I'd like to keep the "- unspecified -" as the default, and throw a javascript error if that's chosen, blocking the submission of the form. Has anyone done this before? A patch would be awesome. Or if no one has done it, any tips would be great. Thanks, Jeff ------=_Part_11235_27415313.1205357527830 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
I have a few questions:

1) Where can I find the default appointment types?  I know I can override them with SkyScheduler_defaultAppointmentTypes, but I'd like to make sure I define the few that we want to keep exactly how they currently are.

2) If I do that, that will not affect any existing appointments, right?

3) I'd like to force the choosing of an appointment type.  I'd like to keep the "- unspecified -" as the default, and throw a javascript error if that's chosen, blocking the submission of the form.  Has anyone done this before?  A patch would be awesome.  Or if no one has done it, any tips would be great.

Thanks,
Jeff
------=_Part_11235_27415313.1205357527830-- From users@opengroupware.org Thu Mar 13 13:07:37 2008 From: users@opengroupware.org (=?UTF-8?q?Albrecht_Dre=C3=9F?=) Date: Thu, 13 Mar 2008 14:07:37 +0100 Subject: [OGo-Users] appointment message w/o recipients? Message-ID: <1205413657l.20946l.1l@pc104141.koeln.nktcables.com> Hi all, a colleague ran into an odd behaviour of OGo: The following works fine: - create an appointment which doesn't create any conflicts - click "save and send" - the mail editor comes up, with all participants being listed as =20 recipients. However if she does the following: - create an appointment which *does* create a conflict - click "save and send" - the conflict dialogue comes up, click "ignore" - the mail editor comes up and /sometimes/ (not always!) no recipient =20 is listed. Any idea what goes wrong here, and how I can fix this problem? I use a =20 self-compiled opengroupware.org-1.1.7-close-r1987.tar.gz on x86_64 =20 Ubuntu 7.10. Thanks in advance, Albrecht. From users@opengroupware.org Thu Mar 13 13:16:55 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Thu, 13 Mar 2008 09:16:55 -0400 Subject: [OGo-Users] appointment message w/o recipients? In-Reply-To: <1205413657l.20946l.1l@pc104141.koeln.nktcables.com> References: <1205413657l.20946l.1l@pc104141.koeln.nktcables.com> Message-ID: <1205414215.11453.4.camel@WM_ADAM1.morrison.iserv.net> > a colleague ran into an odd behaviour of OGo: > The following works fine: > - create an appointment which doesn't create any conflicts > - click "save and send" > - the mail editor comes up, with all participants being listed as > recipients. > However if she does the following: > - create an appointment which *does* create a conflict > - click "save and send" > - the conflict dialogue comes up, click "ignore" > - the mail editor comes up and /sometimes/ (not always!) no recipient > is listed. > Any idea what goes wrong here, and how I can fix this problem? I use a > self-compiled opengroupware.org-1.1.7-close-r1987.tar.gz on x86_64 > Ubuntu 7.10. http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1580 From users@opengroupware.org Thu Mar 13 13:56:44 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Thu, 13 Mar 2008 09:56:44 -0400 Subject: [OGo-Users] Default Appointment Types and Requiring an Appointment Type In-Reply-To: References: Message-ID: <1205416604.11453.32.camel@WM_ADAM1.morrison.iserv.net> > 1) Where can I find the default appointment types? I know I can > override them with SkyScheduler_defaultAppointmentTypes, but I'd like > to make sure I define the few that we want to keep exactly how they > currently are. The default appointment types are listed in WMOGAG ; see the Schedular chapter. > 2) If I do that, that will not affect any existing appointments, > right? Yep. The default appointment types are defined in WebUI/Main/OpenGroupware.m // TODO: this is really, well, weird ;-> d = [[NSDictionary alloc] initWithObjectsAndKeys:@"none", @"type", @"apt_icon_default.gif", @"icon",nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"birthday", @"type", @"apt_icon_birthday.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"tradeshow", @"type", @"apt_icon_tradeshow.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"meeting", @"type", @"apt_icon_meeting.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"holiday", @"type", @"apt_icon_holiday.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"duedate", @"type", @"apt_icon_duedate.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"outward", @"type", @"apt_icon_outwards.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"home", @"type", @"apt_icon_home.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"call", @"type", @"apt_icon_call.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; d = [[NSDictionary alloc] initWithObjectsAndKeys:@"ill", @"type", @"apt_icon_ill.gif", @"icon", nil]; [ma addObject:d]; [d release]; d = nil; That is some ugly ugly code, but it basically makes a array of dictionaries like: [ { type = 'none', icon = 'apt_icon_default.gif'}, {.... The value of type is mapped to a description via localization (the *.strings files). > 3) I'd like to force the choosing of an appointment type. I'd like to > keep the "- unspecified -" as the default, and throw a javascript > error if that's chosen, blocking the submission of the form. Has > anyone done this before? A patch would be awesome. Or if no one has > done it, any tips would be great. I think this has come up before, but I don't recall anything specific. Maybe http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1759 Setting a default appointment type certainly seems like a reasonable request; which is more general then forcing a type to be chosed (which bug#1759 wants) From users@opengroupware.org Thu Mar 13 14:10:57 2008 From: users@opengroupware.org (=?UTF-8?q?Albrecht_Dre=C3=9F?=) Date: Thu, 13 Mar 2008 15:10:57 +0100 Subject: [OGo-Users] appointment message w/o recipients? In-Reply-To: <1205414215.11453.4.camel@WM_ADAM1.morrison.iserv.net> (from adam@morrison-ind.com on Thu Mar 13 14:16:55 2008) Message-ID: <1205417457l.20946l.2l@pc104141.koeln.nktcables.com> --=-gDbA3fX/gfgcn6Ua4Sd4 Content-Type: text/plain; charset=us-ascii; DelSp=Yes; Format=Flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Am 13.03.2008 14:16:55 schrieb(en) Adam Tauno Williams: >> However if she does the following: >> - create an appointment which *does* create a conflict >> - click "save and send" >> - the conflict dialogue comes up, click "ignore" >> - the mail editor comes up and /sometimes/ (not always!) no =20 >> recipient is listed. [snip] > http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=3D1580 I think this is a different issue. My point is that the *GUI* coming =20 up after "ignore" does not show the participants for the appointment =20 neither in the list of mail recipients nor in the "participants" field =20 of the appointment (see attached screenshot). The appointment has been created with all participants, though! If I =20 say "Cancel" in the dialogue above, click on the created appointment =20 and say "send", the same GUI opens, but now with both the list of =20 recipients and the participants set correctly. Thanks, Albrecht. --=-gDbA3fX/gfgcn6Ua4Sd4 Content-Type: image/png; name=Ogo-Empty-rcpts.png Content-Disposition: attachment; filename=Ogo-Empty-rcpts.png Content-Transfer-Encoding: base64 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 --=-gDbA3fX/gfgcn6Ua4Sd4-- From users@opengroupware.org Thu Mar 13 14:18:58 2008 From: users@opengroupware.org (Jeff) Date: Thu, 13 Mar 2008 10:18:58 -0400 Subject: [OGo-Users] Default Appointment Types and Requiring an Appointment Type In-Reply-To: <1205416604.11453.32.camel@WM_ADAM1.morrison.iserv.net> References: <1205416604.11453.32.camel@WM_ADAM1.morrison.iserv.net> Message-ID: ------=_Part_14738_2236681.1205417938934 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline On Thu, Mar 13, 2008 at 9:56 AM, Adam Tauno Williams wrote: The default appointment types are defined in WebUI/Main/OpenGroupware.m Thanks for the list, that's what I was looking for! > 3) I'd like to force the choosing of an appointment type. I'd like to > > keep the "- unspecified -" as the default, and throw a javascript > > error if that's chosen, blocking the submission of the form. Has > > anyone done this before? A patch would be awesome. Or if no one has > > done it, any tips would be great. > > I think this has come up before, but I don't recall anything specific. > > Maybe > http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1759 > > Setting a default appointment type certainly seems like a reasonable > request; which is more general then forcing a type to be chosed (which > bug#1759 wants) The benefit of making the default remain the "-unspecified-" but not allow it to be submitted is that it forces the user to actually think what the appointment type is. I would imagine if the default were "meeting" you'd have some people leaving the default when it should be something else. Plus I believe I saw a bug if you remove the "none" then the show "all types" on the scheduler disappears? Maybe that's been fixed. But I definitely would want to leave the "all types" on the scheduler view. Thanks, Jeff ------=_Part_14738_2236681.1205417938934 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

On Thu, Mar 13, 2008 at 9:56 AM, Adam Tauno Williams <adam@morrison-ind.com> wrote:

The default appointment types are defined in WebUI/Main/OpenGroupware.m
<snip>

Thanks for the list, that's what I was looking for!

> 3) I'd like to force the choosing of an appointment type.  I'd like to
> keep the "- unspecified -" as the default, and throw a javascript
> error if that's chosen, blocking the submission of the form.  Has
> anyone done this before?  A patch would be awesome.  Or if no one has
> done it, any tips would be great.

I think this has come up before,  but I don't recall anything specific.

Maybe
http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1759

Setting a default appointment type certainly seems like a reasonable
request;  which is more general then forcing a type to be chosed (which
bug#1759 wants)

The benefit of making the default remain the "-unspecified-" but not allow it to be submitted is that it forces the user to actually think what the appointment type is.  I would imagine if the default were "meeting" you'd have some people leaving the default when it should be something else.

Plus I believe I saw a bug if you remove the "none" then the show "all types" on the scheduler disappears?  Maybe that's been fixed.  But I definitely would want to leave the "all types" on the scheduler view.

Thanks,
Jeff

------=_Part_14738_2236681.1205417938934-- From users@opengroupware.org Fri Mar 14 06:52:16 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Fri, 14 Mar 2008 07:52:16 +0100 Subject: [OGo-Users] appointment message w/o recipients? Message-ID: <20080314065216.E2975836A7@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > Am 13.03.2008 14:16:55 schrieb(en) Adam Tauno Williams: > >> However if she does the following: > >> - create an appointment which *does* create a conflict > >> - click "save and send" > >> - the conflict dialogue comes up, click "ignore" > >> - the mail editor comes up and /sometimes/ (not always!) no > >> recipient is listed. > [snip] > > http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1580 > > I think this is a different issue. My point is that the *GUI* coming > up after "ignore" does not show the participants for the appointment > neither in the list of mail recipients nor in the "participants" field > of the appointment (see attached screenshot). I've seen exactly the same, and I think this is what you mean: http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1902 Sebastian From users@opengroupware.org Wed Mar 19 08:22:33 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Wed, 19 Mar 2008 09:22:33 +0100 Subject: [OGo-Users] searching for mail recipients Message-ID: <20080319082233.D7C48846B4@smtp.l00-bugdead-prods.de> Hi all, when I take the webmail, then I usually take the login name to search for a user. One of these login names is "reg". so I enter reg into the recipient search field, but then I find a gregor, another user, with a different login name, but there the given name matches. I'd expected that OGo also should have found the "reg" user, but when I then look at the found recipients, then there is only the gregor, and the ---ignore--- line, nothing more. The reg user does not have "reg" in its first or last name field. am I wrong or right with my expectations? I am using ogo-trunk some weeks old. kind regards Sebastian From users@opengroupware.org Wed Mar 19 08:38:24 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Wed, 19 Mar 2008 09:38:24 +0100 Subject: [OGo-Users] searching for mail recipients Message-ID: <20080319083824.8CD87846D7@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > Hi all, > > when I take the webmail, then I usually take the login name to search for a > user. One of these login names is "reg". so I enter reg into the recipient > search field, but then I find a gregor, another user, with a different login > name, but there the given name matches. I'd expected that OGo also should > have found the "reg" user, but when I then look at the found recipients, > then there is only the gregor, and the ---ignore--- line, nothing more. The > reg user does not have "reg" in its first or last name field. > > am I wrong or right with my expectations? Forget about it, I was sure I have done it this way, and he was not in the list, but now, I am unable to reproduce it. No idea, what I may have done wrong. Nevertheless, do I can set preferences on the order how the result list is shown? E.g. when I enter a login name, and ogo finds a matching login name, then this can become the preferred e-mail address instead of a partially matching first or last name? Sebastian From users@opengroupware.org Mon Mar 24 11:16:10 2008 From: users@opengroupware.org (Mattias Hemmingsson) Date: Mon, 24 Mar 2008 12:16:10 +0100 Subject: [OGo-Users] 3 config qusetions Message-ID: <47E78D7A.30503@ahavaxthuset.se> Hello ! I have 3 qustions about that a need helo with. Try to search the docs but havent find anything. 1 How to i change so that my user olle is the admin instead of root. 2 When syncing the addressbook in groudav a followd the guide in sogo. But a cant fint the right addreess to sync the addressbook. 3 want to run a remote imaps courier email server but where do i config this ?? // matte From users@opengroupware.org Mon Mar 24 12:03:32 2008 From: users@opengroupware.org (Mattias Hemmingsson) Date: Mon, 24 Mar 2008 13:03:32 +0100 Subject: [OGo-Users] 3 config qusetions In-Reply-To: <47E78D7A.30503@ahavaxthuset.se> References: <47E78D7A.30503@ahavaxthuset.se> Message-ID: <47E79894.5030107@ahavaxthuset.se> Mattias Hemmingsson skrev: > Hello ! > > I have 3 qustions about that a need helo with. > Try to search the docs but havent find anything. > > 1 How to i change so that my user olle is the admin instead of root. > > 2 When syncing the addressbook in groudav a followd the guide in sogo. > But a cant fint the right addreess to sync the addressbook. > > 3 want to run a remote imaps courier email server but where do i > config this ?? > > > > // matte Ok down to 2 qestions I precis fix the imap problems. Install the courier imap server on the localhost and config it to only accept on local net. // matte From users@opengroupware.org Mon Mar 24 12:36:17 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Mon, 24 Mar 2008 08:36:17 -0400 Subject: [OGo-Users] 3 config qusetions In-Reply-To: <47E78D7A.30503@ahavaxthuset.se> References: <47E78D7A.30503@ahavaxthuset.se> Message-ID: <20080324083617.36avsdnyo8s0sggo@tyr.morrison.iserv.net> > I have 3 qustions about that a need helo with. > Try to search the docs but havent find anything. > 1 How to i change so that my user olle is the admin instead of root. You can't. The admin user is fixed as the user with the id of 10,000. You don't want to operate as the admin user as it changes behavour of some things. > 2 When syncing the addressbook in groudav a followd the guide in sogo. > But a cant fint the right addreess to sync the addressbook. Probably {server}/zidestore/dav/{user}/Contacts ZideStore URLs are documented in WMOGAG > 3 want to run a remote imaps courier email server but where do i config > this ?? You can configure the location of the IMAP server via Defaults; this is documented in WMOGAG From users@opengroupware.org Mon Mar 24 20:15:42 2008 From: users@opengroupware.org (Mattias Hemmingsson) Date: Mon, 24 Mar 2008 21:15:42 +0100 Subject: [OGo-Users] 3 config qusetions In-Reply-To: <20080324083617.36avsdnyo8s0sggo@tyr.morrison.iserv.net> References: <47E78D7A.30503@ahavaxthuset.se> <20080324083617.36avsdnyo8s0sggo@tyr.morrison.iserv.net> Message-ID: <47E80BEE.9050305@ahavaxthuset.se> Cant get the addressbok to workTrying to make a new remote addressbook shown in the sogo screenshots. But after i enter the right addres a cabt press enter ( will try i new thudnerbird ) Tried ever addres in the manual http://localhost/zidestore/dav/matte/Calender http://localhost/zidestore/dav/matte/public http://localhost/zidestore/so/matte/Calender http://localhost/zidestore/so/matte/public But nothing / matte Adam Tauno Williams skrev: >> I have 3 qustions about that a need helo with. >> Try to search the docs but havent find anything. >> 1 How to i change so that my user olle is the admin instead of root. > > You can't. The admin user is fixed as the user with the id of 10,000. > You don't want to operate as the admin user as it changes behavour of > some things. > >> 2 When syncing the addressbook in groudav a followd the guide in sogo. >> But a cant fint the right addreess to sync the addressbook. > > Probably {server}/zidestore/dav/{user}/Contacts > > ZideStore URLs are documented in WMOGAG > > >> 3 want to run a remote imaps courier email server but where do i config >> this ?? > > You can configure the location of the IMAP server via Defaults; this > is documented in WMOGAG > > From users@opengroupware.org Tue Mar 25 07:53:45 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Tue, 25 Mar 2008 08:53:45 +0100 Subject: [OGo-Users] 3 config qusetions Message-ID: <20080325075346.47CA185762@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > Cant get the addressbok to workTrying to make > a new remote addressbook shown in the sogo screenshots. > > But after i enter the right addres a cabt press enter ( will try i new > thudnerbird ) > Tried ever addres in the manual > > http://localhost/zidestore/dav/matte/Calender > http://localhost/zidestore/dav/matte/public > http://localhost/zidestore/so/matte/Calender > http://localhost/zidestore/so/matte/public Have you tried: http://localhost/zidestore/so/matte/Contacts http://localhost/zidestore/so/matte/Accounts http://localhost/zidestore/so/matte/Enterprises http://localhost/zidestore/so/matte/public/Contacts http://localhost/zidestore/so/matte/public/Accounts http://localhost/zidestore/so/matte/public/Enterprises > > But nothing > / matte > > > Adam Tauno Williams skrev: > >> I have 3 qustions about that a need helo with. > >> Try to search the docs but havent find anything. > >> 1 How to i change so that my user olle is the admin instead of root. > > > > You can't. The admin user is fixed as the user with the id of 10,000. > > You don't want to operate as the admin user as it changes behavour of > > some things. > > > >> 2 When syncing the addressbook in groudav a followd the guide in sogo. > >> But a cant fint the right addreess to sync the addressbook. > > > > Probably {server}/zidestore/dav/{user}/Contacts > > > > ZideStore URLs are documented in WMOGAG > > > > > >> 3 want to run a remote imaps courier email server but where do i config > >> this ?? > > > > You can configure the location of the IMAP server via Defaults; this > > is documented in WMOGAG > > > > > > -- > OpenGroupware.org Users > users@opengroupware.org > http://mail.opengroupware.org/mailman/listinfo/users > From users@opengroupware.org Tue Mar 25 09:00:32 2008 From: users@opengroupware.org (Helge Hess) Date: Tue, 25 Mar 2008 10:00:32 +0100 Subject: [OGo-Users] 3 config qusetions In-Reply-To: <20080325075346.47CA185762@smtp.l00-bugdead-prods.de> References: <20080325075346.47CA185762@smtp.l00-bugdead-prods.de> Message-ID: <778085BD-D393-450C-9536-ED8113C89EA8@opengroupware.org> On 25.03.2008, at 08:53, Sebastian Reitenbach wrote: > Have you tried: > > http://localhost/zidestore/so/matte/Contacts > http://localhost/zidestore/so/matte/Accounts /so/ is discouraged for WebDAV access. Using /so/ the framework relies on user-agent detection to find out whether its WebDAV client. Using / dav/ it knows for sure that its being accessed in WebDAV "mode". Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Tue Mar 25 09:19:33 2008 From: users@opengroupware.org (Mattias Hemmingsson) Date: Tue, 25 Mar 2008 10:19:33 +0100 Subject: [OGo-Users] 3 config qusetions In-Reply-To: <778085BD-D393-450C-9536-ED8113C89EA8@opengroupware.org> References: <20080325075346.47CA185762@smtp.l00-bugdead-prods.de> <778085BD-D393-450C-9536-ED8113C89EA8@opengroupware.org> Message-ID: <47E8C3A5.607@ahavaxthuset.se> Hello! And witch is the one to use for syncing the addressbook ?? Tried ever addres in the manual > > http://localhost/zidestore/dav/matte/Calender > http://localhost/zidestore/dav/matte/public > http://localhost/zidestore/so/matte/Calender > http://localhost/zidestore/so/matte/public Have you tried: http://localhost/zidestore/so/matte/Contacts http://localhost/zidestore/so/matte/Accounts http://localhost/zidestore/so/matte/Enterprises http://localhost/zidestore/so/matte/public/Contacts http://localhost/zidestore/so/matte/public/Accounts http://localhost/zidestore/so/matte/public/Enterprises None of the obove work And there is only doc on how to sync the calander in the internet. http://www.inverse.ca/english/contributions/sogo_connector.html This extension transforms Thunderbird into a full DAV client for groupware servers such as SOGo , OpenGroupware.org or Citadel. It does this by adding support for remote DAV address books and by adding features to be used along with the Lightning calendar extension. From the webbsite where i got the plugin. Then a tied the locations enterd there but change sogo to sidestore but with now result. // matte Helge Hess skrev: > On 25.03.2008, at 08:53, Sebastian Reitenbach wrote: >> Have you tried: >> >> http://localhost/zidestore/so/matte/Contacts >> http://localhost/zidestore/so/matte/Accounts > > > /so/ is discouraged for WebDAV access. Using /so/ the framework relies > on user-agent detection to find out whether its WebDAV client. Using > /dav/ it knows for sure that its being accessed in WebDAV "mode". > > Helge From users@opengroupware.org Tue Mar 25 10:10:13 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Tue, 25 Mar 2008 11:10:13 +0100 Subject: [OGo-Users] 3 config qusetions Message-ID: <20080325101013.A1AB7857AA@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > Hello! > And witch is the one to use for syncing the addressbook ?? > > Tried ever addres in the manual > > > > http://localhost/zidestore/dav/matte/Calender > > http://localhost/zidestore/dav/matte/public > > http://localhost/zidestore/so/matte/Calender > > http://localhost/zidestore/so/matte/public > > Have you tried: > > http://localhost/zidestore/so/matte/Contacts > http://localhost/zidestore/so/matte/Accounts > http://localhost/zidestore/so/matte/Enterprises > http://localhost/zidestore/so/matte/public/Contacts > http://localhost/zidestore/so/matte/public/Accounts > http://localhost/zidestore/so/matte/public/Enterprises > > None of the obove work > And there is only doc on how to sync the calander in the internet. what actually happens, when you access these? do you have zidestore configured? do you can access the /dav/ URL's with the browser? anything in the logs from zidestore when you acceess the /dav/ Sebastian From users@opengroupware.org Tue Mar 25 10:24:49 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Tue, 25 Mar 2008 11:24:49 +0100 Subject: [OGo-Users] custom fields and synchronizing ogo Message-ID: <20080325102450.3CECB857C0@smtp.l00-bugdead-prods.de> Hi, I want to create some custom fields to contacts and companies, and I wonder, whether I can set default values for such custom fields. E.g. I have a checkbox "IsCustomer" and I want it to be checked by default when I want to create a new contact. the second thing is, I have to update contact values in ogo database. I'll get a CSV file, then I have to check, whether the person already is in the ogo database, matching the e-mail addresses, if the person does not exists, then I need to create it. What is the best way to do this with an actual ogo version? Some years ago, I initially filled my ogo db with contacts/enterprises using the import_perscomp.py script. Is this still the best way to do, or is there, meanwhile, a better way, using ZOGi or sth. else? kind regards Sebastian PS: to Helge: Libretto is back, it must have arrived one or two days before Easter. From users@opengroupware.org Tue Mar 25 10:30:44 2008 From: users@opengroupware.org (Mattias Hemmingsson) Date: Tue, 25 Mar 2008 11:30:44 +0100 Subject: [OGo-Users] 3 config qusetions In-Reply-To: <20080325101013.A1AB7857AA@smtp.l00-bugdead-prods.de> References: <20080325101013.A1AB7857AA@smtp.l00-bugdead-prods.de> Message-ID: <47E8D454.6050504@ahavaxthuset.se> Hello When i acces the /dav/matte directory a got an login an after the log the server sends me an file. I also remove the sogo connector and installd a other one that i find on the net. and with this connector a can now create a now remote addresbook on the server. So it must gave been the sogo connector that fails. Now to the new problem now a can create new addresbook on the server but wich is the one that sync my contacts to opengroupware. So a can se my contacts booth on the opengroupware and on the thunderbird. //matte When this i working i will put this in the wiki for other to follow Sebastian Reitenbach skrev: > users@opengroupware.org wrote: > >> Hello! >> And witch is the one to use for syncing the addressbook ?? >> >> Tried ever addres in the manual >> >>> http://localhost/zidestore/dav/matte/Calender >>> http://localhost/zidestore/dav/matte/public >>> http://localhost/zidestore/so/matte/Calender >>> http://localhost/zidestore/so/matte/public >>> >> Have you tried: >> >> http://localhost/zidestore/so/matte/Contacts >> http://localhost/zidestore/so/matte/Accounts >> http://localhost/zidestore/so/matte/Enterprises >> http://localhost/zidestore/so/matte/public/Contacts >> http://localhost/zidestore/so/matte/public/Accounts >> http://localhost/zidestore/so/matte/public/Enterprises >> >> None of the obove work >> And there is only doc on how to sync the calander in the internet. >> > what actually happens, when you access these? > do you have zidestore configured? > do you can access the /dav/ URL's with the browser? > anything in the logs from zidestore when you acceess the /dav/ > > Sebastian > > From users@opengroupware.org Tue Mar 25 11:01:46 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Tue, 25 Mar 2008 07:01:46 -0400 Subject: [OGo-Users] custom fields and synchronizing ogo In-Reply-To: <20080325102450.3CECB857C0@smtp.l00-bugdead-prods.de> References: <20080325102450.3CECB857C0@smtp.l00-bugdead-prods.de> Message-ID: <1206442906.4667.18.camel@aleph> > I want to create some custom fields to contacts and companies, and I wonder, > whether I can set default values for such custom fields. E.g. I have a > checkbox "IsCustomer" and I want it to be checked by default when I want to > create a new contact. I don't believe there are defaults for custom values. > the second thing is, I have to update contact values in ogo database. I'll > get a CSV file, then I have to check, whether the person already is in the > ogo database, matching the e-mail addresses, if the person does not exists, > then I need to create it. What is the best way to do this with an actual ogo > version? Some years ago, I initially filled my ogo db with > contacts/enterprises using the import_perscomp.py script. Is this still the > best way to do, or is there, meanwhile, a better way, using ZOGi or sth. > else? Of course, I'd recommend zOGI. I've numerous example sync scripts; our marketing department imports contact lists via zOGI on a regular basis. I think some scripts are in the archive of the xmlrpc@ list. Post over there for zOGI specific questions. And there is a relatively sophisticated example in the zOGI Wiki From users@opengroupware.org Tue Mar 25 12:21:53 2008 From: users@opengroupware.org (Sebastian Reitenbach) Date: Tue, 25 Mar 2008 13:21:53 +0100 Subject: [OGo-Users] custom fields and synchronizing ogo Message-ID: <20080325122154.136FF85811@smtp.l00-bugdead-prods.de> users@opengroupware.org wrote: > > I want to create some custom fields to contacts and companies, and I wonder, > > whether I can set default values for such custom fields. E.g. I have a > > checkbox "IsCustomer" and I want it to be checked by default when I want to > > create a new contact. > > I don't believe there are defaults for custom values. Ah, then this is good as an enhancement request ;) > > > the second thing is, I have to update contact values in ogo database. I'll > > get a CSV file, then I have to check, whether the person already is in the > > ogo database, matching the e-mail addresses, if the person does not exists, > > then I need to create it. What is the best way to do this with an actual ogo > > version? Some years ago, I initially filled my ogo db with > > contacts/enterprises using the import_perscomp.py script. Is this still the > > best way to do, or is there, meanwhile, a better way, using ZOGi or sth. > > else? > > Of course, I'd recommend zOGI. I've numerous example sync scripts; our > marketing department imports contact lists via zOGI on a regular basis. > I think some scripts are in the archive of the xmlrpc@ > list. Post over > there for zOGI specific questions. And there is a relatively > sophisticated example in the zOGI Wiki > great hint, thank you. I did not yet bothered to take a closer look into ZOGi, but as this looks very promising, it seems to be the right time. Sebastian From users@opengroupware.org Thu Mar 27 16:06:58 2008 From: users@opengroupware.org (laura OC) Date: Thu, 27 Mar 2008 16:06:58 +0000 Subject: [OGo-Users] How can I access OpenGroupware? Message-ID: --_75309e47-95c8-48cc-881d-84560f51b70f_ Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Hi,=20 =20 I have never worked with OpenGroupware and I need to access data of OpenGro= upware, so I had thought in saving the data in a database somehow. How is = it possible? What options is there? Only I am interested in obtaining the c= ontacts, appointments and task. =20 Please, Can someone help me?Any suggestion will be welcome. =20 Thanks _________________________________________________________________ Tecnolog=EDa, moda, motor, viajes,=85suscr=EDbete a nuestros boletines para= estar siempre a la =FAltima http://newsletters.msn.com/hm/maintenanceeses.asp?L=3DES&C=3DES&P=3DWCMaint= enance&Brand=3DWL&RU=3Dhttp%3a%2f%2fmail.live.com= --_75309e47-95c8-48cc-881d-84560f51b70f_ Content-Type: text/html; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Hi,
 
I have never worked with OpenGroupware and I need to access data of Open= Groupware,  so I had thought in saving the data in a database somehow.= How is it possible? What options is there? Only I am interested in obtaini= ng the contacts, appointments and task.
 
Please, Can someone help me?Any suggestion will be welcome.
 
Thanks


Sigue al minuto las principales = noticias de tu ciudad MSN Deportes = --_75309e47-95c8-48cc-881d-84560f51b70f_-- From users@opengroupware.org Thu Mar 27 17:33:44 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Thu, 27 Mar 2008 13:33:44 -0400 Subject: [OGo-Users] How can I access OpenGroupware? In-Reply-To: References: Message-ID: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> > I have never worked with OpenGroupware and I need to access data of > OpenGroupware, so I had thought in saving the data in a database > somehow. How is it possible? What options is there? Only I am > interested in obtaining the contacts, appointments and task. > Please, Can someone help me?Any suggestion will be welcome. Use the XML-RPC API that would be the preferred method if you need to integrate OGo with some custom application. Of course you can always connect to the backend database (PostgreSQL) but that isn't advised as you then walk around all of the access permissions, etc... And there is also iCal & GroupDAV access to contacts and appointments via ZideStore. From users@opengroupware.org Fri Mar 28 08:00:55 2008 From: users@opengroupware.org (laura OC) Date: Fri, 28 Mar 2008 08:00:55 +0000 Subject: [OGo-Users] How can I access OpenGroupware? In-Reply-To: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> References: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> Message-ID: --_6de55e45-e135-45f4-8ba4-440d3c3c021e_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable > Subject: Re: [OGo-Users] How can I access OpenGroupware?> From: adam@morr= ison-ind.com> To: users@opengroupware.org> Date: Thu, 27 Mar 2008 13:33:44 = -0400> > > I have never worked with OpenGroupware and I need to access data= of> > OpenGroupware, so I had thought in saving the data in a database> > = somehow. How is it possible? What options is there? Only I am> > interested= in obtaining the contacts, appointments and task. > > Please, Can someone = help me?Any suggestion will be welcome.>=20 =20 =20 > Use the XML-RPC API that would be the> p= referred method if you need to integrate OGo with some custom> application.= > > Of course you can always connect to the backend database (PostgreSQL)> = but that isn't advised as you then walk around all of the access> permissio= ns, etc...> > And there is also iCal & GroupDAV access to contacts and appo= intments> via ZideStore. > > > = -- > OpenGroupware.org Users> users@opengroupware.org> http://mail.opengrou= pware.org/mailman/listinfo/users Hi, =20 What language is written zogi? in C? I would need to integrate OpengGroupwa= re with a custom application in Java. I have tested the API JOGI (in Java) = but I think It doesn't work correctly. =20 Can I access to the tasks using iCal or GroupDav? =20 I don't know about GroupDav. I am testing with funambol and a groupdav conn= ector although I don't Know if It is the better option. I have downloaded t= he version funambol-6.5.1.4.exe and the groupdav connector 2.0.s4j in . I have installed the funambol = and have added this connector following this manual . But I can't get to connect to the = OpenGroupware, I think that I haven't configured correctly the connector. =20 Also I have read about evolution, thunderbird,.. . What option you recommen= d me?=20 I think that thunderbird and evolution can connect to OpenGroupware with a = connector, I don't know how it is configured. =20 Thanks in advance, =20 =20 =20 _________________________________________________________________ La vida de los famosos al desnudo en MSN Entretenimiento http://entretenimiento.es.msn.com/= --_6de55e45-e135-45f4-8ba4-440d3c3c021e_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

> Subject: Re: [OGo-Users] How can I access OpenGroupware?
&g= t; From: adam@morrison-ind.com
> To: users@opengroupware.org
> = Date: Thu, 27 Mar 2008 13:33:44 -0400
>
> > I have never wo= rked with OpenGroupware and I need to access data of
> > OpenGroup= ware, so I had thought in saving the data in a database
> > someho= w. How is it possible? What options is there? Only I am
> > intere= sted in obtaining the contacts, appointments and task.
> > Please= , Can someone help me?Any suggestion will be welcome.
>
 
 

> Use the XML-RPC API <http://code.google.com/p/zogi/> that wo= uld be the
> preferred method if you need to integrate OGo with some = custom
> application.
>
> Of course you can always conne= ct to the backend database (PostgreSQL)
> but that isn't advised as y= ou then walk around all of the access
> permissions, etc...
> <= BR>> And there is also iCal & GroupDAV access to contacts and appoin= tments
> via ZideStore. <http://www.whitemiceconsulting.com/node/6= 7>
>
>
> --
> OpenGroupware.org Users
>= users@opengroupware.org
> http://mail.opengroupware.org/mailman/listinfo/users=

Hi,
 
What language is written zogi? in C? I would need to integrate OpengGroupwa= re with a custom application in Java. I have tested the API JOGI (in Java) = but I think It doesn't work correctly.
 
Can I access to the tasks using iCal or GroupDav?
 
I don't know about GroupDav. I am testing with funambol and a groupdav conn= ector although I don't Know if It is the better option. I have downloaded t= he version funambol-6.5.1.4.exe and the groupdav connector 2.0.s4j in <http://bionicmessa= ge.net/index.php?q=3Dnode/4>.  I have installed the funambol an= d have added this connector following this manual <http://comalies.citadel= .org/~matt/funambol/installguide.html>. But I can't get to connect t= o the OpenGroupware, I think that I haven't configured correctly the connec= tor.
 
Also I have read about evolution, thunderbird,.. . What option you recommen= d me?
I think that thunderbird and evolution can connect to OpenGroupware with a = connector, I don't know how it is configured.
 
Thanks in advance,

 

 
 


Sigue los principales acontecimientos deportivos en d= irecto. MSN Motor = --_6de55e45-e135-45f4-8ba4-440d3c3c021e_-- From users@opengroupware.org Fri Mar 28 09:55:03 2008 From: users@opengroupware.org (Helge Hess) Date: Fri, 28 Mar 2008 10:55:03 +0100 Subject: [OGo-Users] How can I access OpenGroupware? In-Reply-To: References: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> Message-ID: <07060000-1EEE-4CEE-BA39-DA55E3D2252C@opengroupware.org> On 28.03.2008, at 09:00, laura OC wrote: > What language is written zogi? in C? I would need to integrate > OpengGroupware with a custom application in Java. I have tested the > API JOGI (in Java) but I think It doesn't work correctly. I have already reimplemented a large part of OGo in Java, but did not want to release the stuff yet (until its API/internals are sufficiently stable). Tell me a bit more about the thing you want to do (in PM if you want), and I might send you a preview. Though it would be better if you could wait ~3 more months, June/July is about the time when I wanted to have the Java stuff in shape for public consumption. Thanks, Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Fri Mar 28 10:44:53 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Fri, 28 Mar 2008 06:44:53 -0400 Subject: [OGo-Users] How can I access OpenGroupware? In-Reply-To: References: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> Message-ID: <1206701093.19517.9.camel@aleph> > > > I have never worked with OpenGroupware and I need to access data > of > > > OpenGroupware, so I had thought in saving the data in a database > > > somehow. How is it possible? What options is there? Only I am > > > interested in obtaining the contacts, appointments and task. > > > Please, Can someone help me?Any suggestion will be welcome. > > Use the XML-RPC API that would be > > the preferred method if you need to integrate OGo with some custom > > application. > What language is written zogi? in C? Objective-C, but that isn't really relevant. zOGI provides an API to use via XML-RPC, so it is language independent. For example, I have a .NET app that uses zOGI/db4o/Gtk# which is an OGo client . > I would need to integrate OpengGroupware with a custom application in > Java. The Apache XML-RPC classes work very well; there is an example page for using Jython with those assemblies. > I have tested the API JOGI (in Java) but I think It doesn't work > correctly. No one has worked on JOGI in a very long time, and JOGI is a wrapper of the previous XML-RPC API which itself was pretty terrible. > Can I access to the tasks using iCal or GroupDav? No, you can't write tasks via GroupDAV; and the features of the task application that make it actually useful (delegation, annotation, etc...) aren't available via DAV. > I don't know about GroupDav. I am testing with funambol and a groupdav > connector although I don't Know if It is the better option. I have > downloaded the version funambol-6.5.1.4.exe and the groupdav connector > 2.0.s4j in . I have > installed the funambol and have added this connector following this > manual . > But I can't get to connect to the OpenGroupware, I think that I > haven't configured correctly the connector. I don't think that would be a very effective way to do integration; but you haven't specified what exactly you want to do. > Also I have read about evolution, thunderbird,.. . What option you > recommend me? > I think that thunderbird and evolution can connect to OpenGroupware > with a connector, I don't know how it is configured. The Thunderbird connector *should* work but I haven't tried it in awhile. The Evolution connector has been broken for a very long time and has no active developer. But neither of these would help you access from a Java application. From users@opengroupware.org Fri Mar 28 17:54:48 2008 From: users@opengroupware.org (Mattias Hemmingsson) Date: Fri, 28 Mar 2008 18:54:48 +0100 Subject: [OGo-Users] Opengroupware and exchange In-Reply-To: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> Message-ID: Hello! Is it possible to connect outlook to opengroupware like you connect to an exchange server ?? It it would be great then you can use outlook och evolution exchange to connect and it so to what addres or port ?? // matte From users@opengroupware.org Fri Mar 28 18:03:24 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Fri, 28 Mar 2008 14:03:24 -0400 Subject: [OGo-Users] Opengroupware and exchange In-Reply-To: References: Message-ID: <1206727404.4938.55.camel@WM_ADAM1.morrison.iserv.net> > Is it possible to connect outlook to opengroupware like you connect to an > exchange server ?? Yes, that is the ZideLook [commercial] product. > It it would be great then you can use outlook och evolution exchange to > connect and it so to what addres or port ?? A client that supports GroupDAV should be able to interoperate with OGo's ZideStore service. There was an Evolution connector once-upon-a-time but it has been awhile since it had an active maintainer. From users@opengroupware.org Sun Mar 30 13:08:38 2008 From: users@opengroupware.org (laura OC) Date: Sun, 30 Mar 2008 12:08:38 +0000 Subject: [OGo-Users] How can I access OpenGroupware? In-Reply-To: <07060000-1EEE-4CEE-BA39-DA55E3D2252C@opengroupware.org> References: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> <07060000-1EEE-4CEE-BA39-DA55E3D2252C@opengroupware.org> Message-ID: --_efc44c86-387b-427c-b958-db7e78aa8586_ Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable > From: helge.hess@opengroupware.org> To: users@opengroupware.org> Subject:= Re: [OGo-Users] How can I access OpenGroupware?> Date: Fri, 28 Mar 2008 10= :55:03 +0100> > On 28.03.2008, at 09:00, laura OC wrote:> > What language i= s written zogi? in C? I would need to integrate > > OpengGroupware with a c= ustom application in Java. I have tested the > > API JOGI (in Java) but I t= hink It doesn't work correctly.> > > I have already reimplemented a large p= art of OGo in Java, but did not > want to release the stuff yet (until its = API/internals are > sufficiently stable). Tell me a bit more about the thin= g you want to > do (in PM if you want), and I might send you a preview.> > = Though it would be better if you could wait ~3 more months, June/July > is = about the time when I wanted to have the Java stuff in shape for > public c= onsumption.> > Thanks,> Helge> -- > Helge Hess> http://www.helgehess.eu/> -= - > OpenGroupware.org Users> users@opengroupware.org> http://mail.opengroup= ware.org/mailman/listinfo/users =20 Hi, =20 I have to develop a project where I sync a data through a Java application = with the data of OpenGroupware, so I have to obtain and update them.=20 I need the contacts, appointments and tasks. But I don't know if this is th= e correct way or what is the better option in my case.... =20 I can't wait those months.... =20 Thanks, _________________________________________________________________ Tecnolog=EDa, moda, motor, viajes,=85suscr=EDbete a nuestros boletines para= estar siempre a la =FAltima http://newsletters.msn.com/hm/maintenanceeses.asp?L=3DES&C=3DES&P=3DWCMaint= enance&Brand=3DWL&RU=3Dhttp%3a%2f%2fmail.live.com= --_efc44c86-387b-427c-b958-db7e78aa8586_ Content-Type: text/html; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable

> From: helge.hess@opengroupware.org
> To: users@opengroup= ware.org
> Subject: Re: [OGo-Users] How can I access OpenGroupware?> Date: Fri, 28 Mar 2008 10:55:03 +0100
>
> On 28.03.2008= , at 09:00, laura OC wrote:
> > What language is written zogi? in = C? I would need to integrate
> > OpengGroupware with a custom app= lication in Java. I have tested the
> > API JOGI (in Java) but I = think It doesn't work correctly.
>
>
> I have already r= eimplemented a large part of OGo in Java, but did not
> want to rele= ase the stuff yet (until its API/internals are
> sufficiently stable= ). Tell me a bit more about the thing you want to
> do (in PM if you= want), and I might send you a preview.
>
> Though it would be= better if you could wait ~3 more months, June/July
> is about the t= ime when I wanted to have the Java stuff in shape for
> public consu= mption.
>
> Thanks,
> Helge
> --
> Helge He= ss
> http://www.helgehess.eu/
> --
> OpenGroupware.org U= sers
> users@opengroupware.org
> http://mail.opengroupware.org/mailman/li= stinfo/users
 
Hi,
 
I have to develop a project where I sync a data through a Java application = with the data of OpenGroupware, so I have to obtain and update them.
I need the contacts, appointments and tasks. But I don't know if this is th= e correct way or what is the better option in my case....
 
I can't wait those months....
 
Thanks,



Sigue al minuto las principales noticias de tu c= iudad MSN Deportes<= /a> = --_efc44c86-387b-427c-b958-db7e78aa8586_-- From users@opengroupware.org Sun Mar 30 14:28:59 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Sun, 30 Mar 2008 09:28:59 -0400 Subject: [OGo-Users] How can I access OpenGroupware? In-Reply-To: References: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> <07060000-1EEE-4CEE-BA39-DA55E3D2252C@opengroupware.org> Message-ID: <1206883739.31047.7.camel@aleph> > > On 28.03.2008, at 09:00, laura OC wrote: > > > What language is written zogi? in C? I would need to integrate > > > OpengGroupware with a custom application in Java. I have tested > the > > > API JOGI (in Java) but I think It doesn't work correctly. > > I have already reimplemented a large part of OGo in Java, but did > not > > want to release the stuff yet (until its API/internals are > > sufficiently stable). Tell me a bit more about the thing you want > to > > do (in PM if you want), and I might send you a preview. > > Though it would be better if you could wait ~3 more months, > June/July > > is about the time when I wanted to have the Java stuff in shape for > > public consumption. > I have to develop a project where I sync a data through a Java > application with the data of OpenGroupware, so I have to obtain and > update them. > I need the contacts, appointments and tasks. But I don't know if this > is the correct way or what is the better option in my case.... The data you to sync is available through the zOGI API , including object version numbers - which makes intelligent synchronization very easy. An example of assessing the zOGI API via Apache's XML-RPC Jars is provided . We do a fair amount of data syncronization using this API and Apache's JARs. A more complicated Jython script is available here . From users@opengroupware.org Sun Mar 30 18:31:41 2008 From: users@opengroupware.org (Helge Hess) Date: Sun, 30 Mar 2008 19:31:41 +0200 Subject: [OGo-Users] How can I access OpenGroupware? In-Reply-To: References: <1206639224.4885.40.camel@WM_ADAM1.morrison.iserv.net> <07060000-1EEE-4CEE-BA39-DA55E3D2252C@opengroupware.org> Message-ID: On 30.03.2008, at 14:08, laura OC wrote: > I have to develop a project where I sync a data through a Java > application with the data of OpenGroupware, so I have to obtain and > update them. > I need the contacts, appointments and tasks. But I don't know if > this is the correct way or what is the better option in my case.... More details please, its impossible to give you good suggestions if you don't outline the exact nature of your task. Thanks, Helge -- Helge Hess http://www.helgehess.eu/ From users@opengroupware.org Mon Mar 31 09:55:52 2008 From: users@opengroupware.org (Vik Tara) Date: Mon, 31 Mar 2008 09:55:52 +0100 Subject: [OGo-Users] Tasks with ogo, thunderbird and lightning Message-ID: <47F0A718.3060802@propco.co.uk> Hi, I am trying to get opengroupware working with Thunderbird / Lightning. So far I have connected Thunderbird to opengroupware using the CalDav url: http://my.server/zidestore/dav/username/Overview Which works fine for calendar appointments. If I enter as task into thunderbird however it does not appear in thunderbird or opengroupware. If I enter as task into opengroupware it appears there but not in thunderbird. I suspect therefore tasks are not yet supported - but could someone confirm if this is true and also if there are any other clients where tasks and calendaring are supported? I am using: ogo-meta-1.1.7-r1987.0 on centos 5 With Thunderbird 2.0.0.12 (fc8) Lightning 0.7 Any help greatly appreciated. Thanks Vik From users@opengroupware.org Mon Mar 31 13:58:58 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Mon, 31 Mar 2008 08:58:58 -0400 Subject: [OGo-Users] Tasks with ogo, thunderbird and lightning In-Reply-To: <47F0A718.3060802@propco.co.uk> References: <47F0A718.3060802@propco.co.uk> Message-ID: <1206968338.4690.6.camel@WM_ADAM1.morrison.iserv.net> > I am trying to get opengroupware working with Thunderbird / Lightning. > So far I have connected Thunderbird to opengroupware using the CalDav url: > http://my.server/zidestore/dav/username/Overview > Which works fine for calendar appointments. > If I enter as task into thunderbird however it does not appear in > thunderbird or opengroupware. > If I enter as task into opengroupware it appears there but not in > thunderbird. > I suspect therefore tasks are not yet supported - but could someone > confirm if this is true and also if there are any other clients where > tasks and calendaring are supported? Task PUT is not supported by ZideStore. I don't know the status of task support in the GroupDAV/CalDAV connector. Support of the OGo task application is very nearly complete in Consonance there is only one last feature to add, but unfortunately the scheduler support is in the early stages [as tasks & projects are my primary focus]. Depends on how badly you need task support, Consonance is very much "under development". > I am using: > ogo-meta-1.1.7-r1987.0 on centos 5 > With > Thunderbird 2.0.0.12 (fc8) > Lightning 0.7 > Any help greatly appreciated. From users@opengroupware.org Mon Mar 31 15:04:29 2008 From: users@opengroupware.org (Vik Tara) Date: Mon, 31 Mar 2008 15:04:29 +0100 Subject: [OGo-Users] Tasks with ogo, thunderbird and lightning In-Reply-To: <1206968338.4690.6.camel@WM_ADAM1.morrison.iserv.net> References: <47F0A718.3060802@propco.co.uk> <1206968338.4690.6.camel@WM_ADAM1.morrison.iserv.net> Message-ID: <47F0EF6D.3070808@taraandco.com> Hi Adam, Thanks for the reply - i'll go take a look at Consonance right away! In the meantime I supposed I could use a syncml approach with Funambol - does anyone know if this is reliable? Regards Vik Adam Tauno Williams wrote: >> I am trying to get opengroupware working with Thunderbird / Lightning. >> So far I have connected Thunderbird to opengroupware using the CalDav url: >> http://my.server/zidestore/dav/username/Overview >> Which works fine for calendar appointments. >> If I enter as task into thunderbird however it does not appear in >> thunderbird or opengroupware. >> If I enter as task into opengroupware it appears there but not in >> thunderbird. >> I suspect therefore tasks are not yet supported - but could someone >> confirm if this is true and also if there are any other clients where >> tasks and calendaring are supported? >> > > Task PUT is not supported by ZideStore. > > > I don't know the status of task support in the GroupDAV/CalDAV > connector. > > Support of the OGo task application is very nearly complete in > Consonance there is only one last > feature to add, but unfortunately the scheduler support is in the early > stages [as tasks & projects are my primary focus]. Depends on how badly > you need task support, Consonance is very much "under development". > > >> I am using: >> ogo-meta-1.1.7-r1987.0 on centos 5 >> With >> Thunderbird 2.0.0.12 (fc8) >> Lightning 0.7 >> Any help greatly appreciated. >> > > > From users@opengroupware.org Mon Mar 31 15:19:27 2008 From: users@opengroupware.org (Adam Tauno Williams) Date: Mon, 31 Mar 2008 10:19:27 -0400 Subject: [OGo-Users] Tasks with ogo, thunderbird and lightning In-Reply-To: <47F0EF6D.3070808@taraandco.com> References: <47F0A718.3060802@propco.co.uk> <1206968338.4690.6.camel@WM_ADAM1.morrison.iserv.net> <47F0EF6D.3070808@taraandco.com> Message-ID: <1206973167.4690.11.camel@WM_ADAM1.morrison.iserv.net> > Thanks for the reply - i'll go take a look at Consonance right away! I've bundle up a new binary snapshot. > In the meantime I supposed I could use a syncml approach with Funambol - > does anyone know if this is reliable? That won't do tasks either; tasks update via DAV or GroupDAV isn't supported in Zidestore.