Re: [Freeswitch-users] ./freeswitch -vvvvv Verbose mode

2008-08-14 Thread Sheeju Alex
Thanks a lot for quick response...Freeswitch architecture is awesome Cheers Alex On Wed, Aug 13, 2008 at 8:32 PM, Brian West [EMAIL PROTECTED] wrote: console loglevel 8 http://wiki.freeswitch.org/wiki/Rosetta_stone /b On Aug 13, 2008, at 5:01 AM, Sheeju Alex wrote: Dear All, I

[Freeswitch-users] Mod_perl build error

2008-08-15 Thread Sheeju Alex
Dear All, I get undermentioned error when I tried to build mod_perl, could anyone please let me know the fix. --- ERROR - making all mod_native_file making all mod_perl Creating mod_perl.so... /usr/bin/ld: cannot find -lgdbm collect2: ld returned 1

Re: [Freeswitch-users] Mod_perl build error

2008-08-17 Thread Sheeju Alex
Thanks Brian, that really get me going On Fri, Aug 15, 2008 at 8:04 PM, Brian West [EMAIL PROTECTED] wrote: install gdbm-devel /b On Aug 15, 2008, at 9:24 AM, Sheeju Alex wrote: /usr/bin/ld: cannot find -lgdbm Brian West sip:[EMAIL PROTECTED

[Freeswitch-users] set channel variable using PERL

2008-08-17 Thread Sheeju Alex
Hello All, I am trying to figure out the way to set channel variable through perl script so I could fetch the data required from database and pass accordingly to the dialplan. Here is the example I am trying but was not successfull with it, It would be great if I get some advice on this.

[Freeswitch-users] IVR menu ending with #

2008-08-28 Thread Sheeju Alex
Hi All, I have created a IVR menu where in the digits is ended with #, could anyone point me why a menu with ending digits (e.g. 12345#) doesn't work? entry action=menu-exec-app digits=/^(\d{5})#$/ param=transfer $1 XML default/ Does Freeswitch IVR doesn't support # in digits?

Re: [Freeswitch-users] IVR menu ending with #

2008-08-28 Thread Sheeju Alex
I tried escaping #, but it didn't work. According to normal regex matching escaping # is not required I guess. So now I have tried both and is not working. I am using X-Lite, could you please let me know how to check the whether it is arriving as %23 or something else. Here is some debug

Re: [Freeswitch-users] IVR menu ending with #

2008-08-28 Thread Sheeju Alex
ignore it. It's not needed. Remove that $ at the end and I think you'll be fine. /b On Aug 28, 2008, at 11:18 AM, Sheeju Alex wrote: Here is some debug message 2008-08-28 09:08:28 [DEBUG] switch_ivr_menu.c:296 play_and_collect() waiting for 5/6 digits t

Re: [Freeswitch-users] Setting hangup hook from Perl?

2008-09-07 Thread Sheeju Alex
Try this...it should work $session-setAutoHangup(false); OR $session-hangup(USER_BUSY); or without any parameter for normal_clearing /SA On Sun, Sep 7, 2008 at 12:24 PM, Nic Wolff [EMAIL PROTECTED] wrote: How do I set a hangup hook function in a Perl application called from the dialplan?

Re: [Freeswitch-users] Setting hangup hook from Perl?

2008-09-07 Thread Sheeju Alex
:38 PM, Sheeju Alex wrote: Try this...it should work $session-setAutoHangup(false); OR $session-hangup(USER_BUSY); or without any parameter for normal_clearing /SA On Sun, Sep 7, 2008 at 12:24 PM, Nic Wolff [EMAIL PROTECTED] wrote: How do I set a hangup hook function in a Perl

[Freeswitch-users] caller-controls -- Invalid caller control action name 'dial'.

2008-10-04 Thread Sheeju Alex
Hi All, I am trying to include dial caller control in my custom profile, but I get this warning and looks like this action is not defined? 2008-10-04 18:42:11 [WARNING] mod_conference.c:4797 conference_new_install_caller_controls_custom() Invalid caller control action name 'dial'. Here is

Re: [Freeswitch-users] caller-controls -- Invalid caller control action name 'dial'.

2008-10-05 Thread Sheeju Alex
/ !-- call the developer conference -- --- /Sheeju On Sun, Oct 5, 2008 at 1:30 PM, Brian West [EMAIL PROTECTED] wrote: Can you kindly point at the one on the wiki that mentions this? /b On Oct 5, 2008, at 1:36 AM, Sheeju Alex wrote: Anthony, Thanks for your replybut the one

Re: [Freeswitch-users] caller-controls -- Invalid caller control action name 'dial'.

2008-10-05 Thread Sheeju Alex
, at 5:13 AM, Sheeju Alex wrote: Brian, Here you go! http://wiki.freeswitch.org/wiki/Mod_conference#.3Ccaller-controls.3E --- caller-controls Caller controls are used to modify the state of the conference. It can be lowering the volume, mute the conference and such. To force

[Freeswitch-users] reload/ restart gracefully from CLI

2008-10-05 Thread Sheeju Alex
If there is any changes in source file say mod_conference.c is it required to restart freeswitch? I think it is required to load the module again... These are the commands I use to restart freeswitch //STOP # freeswitch -stop //START # freeswitch Is there any other command where I can directly

Re: [Freeswitch-users] mod_conference nitpick

2008-10-14 Thread Sheeju Alex
:51 AM, Sheeju Alex wrote: Also I think it would be good option if we could control moh through api say, conference conf_name moh stop conference conf_name moh start Sheeju I think stop will make it stop, I thought there was a way to start it but on quick review I didn't see it. I would

Re: [Freeswitch-users] mod_conference nitpick

2008-10-14 Thread Sheeju Alex
Also I think it would be good option if we could control moh through api say, conference conf_name moh stop conference conf_name moh start Sheeju On Tue, Oct 14, 2008 at 9:02 PM, Michael Jerris [EMAIL PROTECTED] wrote: On Oct 14, 2008, at 11:15 AM, Kristian Kielhofner wrote: Hello everyone,

Re: [Freeswitch-users] mod_conference nitpick

2008-10-14 Thread Sheeju Alex
, at 9:14 AM, Sheeju Alex wrote: Michael, No this doesn't stop MOH [EMAIL PROTECTED] conference 7 stop all API CALL [conference(7 stop all)] output: Stopped 1 files. I see Stopped 1 files but MOH is still running. Sheeju ___ Freeswitch

[Freeswitch-users] mod_conference Name announcement or INTROUSER

2008-10-14 Thread Sheeju Alex
Hello All, I am working on the process to setup announce user name who join/leave the conference. For this first it was required to setup a process to record the user name while joining the conference, this patch attached with this mail is programmed for this but I have some issues with file