Re: [Freeswitch-users] Skypiax, Skype endpoint and trunk, robustness patch

2009-08-15 Thread Seven Du
Great works. I tested and reported results in jira.

And as I noticed you removed the sequential line hunting methods.  
Though I don't use that I think someone else may need that. Think  
about the guy want skypeout accounts in a round robin manner, others  
might use that in a priority manner, that means sequential search. So  
it maybe a good idea to add it back. At the same time I think ANY is  
not a good name for that method, so named it SEQ maybe better. Then  
ANY can be removed later by announcing here or keep there for  
backwards compatibility.

Thank you very much for merging in the sk list with statistic patch,  
and for the other two features, I found it's a little hard to split  
codes, so, can make two jira, and upload one patch file?

Two features are:

continue load on fail: make sure the module continue load even it  
failed to talk to a skype instance
auto skype user: get the user name by the returned CURRENTUSERHANDLE  
other than  from the config xml, for easier config.

Thanks.

-7-

On Aug 15, 2009, at 1:43 AM, Giovanni Maruzzelli wrote:
 Hi FreeSWITCHers,

 all the users of mod_skypiax are kindly requested to test the svn  
 trunk 14519.

 It contains a lot of changes meant to add stability and robustness,
 toward a production environment.

 Let me know how your feelings, and please add to the Jira any possible
 bug/issue/etc.

 Thanks to you all,

 -giovanni



 Sincerely,

 Giovanni Maruzzelli

 Cell : +39-347-2665618

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Skypiax, Skype endpoint and trunk, robustness patch

2009-08-15 Thread Giovanni Maruzzelli
On Sat, Aug 15, 2009 at 5:41 PM, Seven Dudujinf...@gmail.com wrote:
 And as I noticed you removed the sequential line hunting methods.

Because was broken. So, I aliased it to the RR.
If you think it can be useful, add a Jira for it

 Thank you very much for merging in the sk list with statistic patch,
Thanks to you for sending the patch! I've only added the callflow of
the skype client to it


 Two features are:

 continue load on fail: make sure the module continue load even it
 failed to talk to a skype instance

h, I'm too conservative for this one: I prefer that if you
configured a skype instance, you expect it to work, so the module must
fail if there is not such instance

 auto skype user: get the user name by the returned CURRENTUSERHANDLE
 other than  from the config xml, for easier config.

the username returned by CURRENTUSERHANDLE is checked against the
config file because is the only way you can associate interface_name
with its related Skype client instance on Windoz (no multiple X
servers there).

Thanks a lot for all your efforts!!!

-giovanni





 On Aug 15, 2009, at 1:43 AM, Giovanni Maruzzelli wrote:
 Hi FreeSWITCHers,

 all the users of mod_skypiax are kindly requested to test the svn
 trunk 14519.

 It contains a lot of changes meant to add stability and robustness,
 toward a production environment.

 Let me know how your feelings, and please add to the Jira any possible
 bug/issue/etc.

 Thanks to you all,

 -giovanni



 Sincerely,

 Giovanni Maruzzelli

 Cell : +39-347-2665618

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Skypiax, Skype endpoint and trunk, robustness patch

2009-08-15 Thread Seven Du

On Aug 16, 2009, at 12:02 AM, Giovanni Maruzzelli wrote:
 On Sat, Aug 15, 2009 at 5:41 PM, Seven Dudujinf...@gmail.com wrote:
 And as I noticed you removed the sequential line hunting methods.

 Because was broken. So, I aliased it to the RR.
 If you think it can be useful, add a Jira for it


Ok, as you think it's broken, better to leave it as is.
 Thank you very much for merging in the sk list with statistic patch,
 Thanks to you for sending the patch! I've only added the callflow of
 the skype client to it

I think maybe you merged in an old version of the patch, the last  
should be skype_status_new1.diff, which I added one more statistic  
line and the unsigned long should be uint32_t I think. however, I can  
add another patch if you think it's useful. Oh, one more, it also set  
channel name to skypiax/RR/sk_1/other_skype_name for easy check in log. 
(As I also would like to see sofia/external/ to be sofia/gateway/ 
gw/ :) ).


 Two features are:

 continue load on fail: make sure the module continue load even it
 failed to talk to a skype instance

 h, I'm too conservative for this one: I prefer that if you
 configured a skype instance, you expect it to work, so the module must
 fail if there is not such instance


One of the reason I think it's useful is one can configure to load  
everything on server boot time.  I run two skypiax servers, one can  
start 20 instances in batch without any problem but the other only  
starts 50%, then I need manually start them over and over until I  
confirmed all works with client or skypiax_auth. The two servers are  
not in the same datacenter but all have public ip. Once it started  
working we never never experienced a skype instance stoped working.  
But I experienced that kill a skype instance immediately caused  
skypiax core dump.

