[Freeswitch-users] [Remote SIP client] Couple of questions

2009-03-25 Thread Gilles
Hello, I have a couple of questions related to having SIP users connecting from the Net to a Freeswitch server through NAT routers on both ends: 1. How must I configure routers on both ends? I understand that I need to route incoming TCP/UDP 5080 into the Freeswitch server, but what about the

Re: [Freeswitch-users] XML (curl) returned for Event-Calling-Function = switch_xml_locate_user

2009-03-25 Thread Leon de Rooij
Thanks.. I see it's even documented at http://wiki.freeswitch.org/wiki/Mod_commands#user_exists (doh) regards, Leon On Mar 25, 2009, at 6:57 AM, Mathieu Rene wrote: > As Raul said, the user_exists function will look for a user > *attribute* so unless you write your user as accountcode="bl

[Freeswitch-users] user_data sends two header_strings named key

2009-03-25 Thread Leon de Rooij
Hi, I think this is a bug in mod_commands.c : When using "user_data" function from mod_commands (mod_commands.c, line 358) A header string "key" is added to params (mod_commands.c, line 362) Then switch_xml_locate_user is called (switch_xml.c, line 1712) And that function adds another header st

[Freeswitch-users] Starting Freeswitch at boot-time with rc.d script?

2009-03-25 Thread Gilles
Hello I'm struggling to have Freeswitch start automatically in a Suse host at boot-time through the rc.d script provided in SVN. Here's what I did so far: 1. cp /usr/src/freeswitch/build/freeswitch.init.suse /etc/init.d/freeswitch 2. chmod 755 /etc/init.d/freeswitch 3. chkconfig freeswitch 345 4

[Freeswitch-users] Starting Freeswitch at boot-time with rc.d script?

2009-03-25 Thread Gilles
Add-on: The script is almost fine now, but I don't know whether the script really requires a config file, and if yes, where it can be found (the XML file doesn't seem to be it): FREESWITCH_PARAMS="-nc" FREESWITCH_BIN=/usr/local/freeswitch/bin/freeswitch #BAD!!! FREESWITCH_CONFIG=/usr/local/free

Re: [Freeswitch-users] Console Window

2009-03-25 Thread Pablo Hernan Saro
Also guys, I recommend to use a script to handle FS instead of directly executing the binary. FS provides some examples. On 3/24/09, Even André Fiskvik wrote: > Please see documentation at: > http://wiki.freeswitch.org/wiki/Fs_cli > and > http://wiki.freeswitch.org/wiki/Mod_commands > > > Best

[Freeswitch-users] conference calling ideas

2009-03-25 Thread Steven Ward
If any can share some ideas, I'm looking at making conference calls simple for the end-users of my FS system. Here are some issues I'm kicking around: 1. To create/join conferences - do you make a pre-defined list of extensions, each of which would join the caller to a particular conference room

Re: [Freeswitch-users] conference calling ideas

2009-03-25 Thread Szymon Olko
Steven Ward pisze: > If any can share some ideas, I'm looking at making conference > calls simple for the end-users of my FS system. > > Here are some issues I'm kicking around: > > 1. To create/join conferences - do you make a pre-defined list of > extensions, each of which would join the cal

Re: [Freeswitch-users] conference calling ideas

2009-03-25 Thread Steven Ward
Szymon, I want to provide a service wherein a user can reserve a teleconference room for a partiuclar time and control who can join the conference call (only those invited). I want to support several of such conference calls at any given time. I want callers who were not invited to a conference c

Re: [Freeswitch-users] conference calling ideas

2009-03-25 Thread Szymon Olko
Steven Ward pisze: > Szymon, I want to provide a service wherein a user can reserve a > teleconference room for a partiuclar time and control who can join the > conference call (only those invited). I want to support several of > such conference calls at any given time. > > I want callers who we

[Freeswitch-users] help about the rtp port.

2009-03-25 Thread congxin zhao
Hi, I meet a issue about the rtp port. The media port value in the sdp of SIP 200 OK which freeswitch internal sends to ua is always 0, so the media forward is always wrong. What could cause this problem possibly? No matter I set or The problem always showes. Does the following rtp-ip and ext

Re: [Freeswitch-users] Starting Freeswitch at boot-time with rc.d script?

2009-03-25 Thread dujinfang
I don't think you need FREESWITCH_CONFIG. It will find all configuration files on default place, say /usr/local/freeswitch/conf If you store config files in other place, the command line should like this /usr/local/freeswitch/bin/freeswitch -conf /tmp/conf -db /tmp/db -log / tmp/log On Mar

[Freeswitch-users] Cron-like execution in FS

2009-03-25 Thread Matthew Fong
I'm wondering if there's any features that allow the cron-like execution of code inside of Freeswitch, preferably with lua--or if I am stuck using the api interface and running the cron outside of freeswitch. --matt ___ Freeswitch-users mailing list Frees

Re: [Freeswitch-users] Different files (?)

2009-03-25 Thread Pablo Hernan Saro
First of all, thanks for your answers. You guys are awesome and FS rocks. Don't take it the wrong way... My custom is to install production systems using stable versions and apply the corresponding security patches as soon as they are released. But I don't change software versions until I really ne

