-
miconda committed revision 5962 to the Kamailio (OpenSER) SIP server SVN repository, changing 1 files.
2009-12-31 16:53:09 UTC by miconda
-
miconda committed revision 5961 to the Kamailio (OpenSER) SIP server SVN repository, changing 1 files.
2009-12-31 16:47:30 UTC by miconda
-
henningw committed revision 5960 to the Kamailio (OpenSER) SIP server SVN repository, changing 2 files.
2009-12-30 22:55:43 UTC by henningw
-
carstenbock committed revision 5959 to the Kamailio (OpenSER) SIP server SVN repository, changing 3 files.
2009-12-16 16:40:00 UTC by carstenbock
-
I can confirm that setting the mentioned parameter fixes the usrloc insertion.
From the location table, parameter set to 0:
| testaccount.33 | 2009-12-10 16:47:21 | sip:Testaccount.33@XXXXX:5060 | sipp running on XXXXX
with parameter set to 1:
| Testaccount.33 | 2009-12-10 16:48:10 | sip:Testaccount.33@XXXXXX:5060 | sipp running on XXXXX...
2009-12-10 13:56:14 UTC by henningw
-
There is a parameter to control case sensitivity:
http://kamailio.org/docs/modules/1.5.x/registrar.html#id2491689.
2009-12-10 09:03:22 UTC by nobody
-
I can confirm that usrloc stores the name in lowercase, even if its in upper case in the subscriber table. This is probably a bug.
For the other thing, the reported case sensitivity in the query against the location table, this is defined from the database that is used. So if you would e.g. switch to mysql, all your queries would be case insensitive. So i changed the bug title to be mirror...
2009-12-10 08:54:37 UTC by henningw
-
Just for further information, here is the logic in the main route of the kamailio script that is causing the problem, I thought I would add it in so you can see where I am trying to execute the update. The actual authentication is processed prior to this section.
if (is_method("REGISTER"))
{
if (!save("location")) {
sl_reply_error();.
2009-12-10 00:38:57 UTC by asgaroth000
-
According to RFC 3261 BNF grammar, the username part of a SIP URI is case sensitive, this is:
sip:alice@domain.org != sip:Alice@domain.org
but domain part is case insensitive so:
sip:alice@domain.org == sip:alice@DOMain.ORG
So if 'usrloc' forces lowcase that's not correct (IMHO).
2009-12-10 00:19:36 UTC by ibc_sf
-
I am trying to integrate Kamailio (1.5.3-notls) into our existing
database structure using a view for the subscriber table and using the
location table to store the registration information.
I am successfully able to register a phone using this method.
One of our requirements is to set an "outboundproxy" and
"outboundproxyport" parameter in the location table for a particular sip...
2009-12-10 00:11:38 UTC by asgaroth000