Tiger!P | 1 Oct 13:07

Re: jabber disconnects

On Sat, Sep 30, 2006 at 11:51:13AM +0200, Magnus Henoch wrote:
> JoE <joe@...> writes:
> 
> >>             I was wondering if anyone had experienced the
> >> following with a Jabber server.  I setup the login information
> >>  and try to login, and it disconnects with an error 503.
> > Here is a quickhack patch, which simply resolves this problem. The
> > "Agent List" query is deprecated in the jabber protokoll, but centericq
> > close the whole connection if this service is unavailable (maybe someone
> > give a nicer solution than this workaround ;).
> 
> I propose the patch below.  It makes centericq ignore errors which are
> not directly related to authentication.

I have put that patch [1] online including a readme[2].
Magnus, if you don't want that, please contact me.

[1] http://centericq.de/archive/contrib/patches/centericq-4.21.0-jabber-auth_connect.patch
[2] http://centericq.de/archive/contrib/patches/centericq-4.21.0-jabber-auth_connect.patch.README

Tiger!P
--

-- 
A random quote:
Only a fool thinks a lion or a woman can truly be tamed.
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

(Continue reading)

centericq | 2 Oct 17:53

Re: MSN Core Dumps *RESOLVED*

I was never able to read the patch.README, however when I just got around 
to downloading and compiling this version, my coredumping was resolved.

Thank you everyone!

On Wed, 27 Sep 2006, Daniel wrote:

> I've had no coredumps at all on freebsd since I compiled and ran this
> version:
>
> http://unkie.org/tmp/centericq-4.21.0.tar.bz2
>
> http://centericq.de/archive/contrib/patches/centericq-msn-patch.README
>
> -d
>
> On Wed, Sep 27, 2006 at 02:12:28PM -0400, centericq@... wrote:
>> Hi all,
>>
>> I've been running 4.21.0 on Fedora Core 2 (2.6.8-1.521custom) since it was
>> first fully released, and I've had periodic reproducable core dumps on MSN
>> immediately after it attempts to connect.  It connects, loads the
>> usernames, mentions that it's checking for Hotmail, then I get a
>> Segmentation fault (core dumped), with a nice-sized (4.3mb) core left
>> behind.  The last time I had this problem, I went through my contact list
>> and pared it -way- back in MSN, and it went away for a few months, then
>> the problem came back again a few days ago.  Any suggestions?  Is there
>> any way I can offer some form of debugging info to assist?  There isn't a
>> lot that I can see besides the core.
>>
(Continue reading)

schleiereule | 5 Oct 00:25
Picon

urgency hint flag

Hi,

the urgency hint flag is a very useful feature. And IMHO it is a must have for an instant messanger client.
Adding this to cicq should not be very difficult I think. There is a simple code example in the ion faq
showing how it works:
http://www.modeemi.fi/~tuomov/ion/faq/entries/Urgency_flag.html
But I don't know how to link it with cicq. Can anybody help me?

Greetings
Sibel
--

-- 
GMX DSL-Flatrate 0,- Euro* - Überall, wo DSL verfügbar ist!
NEU: Jetzt bis zu 16.000 kBit/s! http://www.gmx.net/de/go/dsl
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

Petr Pisar | 5 Oct 09:15
Picon

Re: urgency hint flag

On 2006-10-04, schleiereule@...
<schleiereule@...> wrote:
> the urgency hint flag is a very useful feature. And IMHO it is a must
> have for an instant messanger client. Adding this to cicq should not
> be very difficult I think. There is a simple code example in the ion
> faq showing how it works:
> http://www.modeemi.fi/~tuomov/ion/faq/entries/Urgency_flag.html

Great idea.

> But I don't know how to link it with cicq. Can anybody help me?
>
Cicq is not X11 related software. If you want to use urgency hinting on
incoming message, you could call the program from sound or action file.

-- Petr

_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

schleiereule | 5 Oct 12:41
Picon

Re: urgency hint flag

Hi!

On Thu, 05.10, Petr Pisar wrote:
> Cicq is not X11 related software.
Perhaps there should be a flag in configure script, something like
--with-x. But I don't know how this could be realized because I am not familiar with coding.

