::blink:: Let me guess. The subscribe and subscribed callbacks are what I'm looking for? I was in Net::Jabber::Protocol but I was looking in roster and subscription stuff for handling subscription requests, not the presence. I'll give it a shot. Thanks!
-Mike -----Original Message----- From: Matt Mankins [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 07, 2003 12:18 PM To: '[EMAIL PROTECTED]' Subject: Re: [JDEV] Perl Net::Jabber roster handling (perl client authorizingsubscription) > haven't seen anything that looks clearly like a method to authorize (or even > recognize subscription requests). I'm sure I could get something to work the > hard way, but there has to be some callback somewhere for it, since there > is for everything else. Am I nuts? Am I blind? Probably both. :) Try: $c->SetPresenceCallBacks( 'available' => \&presence_available, 'unavailable' => \&presence_unavailable, 'subscribe' => \&presence_subscribe, 'unsubscribe' => \&presence_unsubscribe, 'subscribed' => \&presence_subscribed, 'unsubscribed' => \&presence_unsubscribed, ); You might also find it useful to have a lower level message/iq callback. Sometimes they get in each other's way. Most of the meat for Net::Jabber is in the Net::Jabber::Protocol perldoc, so that's probably why you thought you were blind reading Net::Jabber docs. :) Hope that helps. Matt Mankins _______________________________________________ jdev mailing list [EMAIL PROTECTED] http://mailman.jabber.org/listinfo/jdev _______________________________________________ jdev mailing list [EMAIL PROTECTED] http://mailman.jabber.org/listinfo/jdev