Sure it might cause other bugs even it is configured to false by  
default. I gona merge in my branch in case others using that.

 auto skype user: get the user name by the returned CURRENTUSERHANDLE
 other than  from the config xml, for easier config.

 the username returned by CURRENTUSERHANDLE is checked against the
 config file because is the only way you can associate interface_name
 with its related Skype client instance on Windoz (no multiple X
 servers there).


It by default disabled so I guess nothing will break.

 Thanks a lot for all your efforts!!!

 -giovanni





 On Aug 15, 2009, at 1:43 AM, Giovanni Maruzzelli wrote:
 Hi FreeSWITCHers,

 all the users of mod_skypiax are kindly requested to test the svn
 trunk 14519.

 It contains a lot of changes meant to add stability and robustness,
 toward a production environment.

 Let me know how your feelings, and please add to the Jira any  
 possible
 bug/issue/etc.

 Thanks to you all,

 -giovanni



 Sincerely,

 Giovanni Maruzzelli

 Cell : +39-347-2665618

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread Peder
I created torrents for all of the presentations from ClueCon 2009 and have
them seeded on 2-3 machines.  If you want the torrents, email me off list.

Peder



___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread Gabriel Gunderson
On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com wrote:
 If you want the torrents, email me off list.

Why off list?  Isn't the point of torrents to have more people sharing
in the load?

Gabe

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] Audio only in one direction when calling FS from Skype

2009-08-15 Thread Scott Torr
Freeswitch-users,

I'm very new to Freeswitch and have installed the following in VMware
Server 2.0.1


ubuntu-8.04.3-server-i386.iso (udate/upgrade)
skype-debian_2.0.0.72-1_i386.deb
FreeSWITCH Version 1.0.trunk (14492)
mod_skypiax


Using the FS wiki to install/setup and making small changes to default
XML configs as required.


(phone)--(SIP ATA)--(FS)--(MS-Skype client | Skype 'online number' via
PSTN)


The MS-Skype client is on the same local network as FS.


I can make calls from the phone to the Skype Client and this works OK.
Audio path OK: phone--FS--Skype


But ,if I call from the MS-Skype client to the phone I hear no audio
from the MS-Skype client.  

Audio path: phone--FS--Skype

Likewise a call from a Skype 'online number' can hear for example the
default 5000 ivr but the DTMF tones from the PSTN phone are not detected
by FS when action application=start_dtmf / is used.



Any suggestions or pointers in the right direction would be much
appreciated. 

Most likely I have overlook something very obvious to others.


Thanks in advance,
Scott Torr 






___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] mod nibblebill question

2009-08-15 Thread Manu
Hello,

If we use heartbeat option on in nibblebill.conf.xml does that mean ODBC
database table will be updated every microsecond or any other interval we
set?

If this is so and there are many users (Lets say 500 users) are connected to
FS wouldn't it create locking issues in DB?

Regards,

Manoj
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread João Mesquita
I am interested and would also seed to the community

On 8/15/09, Gabriel Gunderson g...@gundy.org wrote:
 On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com wrote:
 If you want the torrents, email me off list.

 Why off list?  Isn't the point of torrents to have more people sharing
 in the load?

 Gabe

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


-- 
Sent from my mobile device

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Question about an ESL function

2009-08-15 Thread João Mesquita
Recv will lock the calling thread until it gets an event or gets
disconnected while recvtimed will return controll when event received
or timer expires. Whatever comes fisrt.

On 8/15/09, Jean-Marc Hyppolite hyppolit...@yahoo.com wrote:
 Hello,

 I would like to know the purpose of the ESL function named recvEventTimed.

 Thank you for your help.


   __
 Be smarter than spam. See how smart SpamGuard is at giving junk email the
 boot with the All-new Yahoo! Mail.  Click on Options in Mail and switch to
 New Mail today or register for free at http://mail.yahoo.ca

-- 
Sent from my mobile device

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] mod nibblebill question

2009-08-15 Thread Michael Jerris
increments are in seconds, not microseconds.  In IMS for example I  
think it defaults to 20 or 30 second nibbles, depending on your  
tolerances and billing increments something much larger may even make  
sense.  Doing billing in sub second increments doesn't make a lot of  
sense to me.  Remember that this is just keeping track of available  
credit so if there are multiple calls at the same time you won't go  
over balance.  Everything is still reconciled at hang up, so if you  
have a bit too much reserved from your nibble the worst that could  
happen is it could cut off calls a little too early when multiple  
calls are in progress on the same account.

Mike

On Aug 15, 2009, at 3:33 PM, Manu wrote:

 Hello,

 If we use heartbeat option on in nibblebill.conf.xml does that mean  
 ODBC database table will be updated every microsecond or any other  
 interval we set?

 If this is so and there are many users (Lets say 500 users) are  
 connected to FS wouldn't it create locking issues in DB?

 Regards,

 Manoj

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Question about an ESL function

2009-08-15 Thread Jean-Marc Hyppolite
Thanks a lot.

--- On Sat, 8/15/09, João Mesquita jmesqu...@gmail.com wrote:


From: João Mesquita jmesqu...@gmail.com
Subject: Re: [Freeswitch-users] Question about an ESL function
To: freeswitch-users@lists.freeswitch.org
Received: Saturday, August 15, 2009, 4:49 PM


Recv will lock the calling thread until it gets an event or gets
disconnected while recvtimed will return controll when event received
or timer expires. Whatever comes fisrt.

On 8/15/09, Jean-Marc Hyppolite hyppolit...@yahoo.com wrote:
 Hello,

 I would like to know the purpose of the ESL function named recvEventTimed.

 Thank you for your help.


       __
 Be smarter than spam. See how smart SpamGuard is at giving junk email the
 boot with the All-new Yahoo! Mail.  Click on Options in Mail and switch to
 New Mail today or register for free at http://mail.yahoo.ca

-- 
Sent from my mobile device

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



  __
Ask a question on any topic and get answers from real people. Go to Yahoo! 
Answers and share what you know at http://ca.answers.yahoo.com___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread Jay Binks
I'd also seed such a torrent.

Please send the link :)



On 16/08/2009, at 6:34, João Mesquita jmesqu...@gmail.com wrote:

 I am interested and would also seed to the community

 On 8/15/09, Gabriel Gunderson g...@gundy.org wrote:
 On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com  
 wrote:
 If you want the torrents, email me off list.

 Why off list?  Isn't the point of torrents to have more people  
 sharing
 in the load?

 Gabe

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch- 
 users
 http://www.freeswitch.org


 -- 
 Sent from my mobile device

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch- 
 users
 http://www.freeswitch.org

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread Diego Viola
Upload the torrent files in http://files.freeswitch.org ;)

On Sat, Aug 15, 2009 at 5:43 PM, Jay Binks jaybi...@gmail.com wrote:

 I'd also seed such a torrent.

 Please send the link :)



 On 16/08/2009, at 6:34, João Mesquita jmesqu...@gmail.com wrote:

  I am interested and would also seed to the community
 
  On 8/15/09, Gabriel Gunderson g...@gundy.org wrote:
  On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com
  wrote:
  If you want the torrents, email me off list.
 
  Why off list?  Isn't the point of torrents to have more people
  sharing
  in the load?
 
  Gabe
 
  ___
  FreeSWITCH-users mailing list
  FreeSWITCH-users@lists.freeswitch.org
  http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
  UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
  users
  http://www.freeswitch.org
 
 
  --
  Sent from my mobile device
 
  ___
  FreeSWITCH-users mailing list
  FreeSWITCH-users@lists.freeswitch.org
  http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
  UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
  users
  http://www.freeswitch.org

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread Peder
I don’t have access to do that or I would.  That’s why I offered to email
them to whoever wants them.I did send them to Brian earlier, but he must
have some sort of life outside of FreeSWITCH  because he hasn’t put them
there yet.  ;-)

 

 

 

From: freeswitch-users-boun...@lists.freeswitch.org
[mailto:freeswitch-users-boun...@lists.freeswitch.org] On Behalf Of Diego
Viola
Sent: Saturday, August 15, 2009 4:47 PM
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] ClueCon2009 Torrents

 

Upload the torrent files in http://files.freeswitch.org ;)

On Sat, Aug 15, 2009 at 5:43 PM, Jay Binks jaybi...@gmail.com wrote:

I'd also seed such a torrent.

Please send the link :)




On 16/08/2009, at 6:34, João Mesquita jmesqu...@gmail.com wrote:

 I am interested and would also seed to the community

 On 8/15/09, Gabriel Gunderson g...@gundy.org wrote:
 On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com
 wrote:
 If you want the torrents, email me off list.

 Why off list?  Isn't the point of torrents to have more people
 sharing
 in the load?

 Gabe

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 users
 http://www.freeswitch.org


 --
 Sent from my mobile device

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 users
 http://www.freeswitch.org

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

 

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread João Mesquita
I am already seeding from here.

jmesquita

On Sat, Aug 15, 2009 at 7:34 PM, Peder pe...@networkoblivion.com wrote:

  I don’t have access to do that or I would.  That’s why I offered to email
 them to whoever wants them.I did send them to Brian earlier, but he must
 have some sort of life outside of FreeSWITCH  because he hasn’t put them
 there yet.  ;-)







 *From:* freeswitch-users-boun...@lists.freeswitch.org [mailto:
 freeswitch-users-boun...@lists.freeswitch.org] *On Behalf Of *Diego Viola
 *Sent:* Saturday, August 15, 2009 4:47 PM
 *To:* freeswitch-users@lists.freeswitch.org
 *Subject:* Re: [Freeswitch-users] ClueCon2009 Torrents



 Upload the torrent files in http://files.freeswitch.org ;)

 On Sat, Aug 15, 2009 at 5:43 PM, Jay Binks jaybi...@gmail.com wrote:

 I'd also seed such a torrent.

 Please send the link :)




 On 16/08/2009, at 6:34, João Mesquita jmesqu...@gmail.com wrote:

  I am interested and would also seed to the community
 
  On 8/15/09, Gabriel Gunderson g...@gundy.org wrote:
  On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com
  wrote:
  If you want the torrents, email me off list.
 
  Why off list?  Isn't the point of torrents to have more people
  sharing
  in the load?
 
  Gabe
 
  ___
  FreeSWITCH-users mailing list
  FreeSWITCH-users@lists.freeswitch.org
  http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
  UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
  users
  http://www.freeswitch.org
 
 
  --
  Sent from my mobile device
 
  ___
  FreeSWITCH-users mailing list
  FreeSWITCH-users@lists.freeswitch.org
  http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
  UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
  users
  http://www.freeswitch.org

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org



 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] BLF and Openzap

2009-08-15 Thread Terry Moore-Read
Is it possible to have a sip phone show blf status for a phone which
is connected to an openzap port ?

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread Karl Vesterling


Torrent philez are 5mall...  I'd think it woud be a simple matter to  
attach them to the e-mail you're sending to the list eh?

I'd also be interested in seeding them...


Best Regards,
Karl J. Vesterling
k...@ken-ton.com
202-461-3231 x0

On Aug 15, 2009, at 6:37 PM, João Mesquita wrote:


I am already seeding from here.

jmesquita

On Sat, Aug 15, 2009 at 7:34 PM, Peder pe...@networkoblivion.com  
wrote:
I don’t have access to do that or I would.  That’s why I offered to  
email them to whoever wants them.I did send them to Brian  
earlier, but he must have some sort of life outside of FreeSWITCH   
because he hasn’t put them there yet.  ;-)





From: freeswitch-users-boun...@lists.freeswitch.org [mailto:freeswitch-users-boun...@lists.freeswitch.org 
] On Behalf Of Diego Viola

Sent: Saturday, August 15, 2009 4:47 PM


To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] ClueCon2009 Torrents


Upload the torrent files in http://files.freeswitch.org ;)

On Sat, Aug 15, 2009 at 5:43 PM, Jay Binks jaybi...@gmail.com wrote:

I'd also seed such a torrent.

Please send the link :)




On 16/08/2009, at 6:34, João Mesquita jmesqu...@gmail.com wrote:

 I am interested and would also seed to the community

 On 8/15/09, Gabriel Gunderson g...@gundy.org wrote:
 On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com
 wrote:
 If you want the torrents, email me off list.

 Why off list?  Isn't the point of torrents to have more people
 sharing
 in the load?

 Gabe

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 users
 http://www.freeswitch.org


 --
 Sent from my mobile device

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 users
 http://www.freeswitch.org

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




PGP.sig
Description: This is a digitally signed message part
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] Not receiving DTMF

2009-08-15 Thread Nicolas Brenner
Hi, I'm trying to get dtmf input, but I'm not getting anything.

What I discovered though, is that my provider is at fault, since when I
switched to another voip provider, everything started to work beautifully.

My question is: since my provider is not doing RC2833 dtmf (even though they
say they do), is there another way to get dtmf to work? I'm doing everything
in a javascript file, so I tried doing:

- session.setVariable(dtmf_type,info);

Also:

- session.setVariable(dtmf_type,rfc2833);

And:

- session.execute(start_dtmf);

But none worked. The voip provider that works would be ideal, but the calls
are twice as expensive, hence besides testing, I wouldn't use them for a
real case scenario. BTW, anyone know of a good quality VoIP provider with
low rates for termination to Santiago, Chile and Chilean cell phones?

Thanks!


Nicolas
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Not receiving DTMF

