Hi Javier, Thanks for your information. I need to make SEP to send/proxy the message to my presence server. SEP and presence server are physically different entities. Would be of greater help if you could let me know how can i specify the IP address of my presence server in SEP so that the presence specific messages reaching SEP gets forwarded to my presence server.
Thanks and Regards, Senthil Kumar,
________________________________
From: Javier Ramirez [mailto:jvr_78@yahoo.com.ar] Sent: 25 September 2006 15:03 To: Nachimuthu,SK,Senthil,XSD4C C Subject: Re: [Serusers] Presence
if (method=="SUBSCRIBE") {
if (!t_newtran()) {
sl_reply_error();
};
handle_subscription("registrar");
};
if (method=="PUBLISH") {
if (!t_newtran()) {
log(1, "newtran error\n");
sl_reply_error();
};
handle_publish("registrar");
break;
};
----- Original Message ----- From: senthil.nachimuthu@bt.com To: serusers@lists.iptel.org Sent: Monday, September 25, 2006 8:28 AM Subject: [Serusers] Presence
Hi, I want to configure SER file://ser/about 0.9.6 in such a way that It can proxy presence messages(SUBSCRIBE,PUBLISH) to presence server. Can you let me know how can I do that?
Thanks and Regards, Senthil Kumar, Presence Capability, BT-Service Execution Platform, B62-MH,Orion Building,Adastral Park,Ipswich Work:+44 (0)1473 605 668 Mobile:+44 (0)7772287447
__________ NOD32 1.1768 (20060922) Information __________ This message was checked by NOD32 antivirus system. http://www.eset.com
________________________________
_______________________________________________ Serusers mailing list Serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers __________ NOD32 1.1768 (20060922) Information __________ This message was checked by NOD32 antivirus system. http://www.eset.com
You just use rewritehostport for the messages you want to forward, then let the message go to t_relay(). g-)
senthil.nachimuthu@bt.com wrote:
Hi Javier, Thanks for your information. I need to make SEP to send/proxy the message to my presence server. SEP and presence server are physically different entities. Would be of greater help if you could let me know how can i specify the IP address of my presence server in SEP so that the presence specific messages reaching SEP gets forwarded to my presence server.
Thanks and Regards, Senthil Kumar,
*From:* Javier Ramirez [mailto:jvr_78@yahoo.com.ar] *Sent:* 25 September 2006 15:03 *To:* Nachimuthu,SK,Senthil,XSD4C C *Subject:* Re: [Serusers] Presence
if (method=="SUBSCRIBE") {
if (!t_newtran()) { sl_reply_error(); }; handle_subscription("registrar");
};
if (method=="PUBLISH") {
if (!t_newtran()) { log(1, "newtran error\n"); sl_reply_error(); }; handle_publish("registrar"); break;
};
----- Original Message ----- *From:* senthil.nachimuthu@bt.com <mailto:senthil.nachimuthu@bt.com> *To:* serusers@lists.iptel.org <mailto:serusers@lists.iptel.org> *Sent:* Monday, September 25, 2006 8:28 AM *Subject:* [Serusers] Presence Hi, I want to configure _SER_ <file://ser/about> 0.9.6 in such a way that It can proxy presence messages(SUBSCRIBE,PUBLISH) to presence server. Can you let me know how can I do that? Thanks and Regards, Senthil Kumar, Presence Capability, BT-Service Execution Platform, B62-MH,Orion Building,Adastral Park,Ipswich Work:+44 (0)1473 605 668 Mobile:+44 (0)7772287447 __________ NOD32 1.1768 (20060922) Information __________ This message was checked by NOD32 antivirus system. http://www.eset.com ------------------------------------------------------------------------ _______________________________________________ Serusers mailing list Serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers __________ NOD32 1.1768 (20060922) Information __________ This message was checked by NOD32 antivirus system. http://www.eset.com
Serusers mailing list Serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Hi all
I need to know the changes in configuration of ser if I want that a single server can serve more than one domain.
Right now I am changing in following lines but it server only one domain at a time:
if (method=="REGISTER") {
if (!www_authorize("ims.de", "subscriber"))
{
www_challenge("ims.de", "0");
break;
};
save("location");
break;
};
Thanks in anticipation
Kamal Mann
You need to edit ser.cfg with the following parameters:
modparam("usrloc", "use_domain", 1) modparam("registrar", "use_domain", 1) modparam("usrloc", "timer_interval", 30)
and you have to live blank the domain in the www_authorize and www_challenge parameters so that it will work for every domain. In the domain table you have to add every domain served too. Also add the alias=every_domain_you_want_ser_to_listen_to in ser.cfg file.
Regards, Ricardo.
Kamal.Mann@t-systems.com wrote:
Hi all
I need to know the changes in configuration of ser if I want that a single server can serve more than one domain.
Right now I am changing in following lines but it server only one domain at a time:
/if (method=="REGISTER") {/
/ /
/ if (!www_authorize("ims.de", "subscriber")) /
/ {/
/ www_challenge("ims.de", "0");/
/ break;/
/ };/
/ /
/ save("location");/
/ break;/
/ };/
Thanks in anticipation
Kamal Mann
Serusers mailing list Serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers