From krice at freeswitch.org Wed Mar 2 23:18:29 2016 From: krice at freeswitch.org (Ken Rice) Date: Wed, 2 Mar 2016 14:18:29 -0600 Subject: [Freeswitch-dev] libyuv-dev dependencie In-Reply-To: References: Message-ID: <4c0a01d174c0$b0474a60$10d5df20$@freeswitch.org> This is no longer required libvpx and libyuv have been moved in tree with freeswitch and are not built and statically linked into FreeSWITCH at build time From: freeswitch-dev-bounces at lists.freeswitch.org [mailto:freeswitch-dev-bounces at lists.freeswitch.org] On Behalf Of Valter Nogueira Sent: Friday, February 26, 2016 10:59 AM To: freeswitch-dev at lists.freeswitch.org Subject: [Freeswitch-dev] libyuv-dev dependencie I want to solve libyuv-dev dependencie by building it by my own. Is there any recipe or tutorial to achieve this? Thank you Valter -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160302/61408978/attachment.html From anthony.minessale at gmail.com Wed Mar 2 23:25:11 2016 From: anthony.minessale at gmail.com (Anthony Minessale) Date: Wed, 2 Mar 2016 14:25:11 -0600 Subject: [Freeswitch-dev] Error compiling freeswitch 1.6.6 with --disable-debug and possible fix In-Reply-To: References: Message-ID: Open a JIRA in the platform category https://freeswitch.org/jira On Tue, Feb 23, 2016 at 10:28 PM, wrote: > I'm getting a compilation error compiling the latest production release > (1.6.6) when using --disable-debug with certain (as yet undermined) > environment settings. The approximate steps I'm following are: > curl -O > https://files.freeswitch.org/releases/freeswitch/freeswitch-1.6.6.tar.xz > tar -xvf freeswitch-1.6.6.tar.xz > cd freeswitch-1.6.6 > ./configure --disable-debug > make > > Except I'm using makepkg, the build tool for Arch Linux. (It's ultimately > for Arch Linux ARM on a Raspberry Pi Zero, but the same thing happens with > normal x86_64 Arch Linux). When I use the exact steps above in a shell, > make succeeds, but when I run the equivalent within ArchLinux's makepkg > tool, I'm getting the following error (lightly sanitized): > CC freeswitch-switch.o > src/switch.c: In function ?main?: > src/switch.c:1194:5: error: ignoring return value of ?read?, declared with > attribute warn_unused_result [-Werror=unused-result] > (void)read(fds[1], &v, sizeof(v)); > ^ > src/switch.c: In function ?check_fd?: > src/switch.c:236:5: error: ignoring return value of ?write?, declared with > attribute warn_unused_result [-Werror=unused-result] > (void)write(fd, &r, sizeof(r)); > ^ > cc1: all warnings being treated as errors > Makefile:1988: recipe for target 'freeswitch-switch.o' failed > make[2]: *** [freeswitch-switch.o] Error 1 > make[2]: Leaving directory '~/builds/freeswitch/src/freeswitch-1.6.6' > Makefile:2420: recipe for target 'all-recursive' failed > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory '~/builds/freeswitch/src/freeswitch-1.6.6' > Makefile:970: recipe for target 'all' failed > make: *** [all] Error 2 > > In parallel, I'm checking with the Arch Linux folks for help understanding > the makepkg environment (perhaps some compilation *FLAGS environment > variables?) that are likely needed to reproduce the error on other > distributions. I'll reply further if I get better data from them. > > However, from a look at configure.ac, it does appear that unused result > warnings/errors are being suppressed via SWITCH_AM_CFLAGS perhaps only in > when debug is enabled: > if test "${enable_debug}" = "yes"; then > AC_DEFINE([DEBUG],[],[Enable extra debugging.]) > saved_CFLAGS="$CFLAGS" > CFLAGS= > AX_CFLAGS_WARN_ALL_ANSI > SWITCH_ANSI_CFLAGS=$CFLAGS > CFLAGS="$saved_CFLAGS" > > if test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then > if test "$ac_cv_gcc_supports_w_no_unused_result" = yes; then > APR_ADDTO(SWITCH_AM_CFLAGS, -Wno-unused-result) > fi > APR_ADDTO(SWITCH_AM_CFLAGS, -g -ggdb) > export DEBUG_CFLAGS="-g -ggdb" > fi > > fi > > Though I'm a newbie so I may be missing something obvious. (For one, I > don't yet understand the difference between SWITCH_AM_CFLAGS and other > related variable(s).) > > I'm currently working around the error using the following patch: > --- configure.ac.old 2016-02-23 16:50:04.190884018 -0800 > +++ configure.ac 2016-02-23 16:50:29.103970709 -0800 > @@ -410,6 +410,7 @@ > APR_ADDTO(SWITCH_AM_CXXFLAGS, -fPIC) > if test "$ac_cv_gcc_supports_w_no_unused_result" = yes; then > APR_ADDTO(SWITCH_AM_CFLAGS, -Werror) > + APR_ADDTO(SWITCH_AM_CFLAGS, -Wno-unused-result) > fi > if test "${enable_64}" = "yes"; then > case "$host" in > @@ -533,9 +534,6 @@ > CFLAGS="$saved_CFLAGS" > > if test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then > - if test "$ac_cv_gcc_supports_w_no_unused_result" = yes; then > - APR_ADDTO(SWITCH_AM_CFLAGS, -Wno-unused-result) > - fi > APR_ADDTO(SWITCH_AM_CFLAGS, -g -ggdb) > export DEBUG_CFLAGS="-g -ggdb" > fi > > > Can you tell whether I'm on the right track here (is this a bug in > freeswitch's configure script)? If this is the right fix (or close to it), > would you be interested in taking it? > > (And apologies if this isn't the best way to format code snippets for this > mailing list; please let me know if there's a better way.) > > Thanks, > > David > > > _________________________________________________________________________ > Professional FreeSWITCH Consulting Services: > consulting at freeswitch.org > http://www.freeswitchsolutions.com > > Official FreeSWITCH Sites > http://www.freeswitch.org > http://wiki.freeswitch.org > http://www.cluecon.com > > FreeSWITCH-dev mailing list > FreeSWITCH-dev at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev > http://www.freeswitch.org > -- Anthony Minessale II ? @anthmfs ? @FreeSWITCH ? ? http://freeswitch.org/ ? http://cluecon.com/ ? http://twitter.com/FreeSWITCH ? irc.freenode.net #freeswitch ? *http://freeswitch.org/g+ * ClueCon Weekly Development Call ? sip:888 at conference.freeswitch.org ? +19193869900 https://www.youtube.com/watch?v=9XXgW34t40s https://www.youtube.com/watch?v=NLaDpGQuZDA -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160302/848eca55/attachment-0001.html From valter at fastway.com.br Thu Mar 3 01:46:54 2016 From: valter at fastway.com.br (Valter Nogueira) Date: Wed, 2 Mar 2016 19:46:54 -0300 Subject: [Freeswitch-dev] libyuv-dev dependencie In-Reply-To: <4c0a01d174c0$b0474a60$10d5df20$@freeswitch.org> References: <4c0a01d174c0$b0474a60$10d5df20$@freeswitch.org> Message-ID: Thank you. I saw it a little bit after posting my question. Cheers Valter Em 02/03/2016 17:21, "Ken Rice" escreveu: > This is no longer required libvpx and libyuv have been moved in tree with > freeswitch and are not built and statically linked into FreeSWITCH at build > time > > > > *From:* freeswitch-dev-bounces at lists.freeswitch.org [mailto: > freeswitch-dev-bounces at lists.freeswitch.org] *On Behalf Of *Valter > Nogueira > *Sent:* Friday, February 26, 2016 10:59 AM > *To:* freeswitch-dev at lists.freeswitch.org > *Subject:* [Freeswitch-dev] libyuv-dev dependencie > > > > > I want to solve libyuv-dev dependencie by building it by my own. > > Is there any recipe or tutorial to achieve this? > > Thank you > > Valter > > _________________________________________________________________________ > Professional FreeSWITCH Consulting Services: > consulting at freeswitch.org > http://www.freeswitchsolutions.com > > Official FreeSWITCH Sites > http://www.freeswitch.org > http://wiki.freeswitch.org > http://www.cluecon.com > > FreeSWITCH-dev mailing list > FreeSWITCH-dev at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev > http://www.freeswitch.org > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160302/d5b7a253/attachment.html From mike at jerris.com Thu Mar 3 02:25:53 2016 From: mike at jerris.com (Michael Jerris) Date: Wed, 2 Mar 2016 16:25:53 -0700 Subject: [Freeswitch-dev] Cannot install or make libvpx2-dev on MacBook Pro running OS X 10.10 In-Reply-To: References: <56085A26-2F61-47F4-97AE-4DDBCAC5AADB@yahoo.com> <9F6589C8-38E4-45D5-AFAB-ED449367211E@jerris.com> Message-ID: <35933C95-D651-4C01-A940-0937B056B17B@jerris.com> You should not be needing to do that for osx... Follow the instructions on confluence for how to build on OSx... In fact in master, we no longer require separate dependencies for vpx or yuv, they are now built static as part of the core build due to conflicting version requirements. > On Feb 22, 2016, at 11:57 PM, ziyue wrote: > > Michael Jerris jerris.com> writes: > >> >> >> >> >> >> >> >> >> >> http://www.freeswitch.org >> > > > download vpx and build and install it > configure freeswitch again > > > > _________________________________________________________________________ > Professional FreeSWITCH Consulting Services: > consulting at freeswitch.org > http://www.freeswitchsolutions.com > > Official FreeSWITCH Sites > http://www.freeswitch.org > http://wiki.freeswitch.org > http://www.cluecon.com > > FreeSWITCH-dev mailing list > FreeSWITCH-dev at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev > http://www.freeswitch.org From mike at jerris.com Thu Mar 3 02:35:26 2016 From: mike at jerris.com (Michael Jerris) Date: Wed, 2 Mar 2016 16:35:26 -0700 Subject: [Freeswitch-dev] Error compiling freeswitch 1.6.6 with --disable-debug and possible fix In-Reply-To: References: Message-ID: <01416934-6FA6-44C7-AF21-239C5DEC6EC5@jerris.com> Jira is already filed: https://freeswitch.org/jira/browse/FS-8883 ... waiting on response to my comment still > On Mar 2, 2016, at 1:25 PM, Anthony Minessale wrote: > > Open a JIRA in the platform category https://freeswitch.org/jira > > > On Tue, Feb 23, 2016 at 10:28 PM, > wrote: > I'm getting a compilation error compiling the latest production release (1.6.6) when using --disable-debug with certain (as yet undermined) environment settings. The approximate steps I'm following are: > curl -O https://files.freeswitch.org/releases/freeswitch/freeswitch-1.6.6.tar.xz > tar -xvf freeswitch-1.6.6.tar.xz > cd freeswitch-1.6.6 > ./configure --disable-debug > make > > Except I'm using makepkg, the build tool for Arch Linux. (It's ultimately for Arch Linux ARM on a Raspberry Pi Zero, but the same thing happens with normal x86_64 Arch Linux). When I use the exact steps above in a shell, make succeeds, but when I run the equivalent within ArchLinux's makepkg tool, I'm getting the following error (lightly sanitized): > CC freeswitch-switch.o > src/switch.c: In function ?main?: > src/switch.c:1194:5: error: ignoring return value of ?read?, declared with attribute warn_unused_result [-Werror=unused-result] > (void)read(fds[1], &v, sizeof(v)); > ^ > src/switch.c: In function ?check_fd?: > src/switch.c:236:5: error: ignoring return value of ?write?, declared with attribute warn_unused_result [-Werror=unused-result] > (void)write(fd, &r, sizeof(r)); > ^ > cc1: all warnings being treated as errors > Makefile:1988: recipe for target 'freeswitch-switch.o' failed > make[2]: *** [freeswitch-switch.o] Error 1 > make[2]: Leaving directory '~/builds/freeswitch/src/freeswitch-1.6.6' > Makefile:2420: recipe for target 'all-recursive' failed > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory '~/builds/freeswitch/src/freeswitch-1.6.6' > Makefile:970: recipe for target 'all' failed > make: *** [all] Error 2 > > In parallel, I'm checking with the Arch Linux folks for help understanding the makepkg environment (perhaps some compilation *FLAGS environment variables?) that are likely needed to reproduce the error on other distributions. I'll reply further if I get better data from them. > > However, from a look at configure.ac , it does appear that unused result warnings/errors are being suppressed via SWITCH_AM_CFLAGS perhaps only in when debug is enabled: > if test "${enable_debug}" = "yes"; then > AC_DEFINE([DEBUG],[],[Enable extra debugging.]) > saved_CFLAGS="$CFLAGS" > CFLAGS= > AX_CFLAGS_WARN_ALL_ANSI > SWITCH_ANSI_CFLAGS=$CFLAGS > CFLAGS="$saved_CFLAGS" > > if test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then > if test "$ac_cv_gcc_supports_w_no_unused_result" = yes; then > APR_ADDTO(SWITCH_AM_CFLAGS, -Wno-unused-result) > fi > APR_ADDTO(SWITCH_AM_CFLAGS, -g -ggdb) > export DEBUG_CFLAGS="-g -ggdb" > fi > > fi > > Though I'm a newbie so I may be missing something obvious. (For one, I don't yet understand the difference between SWITCH_AM_CFLAGS and other related variable(s).) > > I'm currently working around the error using the following patch: > --- configure.ac.old 2016-02-23 16:50:04.190884018 -0800 > +++ configure.ac 2016-02-23 16:50:29.103970709 -0800 > @@ -410,6 +410,7 @@ > APR_ADDTO(SWITCH_AM_CXXFLAGS, -fPIC) > if test "$ac_cv_gcc_supports_w_no_unused_result" = yes; then > APR_ADDTO(SWITCH_AM_CFLAGS, -Werror) > + APR_ADDTO(SWITCH_AM_CFLAGS, -Wno-unused-result) > fi > if test "${enable_64}" = "yes"; then > case "$host" in > @@ -533,9 +534,6 @@ > CFLAGS="$saved_CFLAGS" > > if test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then > - if test "$ac_cv_gcc_supports_w_no_unused_result" = yes; then > - APR_ADDTO(SWITCH_AM_CFLAGS, -Wno-unused-result) > - fi > APR_ADDTO(SWITCH_AM_CFLAGS, -g -ggdb) > export DEBUG_CFLAGS="-g -ggdb" > fi > > > Can you tell whether I'm on the right track here (is this a bug in freeswitch's configure script)? If this is the right fix (or close to it), would you be interested in taking it? > > (And apologies if this isn't the best way to format code snippets for this mailing list; please let me know if there's a better way.) > > Thanks, > > David > > > _________________________________________________________________________ > Professional FreeSWITCH Consulting Services: > consulting at freeswitch.org > http://www.freeswitchsolutions.com > > Official FreeSWITCH Sites > http://www.freeswitch.org > http://wiki.freeswitch.org > http://www.cluecon.com > > FreeSWITCH-dev mailing list > FreeSWITCH-dev at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev > http://www.freeswitch.org > > > > -- > Anthony Minessale II ? @anthmfs ? @FreeSWITCH ? > > ? http://freeswitch.org/ ? http://cluecon.com/ ? http://twitter.com/FreeSWITCH > ? irc.freenode.net #freeswitch ? http://freeswitch.org/g+ > > ClueCon Weekly Development Call > ? sip:888 at conference.freeswitch.org ? +19193869900 > > https://www.youtube.com/watch?v=9XXgW34t40s > https://www.youtube.com/watch?v=NLaDpGQuZDA > _________________________________________________________________________ > Professional FreeSWITCH Consulting Services: > consulting at freeswitch.org > http://www.freeswitchsolutions.com > > Official FreeSWITCH Sites > http://www.freeswitch.org > http://wiki.freeswitch.org > http://www.cluecon.com > > FreeSWITCH-dev mailing list > FreeSWITCH-dev at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev > http://www.freeswitch.org -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160302/50f9b747/attachment-0001.html From mike at jerris.com Thu Mar 3 02:36:24 2016 From: mike at jerris.com (Michael Jerris) Date: Wed, 2 Mar 2016 16:36:24 -0700 Subject: [Freeswitch-dev] libyuv-dev dependencie In-Reply-To: References: <4c0a01d174c0$b0474a60$10d5df20$@freeswitch.org> Message-ID: Note, this is just the case in recent master, not in any releases yet. Please try it out and let us know if you have any issues. > On Mar 2, 2016, at 3:46 PM, Valter Nogueira wrote: > > Thank you. I saw it a little bit after posting my question. > > Cheers > > Valter > > Em 02/03/2016 17:21, "Ken Rice" > escreveu: > This is no longer required libvpx and libyuv have been moved in tree with freeswitch and are not built and statically linked into FreeSWITCH at build time > > > > From: freeswitch-dev-bounces at lists.freeswitch.org [mailto:freeswitch-dev-bounces at lists.freeswitch.org ] On Behalf Of Valter Nogueira > Sent: Friday, February 26, 2016 10:59 AM > To: freeswitch-dev at lists.freeswitch.org > Subject: [Freeswitch-dev] libyuv-dev dependencie > > > > > > I want to solve libyuv-dev dependencie by building it by my own. > > Is there any recipe or tutorial to achieve this? > > Thank you > > Valter -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160302/67422125/attachment.html From brian at freeswitch.org Tue Mar 8 23:38:50 2016 From: brian at freeswitch.org (Brian West) Date: Tue, 8 Mar 2016 14:38:50 -0600 Subject: [Freeswitch-dev] FreeSWITCH Ubuntu Packages & Thanks!!!! Message-ID: I would like to give a shout out to Fred Dixon and team over at Blindside for donating $2,000 USD Shailesh Tyagi from Novanet.net $1,000 USD Michael Murdock - $50 USD Clint Berry - $400 USD Chris Black - $50 USD For anyone wishing to donate visit: https://www.gofundme.com/freeswitch_ubuntu Thanks, -- *Brian West* brian at freeswitch.org *Twitter: @FreeSWITCH , @briankwest* http://www.freeswitchbook.com http://www.freeswitchcookbook.com https://www.gofundme.com/freeswitch_ubuntu Got Bugs? Report them here ! | Reddit: /r/freeswitch *T:*+19184209001 | *F:*+19184209002 | *M:*+1918424WEST (9378) *iNUM:*+883 5100 1420 9001 | *ISN:*410*543 | *Skype:*briankwest -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160308/b3888e66/attachment.html From brian at freeswitch.org Wed Mar 9 20:29:02 2016 From: brian at freeswitch.org (Brian West) Date: Wed, 9 Mar 2016 11:29:02 -0600 Subject: [Freeswitch-dev] JIRA Message-ID: FreeSWITCHers, FYI If I close an old JIRA you still care about, by all means REOPEN IT, be attentive and help drive it thru the process, I thank everyone for opening JIRAs on issues, but you'll need to provide assistance to push them over the finish line. Thanks, -- *Brian West* brian at freeswitch.org *Twitter: @FreeSWITCH , @briankwest* http://www.freeswitchbook.com http://www.freeswitchcookbook.com https://www.gofundme.com/freeswitch_ubuntu Got Bugs? Report them here ! | Reddit: /r/freeswitch *T:*+19184209001 | *F:*+19184209002 | *M:*+1918424WEST (9378) *iNUM:*+883 5100 1420 9001 | *ISN:*410*543 | *Skype:*briankwest -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160309/120082ac/attachment.html From valter at fastway.com.br Thu Mar 3 02:56:13 2016 From: valter at fastway.com.br (Valter Nogueira) Date: Wed, 2 Mar 2016 20:56:13 -0300 Subject: [Freeswitch-dev] libyuv-dev dependencie In-Reply-To: References: <4c0a01d174c0$b0474a60$10d5df20$@freeswitch.org> Message-ID: That is not an issue to me. I am trying to migrate my app from asterisk to fs. Last time I had tries it was in fs 1.4 So i decided that before migration i should move from agi to fastagi (asterisk). Now I have finished that and I am starting over. Thank you Em 02/03/2016 20:39, "Michael Jerris" escreveu: > Note, this is just the case in recent master, not in any releases yet. > Please try it out and let us know if you have any issues. > > On Mar 2, 2016, at 3:46 PM, Valter Nogueira wrote: > > Thank you. I saw it a little bit after posting my question. > > Cheers > > Valter > Em 02/03/2016 17:21, "Ken Rice" escreveu: > >> This is no longer required libvpx and libyuv have been moved in tree with >> freeswitch and are not built and statically linked into FreeSWITCH at build >> time >> >> >> >> *From:* freeswitch-dev-bounces at lists.freeswitch.org [mailto: >> freeswitch-dev-bounces at lists.freeswitch.org] *On Behalf Of *Valter >> Nogueira >> *Sent:* Friday, February 26, 2016 10:59 AM >> *To:* freeswitch-dev at lists.freeswitch.org >> *Subject:* [Freeswitch-dev] libyuv-dev dependencie >> >> >> >> >> I want to solve libyuv-dev dependencie by building it by my own. >> >> Is there any recipe or tutorial to achieve this? >> >> Thank you >> >> Valter >> > > _________________________________________________________________________ > Professional FreeSWITCH Consulting Services: > consulting at freeswitch.org > http://www.freeswitchsolutions.com > > Official FreeSWITCH Sites > http://www.freeswitch.org > http://wiki.freeswitch.org > http://www.cluecon.com > > FreeSWITCH-dev mailing list > FreeSWITCH-dev at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-dev > http://www.freeswitch.org > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160302/d4a77c54/attachment-0001.html From nguyenductai000 at gmail.com Thu Mar 10 06:21:45 2016 From: nguyenductai000 at gmail.com (Duc Tai Nguyen) Date: Thu, 10 Mar 2016 10:21:45 +0700 Subject: [Freeswitch-dev] Ask about audio conference call. Message-ID: Hi all, I am a new bee with FreeSwitch. I tried to config the audio conference call, for ex. for 100 users, and I want whenever user enter the conference, there is only audio. I tried to config the dialplan/default.xml and conference.conf.xml. Use the members-flag as "vmute", and when user enter the conference, it still plays video a little before it turn off it, and even that the camera light is still on my laptop. Is there any way to config so that it only get the audio stream for conference? Even I tried to config in the dialplan/default.xml like this: there is no effect on it. Pls help, will appreciate it. Thanks, Tai. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freeswitch.org/pipermail/freeswitch-dev/attachments/20160310/4ae7871a/attachment-0001.html