hi all,
i tried to use the presence module "pa.so" (without jabber support or xcap authorization
)
but i don't understand which functionalities
have been fixed and which are currently unstable...

i'm using eyebeam and i follow these "
Configuring Presence Agent" instructions:
http://pals.internet2.edu/trials/pic-ser/eyeBeamInstall.html

this is part of my ser.cfg:

if (method=="PUBLISH") {
   if (!t_newtran()) {
      log(1,"ser.cfg: PUBLISH: t_newtran error\n");
      sl_reply_error();
   };
   log(1,"ser.cfg: PUBLISH: handle_publish\n");
   handle_publish("registrar");
   break;
} else if (method=="SUBSCRIBE") {
   if (!t_newtran()) {
      log(1,"ser.cfg: SUBSCRIBE: newtran error\n");
      sl_reply_error();
   };
   log(1,"ser.cfg: SUBSCRIBE: handle_subscription\n");
   handle_subscription("registrar");
   break;
};

is it correct?

i would like to see my contacts to eventually change state... is it possible?
thank you!