Re: [Freeswitch-users] Problem dialing out via E1

2009-03-25 Thread Mark Tabron
Thanks for the additional info. Found a problem with ozmod_libri.so missing from the mod directory after installation (fixed by manually copying file over) and I can now happily confirm I can make calls both in and out! Thanks for all the help on this - really appreciated. -Original Message--

Re: [Freeswitch-users] help about the rtp port.

2009-03-25 Thread Brian West
Zero for the port means something please provide a complete sip trace. /b On Mar 25, 2009, at 5:52 AM, congxin zhao wrote: Hi, I meet a issue about the rtp port. The media port value in the sdp of SIP 200 OK which freeswitch internal sends to ua is always 0, so the media forward is always

Re: [Freeswitch-users] Cron-like execution in FS

2009-03-25 Thread Michael Collins
2009/3/25 Matthew Fong : > I'm wondering if there's any features that allow the cron-like execution of > code inside of Freeswitch, preferably with lua--or if I am stuck using the > api interface and running the cron outside of freeswitch. > --matt I guess the most important question you can answe

Re: [Freeswitch-users] Different files (?)

2009-03-25 Thread Michael Collins
On Wed, Mar 25, 2009 at 8:43 AM, Pablo Hernan Saro wrote: > First of all, thanks for your answers. You guys are awesome and FS > rocks. Don't take it the wrong way... No offense taken. > My custom is to install production systems using stable versions and > apply the corresponding security patch

[Freeswitch-users] DTMF Missing Digits