>If you want to use urgency hinting on
>incoming message, you could call the program from sound or action file.
The file "eventmanager.cc" might be a good choice. I have inserted a few lines of pseudo code between the
comments (centericq-4.21.0/src/eventmanager.cc) starting at line 59:

 if(ev.getdirection() == imevent::incoming) {
   if(!lst.inlist(ev.getcontact(), csignore)) {
     logger.putevent(ev);
     face.xtermtitle(_("event from %s"),\
     cev.getcontact().totext().c_str());

     /*** if compiled with x set urgency hint flag ***/
     if(with_x == 'TRUE') {
       set_urgency_hint();
     }
     /*** urgency hint flag was set ***/

     c = clist.get(ev.getcontact());

I think this should do the job. The function set_urgency_hint() should be similar to the main function in
urgent.c from the ion FAQ.
Is it possible to use the C program (with little changes) and link it with cicq so that above will work? If so
how is it done? Or is there a better solution?
(Continue reading)

Tiger!P | 5 Oct 20:01

Re: urgency hint flag

On Thu, Oct 05, 2006 at 12:41:30PM +0200, schleiereule@... wrote:
> On Thu, 05.10, Petr Pisar wrote:
> > Cicq is not X11 related software.
> Perhaps there should be a flag in configure script, something like
> --with-x. But I don't know how this could be realized because I am not
> familiar with coding.

No, that is not a good idea. See below.

> >If you want to use urgency hinting on
> >incoming message, you could call the program from sound or action file.
> The file "eventmanager.cc" might be a good choice.

[cut pseudo code in centericq source]

This is not what Petr meant with the action file. He meant to use the
external actions as described in the README that comes with the release
of centericq to use a seperate program.

> I think this should do the job. The function set_urgency_hint() should
> be similar to the main function in urgent.c from the ion FAQ.

If you would compile the urgent.c as described in the file, you could
use that programe to be called (via an external action) when a message
is received.

Create an ~/.centericq/external and put the following in the file (not
tested)
---8<---
%action         Urgent
(Continue reading)

Peter Holmberg | 6 Oct 10:45
Picon

bug?

Hello
The problem occurs when im trying to connect to msn
I run Debian stable (sarge)
centericq 4.20.0
its the cvs snapshot 20060929

Program received signal SIGSEGV, Segmentation 
fault.?????????????????????????????????????????????????????????????????????????0x4029e344 
in std::string::c_str () from /usr/lib/libstdc++.so.5q quit
(gdb) bt
#0 0x4029e344 in std::string::c_str () from /usr/lib/libstdc++.so.5
#1 0x0827dd5d in MSN::decimalFromString ()
#2 0x0826d1ed in MSN::NotificationServerConnection::handleIncomingData ()
#3 0x08262a73 in MSN::Connection::dataArrivedOnSocket ()
#4 0x08139cb5 in msnhook::main ()
#5 0x0805a927 in centericq::idle ()
#6 0x080e8379 in icqface::menuidle ()
#7 0x081ab66d in ktool::verticalmenu::open ()
#8 0x0818fdd9 in ktool::treeview::open ()
#9 0x080d05b6 in icqface::mainloop ()
#10 0x08050ce6 in centericq::mainloop ()
#11 0x08050387 in centericq::exec ()
#12 0x080f1887 in main ()
(gdb)
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

(Continue reading)

Stéphane Bisinger | 6 Oct 17:37
Picon
Favicon

Re: bug?


--- Peter Holmberg <peter.holmberg@...> wrote:

> Hello
> The problem occurs when im trying to connect to msn

Did you try the patches I talked about a couple of
weeks ago?

Stéphane

	
	
		
___________________________________________________________ 
All new Yahoo! Mail "The new Interface is stunning in its simplicity and ease of use." - PC Magazine 
http://uk.docs.yahoo.com/nowyoucan.html
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

Tiger!P | 6 Oct 18:12

Re: bug?

On Fri, Oct 06, 2006 at 10:45:38AM +0200, Peter Holmberg wrote:
> Hello

Hello Peter,

> The problem occurs when im trying to connect to msn
> I run Debian stable (sarge)
> centericq 4.20.0
> its the cvs snapshot 20060929

The cvs snapshot from centericq.de? that should be version 4.21.0 . But
I would suggest that you try to use the debian version of 4.21.0 which
has some patches.
The snapshot from centericq.de does not have any patches applied, so MSN
might be a problem.

[cut the gdb bt]
Thank you for the backtrace, but I'm not able to do anything with it :-(

Tiger!P
--

-- 
A random quote:
Als de mens geen zintuig zou hebben voor de regen, zou men er ook niet 
over zeuren.
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/

(Continue reading)

schleiereule | 9 Oct 12:55
Picon

Re: urgency hint flag

Oh! Life could be so easy! This works perfectly. Finally I have found a usable jabber client.

Thanks a lot!
Sibel
--

-- 
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer
_______________________________________________
Cicq mailing list
Cicq@...
http://mailman.linuxpl.org/mailman/listinfo/cicq
Questions? Check the FAQ first: http://centericq.de/faq/


Gmane