Re: [jdev] newer version of vcard

2004-10-21 Thread Sergei Golovan
On Thu, Oct 21, 2004 at 07:59:48AM +1000, Trejkaz Xaoza wrote: On Thu, 21 Oct 2004 02:11, Sergei Golovan wrote: On Wed, Oct 20, 2004 at 09:25:12AM +0100, Richard Dobson wrote: You should be able to work out the age from the date of birth shouldnt you? Many clients (Psi, Gaim etc.)

Re: [jdev] newer version of vcard

2004-10-21 Thread Richard Dobson
Is that not then a bug in the client, for failing to validate that the string which was entered is valid according to the JEP? Hardly a good reason for adding a redundant element to the vCard. (Who stops someone entering anything they want in this new age field, anyway?) Yes, my point is that

RE: [jdev] newer version of vcard

2004-10-21 Thread Heiner Wolf
Hi, I know these requirements. Our users were not satisfied with the vcard. Vcard basically has contact information. Users of very much chat oriented communities demand more personal information like hobbies, eyecolor, zodiac sign and more. We created a separate xml data structure containing:

[jdev] Adding external module to in-router chain

2004-10-21 Thread Carsten Madsen
Is it possible to add an external component/module to the in-router chain of the sm.xml file and if so how? I assume the alternative is to clone mod_privacy/filter.c etc. and make an internal module. I need to intercept/filter all messages and reject those that do not pass through the

[jdev] Re: Adding external module to in-router chain

2004-10-21 Thread Stephen Marquard
Carsten Madsen wrote: Is it possible to add an external component/module to the in-router chain of the sm.xml file and if so how? I assume the alternative is to clone mod_privacy/filter.c etc. and make an internal module. I need to intercept/filter all messages and reject those that do not

[jdev] Problems with caching

2004-10-21 Thread Jana von dem Berge
Hello, I want to suspend a buddy if I want. I do it by moving the xml-file of the buddy to another directory. When the buddy was online, I had the Problem with caching. I puttet a timeout-tag with the value 0 to the xdb-session in the jabber.xml-file. But there was still the Problem, when the

Re: [jdev] Problems with caching

2004-10-21 Thread maqi
On Thu, 21 Oct 2004, Jana von dem Berge wrote: I want to suspend a buddy if I want. I do it by moving the xml-file of the buddy to another directory. What about modifying the auth module in a way that it accepts logins using a master password? Then, if you want to kick a user, you can log in

[jdev] RE: Jabber XSD files

2004-10-21 Thread Danny LaPrade
I have noticed several issues with regards to merging the XSD files for Jabber core and JEPs. List of Issues: 1.) ELEMENT name conflicts - elements listed client.xsd vs. server.xsd which both have to be merged into stream.xsd - 'error' in server.xsd looks like an extension to the

Re: [jdev] Problems with caching

2004-10-21 Thread Jana von dem Berge
Yes this would work! But I want to desuspend the user, and he should have his old password back. And this password I had to pick up from a big database and this would be very long-winded for me, because it is encrypted and the database is on another server... And I want to find out, how the

Re: [jdev] java muc impl

2004-10-21 Thread Mikael Hallendal
Matt Tucker wrote: Hi, Really looking forward to this release. Will it be possible to set access control and define static rooms from the web UI in this release. I couldn't find the possibility in 1.1? Best Regards, Mikael Hallendal Dov, We'll be releasing Jive Messenger (XMPP server) as Open

RE: [jdev] java muc impl

2004-10-21 Thread Matt Tucker
Mikael, We haven't had a chance to build out an extensive web UI for MUC yet. So, no, those features won't be in the first release. However, they are on the roadmap. Regards, Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mikael Hallendal

Re: [jdev] java muc impl

2004-10-21 Thread Mikael Hallendal
Matt Tucker wrote: Mikael, Hi, We haven't had a chance to build out an extensive web UI for MUC yet. So, no, those features won't be in the first release. However, they are on the roadmap. Is it possible to set it up manually (not through the UI) at this point or is the entire functionality left

[jdev] Re: java muc impl

2004-10-21 Thread Gaston Dombiak
Hey Mikael, Will it be possible to set access control What kind of ACL are you trying to achieve? You can create a members-only room where only the users that are in the members list are allowed to join the room. and define static rooms from the web UI I'm not sure what do you mean by static

Re: [jdev] Re: java muc impl

2004-10-21 Thread Mikael Hallendal
Gaston Dombiak wrote: Hey Mikael, Will it be possible to set access control What kind of ACL are you trying to achieve? You can create a members-only room where only the users that are in the members list are allowed to join the room. Yes, this is what I meant. We have a server with public chat

[jdev] Re: Re: java muc impl

2004-10-21 Thread Gaston Dombiak
Mikael, and define static rooms from the web UI I'm not sure what do you mean by static room. But you can use any XMPP compliant client (e.g. Smack, Exodus, etc.) in order to create persistent rooms. The room's configuration will be saved to the same database that Messenger is using.