2009-03-25 Thread Chris Fowler
Any thoughts on why FS saw all digits "1029" but only reports '029'? 2009-03-25 10:48:45 [DEBUG] switch_ivr_menu.c:364 play_and_collect() digits '029' Config: Trace: 2009-03-25 10:48:41 [DEBUG] switch_rtp.c:1786 switch_rtp_dequeue_dtmf(

Re: [Freeswitch-users] DTMF Missing Digits

2009-03-25 Thread Brian West
First off what SVN rev? Remember when reporting issues try to include all the information you can! /b On Mar 25, 2009, at 1:19 PM, Chris Fowler wrote: > Any thoughts on why FS saw all digits "1029" but only reports '029'? >2009-03-25 10:48:45 [DEBUG] switch_ivr_menu.c:364 > play_and_co

Re: [Freeswitch-users] DTMF Missing Digits

2009-03-25 Thread Chris Fowler
>> First off what SVN rev? Remember when reporting issues try to include all >> the information you can! Oops; forgot that - FreeSWITCH Version 1.0.trunk (12647) ___ Freeswitch-users mailing list Freeswitch-users@lists.freeswitch.org http://lists.fre

Re: [Freeswitch-users] DTMF Missing Digits

2009-03-25 Thread Brian West
Please review this link http://wiki.freeswitch.org/wiki/Reporting_Bugs The rules are try to reproduce this on SVN Trunk... I am pretty sure we fixed this one already. /b On Mar 25, 2009, at 1:49 PM, Chris Fowler wrote: > Oops; forgot that - FreeSWITCH Version 1.0.trunk (12647)

Re: [Freeswitch-users] Different files (?)

2009-03-25 Thread Pablo Hernan Saro
Hi Michael, All I have to say is thank you very much. Thanks for this explanation, that's what I was looking for. So, I will figure out which is the most convenient update schedule for me and I will build a sandbox for this exclusive purpose. Not only FS rocks, but the community too. Kudos Pablo

[Freeswitch-users] Question about FAQ question

2009-03-25 Thread Josh Forman
I'm running Freeswitch on Ubuntu 64bit Intrepid and on a svn rev 12722, freeswitch would install and run fine but as soon as calls started coming in it would have a segmentation fault. This is the second svn snapshot I've had this happen on. In the Freeswitch FAQs there is a question concer

Re: [Freeswitch-users] Question about FAQ question

2009-03-25 Thread Brian West
On Mar 25, 2009, at 2:01 PM, Josh Forman wrote: > I'm running Freeswitch on Ubuntu 64bit Intrepid and on a svn rev > 12722, freeswitch would install and run fine but as soon as calls > started coming in it would have a segmentation fault. This is the > second svn snapshot I've had this happen on

Re: [Freeswitch-users] DTMF Missing Digits

2009-03-25 Thread Brian West
btw you'll have to reinstall your phrase macros make vm-sync I think should do it if it doesn't let me know... we removed the 250ms sleeps and that was the problem which we fixed. /b On Mar 25, 2009, at 1:49 PM, Chris Fowler wrote: >>> First off what SVN rev? Remember when reporting i

Re: [Freeswitch-users] Question about FAQ question

2009-03-25 Thread mszlazak
I'd like to do something like "Make current" but for Windows because I'm finding bugs to report.? One was on how the dialplan's extensions are being parsed. Extensions in some cases like when doing originates with sched_api, loose their last character and I have to add a white space after to

Re: [Freeswitch-users] Question about FAQ question

2009-03-25 Thread Brian West
If you svn up clean the solution and rebuild its the same thing Can you provide me a test case of this happening? /b On Mar 25, 2009, at 2:50 PM, mszla...@aol.com wrote: I'd like to do something like "Make current" but for Windows because I'm finding bugs to report. One was on how the

Re: [Freeswitch-users] Question about FAQ question

2009-03-25 Thread Michael Collins
> Maybe the reporting bugs wiki needs updating for Windows users (experienced > and inexperienced). Quite possibly. The instructions are not explicit. I will add something for the Windows users that's a bit more specific. -MC ___ Freeswitch-users mailin

Re: [Freeswitch-users] Question about FAQ question

2009-03-25 Thread mszlazak
Thanks MC, maybe a link to that "TortoiseSVN" would help for some in the Windows crowd. TortoiseSVN has a bunch of stuff in it but to make it simple, especially for doing updates to report bugs, then mentioning if doing just an "SVN update" will work before rebuild. Also, what to do if one g

Re: [Freeswitch-users] Question about FAQ question

2009-03-25 Thread Michael Collins
2009/3/25 : > Thanks MC, maybe a link to that "TortoiseSVN" would help for some in the > Windows crowd. Done! > > TortoiseSVN has a bunch of stuff in it but to make it simple, especially for > doing updates to report bugs, then mentioning if doing just an "SVN update" > will work before rebuild.

Re: [Freeswitch-users] conference calling ideas

2009-03-25 Thread Michael Collins
Hey, if you guys get this all figured out, tested, and working then please be sure to put it on the wiki. You could create a whole new page and then link to/from the mod_conference page. -MC On Wed, Mar 25, 2009 at 7:02 AM, Szymon Olko wrote: > Steven Ward pisze: >> Szymon, I want to provide a se

Re: [Freeswitch-users] conference calling ideas

2009-03-25 Thread Steven Ward
I need some time to work out my setup and explore some different options, but I'll be happy to get something together for the wiki on this as soon as I'm able. Thanks. On Wed, Mar 25, 2009 at 4:53 PM, Michael Collins wrote: > Hey, if you guys get this all figured out, tested, and working then >

Re: [Freeswitch-users] Compile Errors ...

2009-03-25 Thread chevio
How was this fixed ?, I am experiencing the same problem. Chevio Shelby Ramsey-2 wrote: > > Thanks for the help. That did the trick. > > SDR > > ___ > Freeswitch-users mailing list > Freeswitch-users@lists.freeswitch.org > http://lists.freeswitch.

Re: [Freeswitch-users] Compile Errors ...

2009-03-25 Thread Michael Jerris
it was never really fixed as no one let me into their machine to troubleshoot. Mike On Mar 25, 2009, at 4:01 PM, chevio wrote: > > How was this fixed ?, I am experiencing the same problem. > > Chevio > > > Shelby Ramsey-2 wrote: >> >> Thanks for the help. That did the trick. >> >> SDR >> >> _

Re: [Freeswitch-users] help about the rtp port.

2009-03-25 Thread congxin zhao
Hi Brian, Thanks for you response. After doing research, the two endpoints(uac, uas) wants to speak with different media format, that cause the freeswitch reject the rtp flow. But could you give me an detailed explain on the meaning of nbound-bypass-media and inbound-proxy-media? Does nbound-bypa

[Freeswitch-users] Lua session:setInputCallback

2009-03-25 Thread Robert Clayton
All, When using Lua InputCallback while streaming audio and collecting an undetermined number of digits (finished by #) it seem that returning false, break or stop all close the InputCallback ability. I do not see the difference between the three? My question is in order to collect multiple digi

Re: [Freeswitch-users] Compile Errors ...

2009-03-25 Thread Michael Jerris
Thanks for access to your machine. The issue was that the odbc detection was trying to use odbc if either the libs or headers were found, not only if both were found. I fixed the detection to not try to use odbc if the headers were not installed. Installing unixODBC- devel package of cour

[Freeswitch-users] Multiple calls with PortAudio

2009-03-25 Thread Jason White
This has occurred with a number of recent revisions. If anyone can reproduce it or suggest debugging steps, I'll gladly supply more information. Jira isn't convenient for me due to X issues at the moment, unless there's a way to interact with it other than via a Javascript-capable Web browser. Dis

Re: [Freeswitch-users] Intermittent startup failures with TLS-enabled profiles

2009-03-25 Thread Jason White
Jason White wrote: > It looks like an operating system issue to me. Furthermore, the following message on linux-kernel appears relevant. http://linux.derkeiler.com/Mailing-Lists/Kernel/2005-03/3988.htm >From what I have been able to ascertain, Red Hat/Fedora kernels don't seem to give rise to th

Re: [Freeswitch-users] Intermittent startup failures with TLS-enabled profiles

2009-03-25 Thread Jason White
I've read the ipv6(7) manual page now. Unfortunately echo 1 > /proc/sys/net/ipv6/bindv6only doesn't solve the problem as the manual page suggests it should: ___ Freeswitch-users mailing list Freeswitch-users@lists.freeswitch.org http://lists.freeswitc