[OpenSIPS-Users] UUID value in usr_preferences

2010-08-13 Thread David J.
  List,

what value should I be using in the UUID field in the usr_preferences table?

I was trying to manually insert into the table, and got stumbled by this 
field, the rest seem to make sense.

Thx.



___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] UUID value in usr_preferences

2010-08-13 Thread David J.

 Thx...

Any idea what the purpose of the field is?



On 8/13/10 6:39 AM, Pasan Meemaduma wrote:

Hi David,

UUID field is not mandatory. you can just insert other fields without 
UUID.


It could use as a reference key if you want.

+---+--++---+---+--+---+-+
| id| uuid | username   | domain| attribute | type | value | 
last_modified   |

+---+--++---+---+--+---+-+
| 14497 |  | xxx |  | timeout   |0 | 50| 2000-03-02 
16:21:59 |




*From:* David J. da...@styleflare.com
*To:* OpenSIPS users mailling list users@lists.opensips.org
*Sent:* Friday, August 13, 2010 15:57:28
*Subject:* [OpenSIPS-Users] UUID value in usr_preferences

  List,

what value should I be using in the UUID field in the usr_preferences 
table?


I was trying to manually insert into the table, and got stumbled by this
field, the rest seem to make sense.

Thx.



___
Users mailing list
Users@lists.opensips.org mailto:Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] db_aliases lookup question. (OpenSIPS LIVE VM)

2010-08-13 Thread David J.
  I am playing around with the LIVE VM, I tried adding a DID alias to 
the database, but it seems when I send an INVITE to the Alias I get No 
pstn calls. back. Shouldn't the script know to use usrloc rather than 
dialplan if the alias is found?

Thanks.




___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] UUID value in usr_preferences

2010-08-13 Thread Jeff Pyle
David,

As Pasan mentioned, it can be used for the query key for whatever value you're 
pulling.  In my network, the uuid could be a trunk name if I'm storing trunk 
attributes, a trunk group number if I'm storing data about that group, or a 
phone number to hold call forwarding or other information about that phone 
number...

There are several ways in the AVP environment to key values.  I use uuid rather 
than username or username/domain.


- Jeff

On Aug 13, 2010, at 8:08 AM, David J. wrote:

Thx...

Any idea what the purpose of the field is?



On 8/13/10 6:39 AM, Pasan Meemaduma wrote:
Hi David,

UUID field is not mandatory. you can just insert other fields without UUID.

It could use as a reference key if you want.

+---+--++---+---+--+---+-+
| id| uuid | username   | domain| attribute | type | value | 
last_modified   |
+---+--++---+---+--+---+-+
| 14497 |  | xxx |  | timeout   |0 | 50| 2000-03-02 16:21:59 |



From: David J. da...@styleflare.commailto:da...@styleflare.com
To: OpenSIPS users mailling list 
users@lists.opensips.orgmailto:users@lists.opensips.org
Sent: Friday, August 13, 2010 15:57:28
Subject: [OpenSIPS-Users] UUID value in usr_preferences

  List,

what value should I be using in the UUID field in the usr_preferences table?

I was trying to manually insert into the table, and got stumbled by this
field, the rest seem to make sense.

Thx.



___
Users mailing list
Users@lists.opensips.orgmailto:Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users



___
Users mailing list
Users@lists.opensips.orgmailto:Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


___
Users mailing list
Users@lists.opensips.orgmailto:Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] using OpenSIPS as outbound proxy

2010-08-13 Thread S . Millard
Hi Bogdan,

I have an VOIP account with a provider in canada and i am using this account 
when traveling overseas. Some ISPs in the middle east are blocking UDP port 
5060 causing the registration issue with my provider. I found a temporary 
solution with a free outbound proxy (free.sipout.com:port) that went down 
lately. If you don't mind, my question is : how this free service work and is 
it possible for me to use opensip as my own outbound roxy and how to configure 
it using you liveDVD ?

Thanks in advance and please excuse my novice question.

Millard


___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Route timeout

2010-08-13 Thread Wesley Volcov
Hello All,

I've configured the params as fallow:
modparam(tm, fr_timer, 2)
modparam(tm, fr_inv_timer, 10)

But, after some tests I'm seeing that, when the destination gateway reply a
100 TRYING, the first timeout(fr_timer) is 'disabled', and the call will
enter in failure route just if there is no 200 OK in the time configured in
fr_inv_time.
What I need, is if the time between de 100 TRYING and 180 RING is more than
2 seconds, the call will enter in failure route.

How can I do that?

Regards,


On 12 August 2010 23:33, Pasan Meemaduma pasan...@ymail.com wrote:

 Hi Wesley,

 Hope this is what you seeking.

 modparam(tm, fr_inv_timer_avp, $avp(s:timeout))

 and you can load different timeout to avp using like below, this is per
 username

 avp_db_load($ru/username,$avp(s:timeout));

 and you can trigger failure route as follow,

  t_on_failure(1);

 you can use this in your route to trigger next failure route.


 failure_route[1]
 {
 #alternate route
 }

 --
 *From:* Wesley Volcov wesleyvol...@gmail.com
 *To:* OpenSIPS users mailling list users@lists.opensips.org
 *Sent:* Friday, August 13, 2010 1:17:43
 *Subject:* [OpenSIPS-Users] Route timeout

 Hello All,

 Is there any way to configure a timeout per route?
 What I mean is: If my first route doesn't send a reply(100 Trying or any
 other) in some seconds, the opensips sends the the call to failure route,
 and then I use failure route to try another route. How can I do that?

 Regards,

 --
 Wesley Volcov
 Email: wesleyvol...@gmail.com
 Messenger: vol...@live.com
 Mobile: +55 11 9989-5348
 Website: http://volcov.blogspot.com




-- 
Wesley Volcov
Email: wesleyvol...@gmail.com
Messenger: vol...@live.com
Mobile: +55 11 9989-5348
Website: http://volcov.blogspot.com
___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] You can Blink now on Linux

2010-08-13 Thread Adrian Georgescu
Blink Qt Public Beta for Linux

This is the first public beta release of Blink Qt. Beta merely means that not 
all features from the roadmap are yet implemented. The ones implemented are 
suppose to be working properly and are stable enough for daily reliable use.

Under development are now most of the features provided by OpenSIPS Presence 
Agent, including XCAP authorization and RLS.

Release Notes

http://www.ag-projects.com/content/view/661/201/

Kind regards,
Adrian Georgescu___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users