2009-08-15 Thread Jason White
Nicolas Brenner nico...@medularis.com wrote:
 My question is: since my provider is not doing RC2833 dtmf (even though they
 say they do), is there another way to get dtmf to work? 

You can try info and tone detection just in case one of those is being used,
but it appears from your message that you have attempted both of these
already.

I think it's time to find a more reliable provider, or try to persuade your
current provider to fix it (the latter is probably a waste of time and effort,
however).


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] opal build error

2009-08-15 Thread Seven Du
Hi,

According to wiki it still in development status, but should compile  
right? Any idea about this? thanks.

make

In file included from mod_opal.cpp:25:
mod_opal.h:151: error: conflicting return type specified for ‘virtual  
OpalLocalConnection* FSEndPoint::CreateConnection(OpalCall, void*)’
/usr/include/opal/opal/localep.h:267: error:   overriding ‘virtual  
ptlib_virtual_function_changed_or_removed**  
OpalLocalEndPoint::CreateConnection(OpalCall, void*)’
mod_opal.cpp: In constructor ‘FSConnection::FSConnection(OpalCall,  
FSEndPoint, switch_caller_profile_t*, switch_core_session_t*,  
switch_channel_t*)’:
mod_opal.cpp:564: error: no matching function for call to  
‘OpalLocalConnection::OpalLocalConnection(OpalCall, FSEndPoint, NULL)’
/usr/include/opal/opal/localep.h:290: note: candidates are:  
OpalLocalConnection::OpalLocalConnection(OpalCall,  
OpalLocalEndPoint, void*, unsigned int,  
OpalConnection::StringOptions*, char)/usr/include/opal/opal/localep.h: 
276: note:  
OpalLocalConnection::OpalLocalConnection(const OpalLocalConnection)
mod_opal.cpp: In member function ‘switch_status_t  
FSConnection::receive_message(switch_core_session_message_t*)’:
mod_opal.cpp:1037: error: ‘SWITCH_CHANNEL_SESSION_LOG’ was not  
declared in this scope
make[1]: *** [mod_opal.lo] Error 1
make: *** [all] Error 1
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] ClueCon2009 Torrents

2009-08-15 Thread Mitul Limbani

I would be glad to offer mirror service to Cluecon 2009 videos :)

Thanks  Regards,
Mitul Limbani,
Founder  CEO,
Enterux Solutions Pvt. Ltd.,
The Enterprise Linux Company (r),
http://www.enterux.com
http://www.entVoice.com

On 16-Aug-2009, at 3:17 AM, Diego Viola diego.vi...@gmail.com wrote:


Upload the torrent files in http://files.freeswitch.org ;)

On Sat, Aug 15, 2009 at 5:43 PM, Jay Binks jaybi...@gmail.com wrote:
I'd also seed such a torrent.

Please send the link :)



On 16/08/2009, at 6:34, João Mesquita jmesqu...@gmail.com wrote:

 I am interested and would also seed to the community

 On 8/15/09, Gabriel Gunderson g...@gundy.org wrote:
 On Sat, Aug 15, 2009 at 12:13 PM, Pederpe...@networkoblivion.com
 wrote:
 If you want the torrents, email me off list.

 Why off list?  Isn't the point of torrents to have more people
 sharing
 in the load?

 Gabe

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 users
 http://www.freeswitch.org


 --
 Sent from my mobile device

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-
 users
 http://www.freeswitch.org

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch- 
users

http://www.freeswitch.org

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch- 
users

http://www.freeswitch.org
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] obtain dialplan content from switch_extension_t

2009-08-15 Thread mark morreny
Hi,

After I do some operation on switch_extension_t, basically adding some
actions into it, I would like to display its content in the form of:

extension name=xxx
   condition
   action/action
 /condition

/extension

Is that doable?  If so,  is there any existing functional call that I can
use?

Thanks,
Mark
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] obtain dialplan content from switch_extension_t

2009-08-15 Thread Mathieu Rene
Hi,

caller_extension-applications is a linked list so you can loop  
through it and print the app name  params, but the structure doesn't  
contain any information about the conditions that were matched as this  
is a mod_xml_dialplan feature.

Mathieu Rene
Avant-Garde Solutions Inc
Office: + 1 (514) 664-1044 x100
Cell: +1 (514) 664-1044 x200
mr...@avgs.ca




On 15-Aug-09, at 11:44 PM, mark morreny wrote:

 Hi,

 After I do some operation on switch_extension_t, basically adding  
 some actions into it, I would like to display its content in the  
 form of:

 extension name=xxx
condition
action/action
  /condition

 /extension

 Is that doable?  If so,  is there any existing functional call that  
 I can use?

 Thanks,
 Mark
 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org