Andrey,
Thank you for the advice. The problem is that I want ONE alias to be able to
call ring two registered SIP URI's. When I try to add the second alias with
the same name but pointing to a different contact, I get an error that says
"error: overlap with exisiting alias".
The commands I enter are as follows:
serctl alias add 004889(a)sip.tcto.net sip:004100@sip.tcto.net <--this works
serctl alias add 004889(a)sip.tcto.net sip:004990@sip.tcto.net <--error
Leo P.
-----Original Message-----
From: serusers-bounces(a)iptel.org [mailto:serusers-bounces@lists.iptel.org] On
Behalf Of Andrey Kouprianov
Sent: Thursday, January 26, 2006 1:41 AM
To: serusers(a)lists.iptel.org
Subject: Re: [Serusers] Forking based on URI. Please help.
Hi,
I think you would better add an alias than a new user.
serctl alias add <alias> <uri>
On 1/26/06, Leo <leo(a)ltcjp.com> wrote:
I figured it out myself. It is an interesting
solution. The solution is
NOT
to do anything at all with ser.cfg. Instead add a
permanent user location
for 004888 in the 'location' table. This can be done with serctl ul add. I
then looked at the record with MySQL and I modified the 'contact' column
to
point to sip:004990@sip.tcto.net:49300 and then I
added another user
location for 004888 this time pointing to sip:004100@sip.tcto.net:49200.
The
proxy seems to fork beautifully.
It seems that a permanent user location is added by setting the flag field
of the location table, but I cannot find information about the flag column
of this table and what it is used for.
I will post a question to the mailing list.
-----Original Message-----
From: serusers-bounces(a)iptel.org [mailto:serusers-bounces@lists.iptel.org] On
Behalf Of Leo
Sent: Monday, January 23, 2006 3:39 PM
To: serusers(a)lists.iptel.org
Subject: [Serusers] Forking based on URI. Please help.
I am running ser 0.9.4 on FC4 with MySQL and all is working.
I want to implement forking based on SIP URI.
When someone dials 004888(which is a SIP URI just used for this matching),
I
want to fork the call to 004990 and 004100 in
parallel.
So I put this in my ser.cfg:
if (uri==myself)
{
if (uri=~"^sip:004888@~*")
{
rewriteuri("sip:004990@sip.tcto.net:49300");
append_branch("sip:004100@sip.tcto.net:49200");
route(1);
break;
};
};
Route[1]
{
if (!t_relay())
{
sl_reply_error();
};
}
Can anyone tell me what I am doing wrong? Or point me to some
documentation
on forking. I have searched ONSIP and module
documentation already.
Leo Papadopoulos
leo(a)ltcjp.com
_______________________________________________
Serusers mailing list
serusers(a)lists.iptel.org
http://lists.iptel.org/mailman/listinfo/serusers
_______________________________________________
Serusers mailing list
serusers(a)lists.iptel.org
http://lists.iptel.org/mailman/listinfo/serusers
_______________________________________________
Serusers mailing list
serusers(a)lists.iptel.org
http://lists.iptel.org/mailman/listinfo/serusers