From paul.muaddib83 at gmail.com Thu May 2 09:23:53 2019 From: paul.muaddib83 at gmail.com (Paul Muaddib) Date: Thu, 2 May 2019 11:23:53 +0200 Subject: [Freeswitch-users] Update DNS SRV records Message-ID: Hi, how can I tell freeswitch to update the *SRV* records or is there a way to force the update without restarting. My provider keeps changing the entries after a few days and if I don't restart freeswitch I can not call out anymore (403) Best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From sanfyduan at gmail.com Fri May 3 01:55:32 2019 From: sanfyduan at gmail.com (Sanfy D) Date: Fri, 3 May 2019 09:55:32 +0800 Subject: [Freeswitch-users] what's the difference between bridge() and session.execute('bridge') in javascript Message-ID: hi all, I write a javascript to bridge two endpoints. The senes is like the following, A(web+sip.js+wrtc) <--->Freeswitch(sofia+javascript) <---> Twilio sip trunking <---> B(pstn phone). I tried two methods in Freeswitch javascript to call from A to B: 1. create new sessionB then bridge A to B: (1) sessionA.answer() and ring back to A, (2) create new session to B via sip bridge, then break sessionA ringback and park sessionB, (3) bridge(sessionA, sessionB) 2. bridge A to B directly without create sessionB: (1) sessionA.answer(), (2) sessionA.execute('bridge','sofia/gateway/32d1440c-d13c-44b3-94da-1589daf6e81b/'+sessionA.getVariable('callee_id_number')); The second one works well. But in the first one, A always loses some audio from B. I use tcpdump on my Freeswitch server to check the connection and find that some UDP packets from Freeswitch to A are lost, but the packets from Twillo to Freeswitch are not lose. It seems that some UDP packet are lost while the Freeswitch relays the udp packets to A. So, what the difference is between the two methods? And how can I fix this problem? I need to use the first method to make the call. Thank! -------------- next part -------------- An HTML attachment was scrubbed... URL: From chad at apartmentlines.com Fri May 3 16:19:44 2019 From: chad at apartmentlines.com (Chad Phillips) Date: Fri, 3 May 2019 09:19:44 -0700 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 Message-ID: Recently I reconfigured my firewall (via Shorewall) to block all inbound traffic to port 5060, except for whitelisted IP addresses from my inbound DID providers. After setup, we ran tests and everything worked fine for all incoming calls across all providers. Then a few hours later, calls from one of our providers started being blocked. All calls from our other providers continued coming through fine. Upon restarting our firewall service, the blocked calls from the single provider started coming through again. Between our successful tests and the start of the issue, there were zero changes made to the server. So why would my firewall suddenly start blocking inbound traffic from a whitelisted IP that it was previously letting through?? -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Fri May 3 17:17:43 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Fri, 3 May 2019 19:17:43 +0200 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: Any fail2ban ? Have you checked if the whitelist was canceled or still there in "iptables -n -v -L"? On Fri, May 3, 2019, 18:20 Chad Phillips wrote: > Recently I reconfigured my firewall (via Shorewall) to block all inbound > traffic to port 5060, except for whitelisted IP addresses from my inbound > DID providers. After setup, we ran tests and everything worked fine for all > incoming calls across all providers. > > Then a few hours later, calls from one of our providers started being > blocked. All calls from our other providers continued coming through fine. > Upon restarting our firewall service, the blocked calls from the single > provider started coming through again. > > Between our successful tests and the start of the issue, there were zero > changes made to the server. > > So why would my firewall suddenly start blocking inbound traffic from a > whitelisted IP that it was previously letting through?? > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From brians at iptel.co Fri May 3 17:40:30 2019 From: brians at iptel.co (Brian :) Date: Fri, 3 May 2019 18:40:30 +0100 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: Hi Chad, that's probably more of a question for the shorewall people.. Maybe there was some ids that thought blocked provider was a bad host for some reason. Shorewall logs good place to start. On Friday, May 3, 2019, Chad Phillips wrote: > Recently I reconfigured my firewall (via Shorewall) to block all inbound traffic to port 5060, except for whitelisted IP addresses from my inbound DID providers. After setup, we ran tests and everything worked fine for all incoming calls across all providers. > Then a few hours later, calls from one of our providers started being blocked. All calls from our other providers continued coming through fine. Upon restarting our firewall service, the blocked calls from the single provider started coming through again. > Between our successful tests and the start of the issue, there were zero changes made to the server. > So why would my firewall suddenly start blocking inbound traffic from a whitelisted IP that it was previously letting through?? > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Fri May 3 17:48:03 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Fri, 3 May 2019 18:48:03 +0100 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: Hello, I'd say this is a question for shorewall. But since you're here, is there maybe some flood-prevention mechanism that would block it? Did you check shorewall's log to try and find the reason it was blocked? Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 On Fri, May 3, 2019 at 6:07 PM Chad Phillips wrote: > Recently I reconfigured my firewall (via Shorewall) to block all inbound > traffic to port 5060, except for whitelisted IP addresses from my inbound > DID providers. After setup, we ran tests and everything worked fine for all > incoming calls across all providers. > > Then a few hours later, calls from one of our providers started being > blocked. All calls from our other providers continued coming through fine. > Upon restarting our firewall service, the blocked calls from the single > provider started coming through again. > > Between our successful tests and the start of the issue, there were zero > changes made to the server. > > So why would my firewall suddenly start blocking inbound traffic from a > whitelisted IP that it was previously letting through?? > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From grcamauer at gmail.com Fri May 3 17:50:34 2019 From: grcamauer at gmail.com (Guillermo Ruiz Camauer) Date: Fri, 3 May 2019 14:50:34 -0300 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: Are you also running fail2ban? Maybe fail2ban is adding the blocking rules because of failed registration attempts o similar. Guillermo On Fri, May 3, 2019 at 2:07 PM Chad Phillips wrote: > Recently I reconfigured my firewall (via Shorewall) to block all inbound > traffic to port 5060, except for whitelisted IP addresses from my inbound > DID providers. After setup, we ran tests and everything worked fine for all > incoming calls across all providers. > > Then a few hours later, calls from one of our providers started being > blocked. All calls from our other providers continued coming through fine. > Upon restarting our firewall service, the blocked calls from the single > provider started coming through again. > > Between our successful tests and the start of the issue, there were zero > changes made to the server. > > So why would my firewall suddenly start blocking inbound traffic from a > whitelisted IP that it was previously letting through?? > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Guillermo Ruiz Camauer -------------- next part -------------- An HTML attachment was scrubbed... URL: From s.safarov at gmail.com Fri May 3 10:58:39 2019 From: s.safarov at gmail.com (Sergey Safarov) Date: Fri, 3 May 2019 13:58:39 +0300 Subject: [Freeswitch-users] Conference RTP issue Message-ID: Hi all I have broken audio for conference call for first 4-7 seconds of call. That is paging call using FS conference. Caller make call to conference and then FS conference dials about 28 phones with "Alert-Info: " header (auto answer for Yealink phones). If you look into RTP stats using Wireshark, then you can see high jitter value for RTP stream from FreeSwitch. Oh jitter graph value is variable. Is anybody observe similar issue? How i can troubleshoot high jitter issue on FS side? call example is attached -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: example.pcap.gz Type: application/gzip Size: 558638 bytes Desc: not available URL: From mario_fs at mgtech.com Fri May 3 21:26:49 2019 From: mario_fs at mgtech.com (mario_fs) Date: Fri, 3 May 2019 14:26:49 -0700 Subject: [Freeswitch-users] Wiki is MUCH faster after the down day Message-ID: I didn’t see a comment here about the wiki update but after the down day I noticed the wiki web site averages triple it’s previous speed here on the west coast. Whatever was done worked very well. Mario G From brian at freeswitch.com Fri May 3 21:46:03 2019 From: brian at freeswitch.com (Brian West) Date: Fri, 3 May 2019 16:46:03 -0500 Subject: [Freeswitch-users] Wiki is MUCH faster after the down day In-Reply-To: References: Message-ID: Mario, Thanks for noticing that! :) /b On Fri, May 3, 2019 at 4:33 PM mario_fs wrote: > I didn’t see a comment here about the wiki update but after the down day I > noticed the wiki web site averages triple it’s previous speed here on the > west coast. Whatever was done worked very well. > Mario G > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From ch.chhatra at gmail.com Sat May 4 05:21:06 2019 From: ch.chhatra at gmail.com (Chhorm Chhatra) Date: Sat, 4 May 2019 12:21:06 +0700 Subject: [Freeswitch-users] Common Variable for CDR in Call Transfers Message-ID: Hi, If you do not mind, may I know is there any way to group CDR records together? Currently, I would like to associate all CDR records made by Leg A regardless of how many time it has been transferred. Is there any common variable, tool or API to do this? Any help would be greatly appreciated. Thank you. Best Regards Chhorm Chhatra -------------- next part -------------- An HTML attachment was scrubbed... URL: From babak.freeswitch at gmail.com Sat May 4 11:43:30 2019 From: babak.freeswitch at gmail.com (Babak Yakhchali) Date: Sat, 4 May 2019 16:13:30 +0430 Subject: [Freeswitch-users] Building on win 10 using visual studio community edition failse In-Reply-To: References: Message-ID: building on same machine and same sdk with vs enterprise succeeded On Tue, Apr 30, 2019 at 3:39 PM Babak Yakhchali wrote: > Hi > I'm trying to build fs 1.8.5 using vs community edition. Is it possible > or I need other editions of vs? > build fails with: > C:\Program Files (x86)\Microsoft Visual > Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(209,5): > error MSB6006: "cmd.exe" exited with code -1073741515 > Done building project "libvpx.2017.vcxproj" -- FAILED > > tried with both win 10 sdk 10.0.17763.0 and 8.1 > thanks > -------------- next part -------------- An HTML attachment was scrubbed... URL: From k4kaleem at gmail.com Sat May 4 14:24:18 2019 From: k4kaleem at gmail.com (kaleem rehman) Date: Sat, 4 May 2019 15:24:18 +0100 Subject: [Freeswitch-users] issue with Ring Groups playing a message to B-Leg only Message-ID: Hi All, i have an incoming SIP number, i want callee to hear a message on pick up to tell them what line call is on. on the incoming call if i bridge it to extension directly i can achieve this successfully, method i used is as below; then i use transfer method where 2000 is extension number when i change 2000 to 1000 which is RING GROUP and ring group rings ext 2000 i dont hear the message. i have added these two line to ring group as well (xml below for ring group) but i do not hear the audio. regards, Kaleem -------------- next part -------------- An HTML attachment was scrubbed... URL: From chad at apartmentlines.com Sat May 4 15:36:22 2019 From: chad at apartmentlines.com (Chad Phillips) Date: Sat, 4 May 2019 08:36:22 -0700 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: It wasn't a fail2ban issue... This particular provider says they only send SIP traffic over UDP, and I had only opened TCP traffic to port 5060 in my firewall. The part I don't understand is how I was able to receive any calls at all from them without UDP/5060 open -- it worked for hours with my new firewall config up. That's just weird... Also, can anybody explain why a provider would use UDP for SIP traffic? >From my brief reading of the spec, it does seem to be a valid protocol to use, but UDP's fire and forget approach seems a poor choice for this task. On Fri, May 3, 2019 at 11:56 AM David Villasmil < david.villasmil.work at gmail.com> wrote: > Hello, > > I'd say this is a question for shorewall. But since you're here, is there > maybe some flood-prevention mechanism that would block it? Did you check > shorewall's log to try and find the reason it was blocked? > > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > > > On Fri, May 3, 2019 at 6:07 PM Chad Phillips > wrote: > >> Recently I reconfigured my firewall (via Shorewall) to block all inbound >> traffic to port 5060, except for whitelisted IP addresses from my inbound >> DID providers. After setup, we ran tests and everything worked fine for all >> incoming calls across all providers. >> >> Then a few hours later, calls from one of our providers started being >> blocked. All calls from our other providers continued coming through fine. >> Upon restarting our firewall service, the blocked calls from the single >> provider started coming through again. >> >> Between our successful tests and the start of the issue, there were zero >> changes made to the server. >> >> So why would my firewall suddenly start blocking inbound traffic from a >> whitelisted IP that it was previously letting through?? >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Sat May 4 17:27:33 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Sat, 4 May 2019 19:27:33 +0200 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: Ahem, udp is the original and standard transport for SIP, tcp is a little minority, kind of an afterthought and few providers support it On Sat, May 4, 2019, 18:51 Chad Phillips wrote: > It wasn't a fail2ban issue... > > This particular provider says they only send SIP traffic over UDP, and I > had only opened TCP traffic to port 5060 in my firewall. > > The part I don't understand is how I was able to receive any calls at all > from them without UDP/5060 open -- it worked for hours with my new firewall > config up. That's just weird... > > Also, can anybody explain why a provider would use UDP for SIP traffic? > From my brief reading of the spec, it does seem to be a valid protocol to > use, but UDP's fire and forget approach seems a poor choice for this task. > > On Fri, May 3, 2019 at 11:56 AM David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> Hello, >> >> I'd say this is a question for shorewall. But since you're here, is there >> maybe some flood-prevention mechanism that would block it? Did you check >> shorewall's log to try and find the reason it was blocked? >> >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> >> >> On Fri, May 3, 2019 at 6:07 PM Chad Phillips >> wrote: >> >>> Recently I reconfigured my firewall (via Shorewall) to block all inbound >>> traffic to port 5060, except for whitelisted IP addresses from my inbound >>> DID providers. After setup, we ran tests and everything worked fine for all >>> incoming calls across all providers. >>> >>> Then a few hours later, calls from one of our providers started being >>> blocked. All calls from our other providers continued coming through fine. >>> Upon restarting our firewall service, the blocked calls from the single >>> provider started coming through again. >>> >>> Between our successful tests and the start of the issue, there were zero >>> changes made to the server. >>> >>> So why would my firewall suddenly start blocking inbound traffic from a >>> whitelisted IP that it was previously letting through?? >>> >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Sat May 4 18:04:43 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Sat, 4 May 2019 20:04:43 +0200 Subject: [Freeswitch-users] Wiki is MUCH faster after the down day In-Reply-To: References: Message-ID: +5! On Sat, May 4, 2019, 00:31 Brian West wrote: > Mario, > > Thanks for noticing that! :) > > /b > > > On Fri, May 3, 2019 at 4:33 PM mario_fs wrote: > >> I didn’t see a comment here about the wiki update but after the down day >> I noticed the wiki web site averages triple it’s previous speed here on the >> west coast. Whatever was done worked very well. >> Mario G >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From chad at apartmentlines.com Sun May 5 06:50:23 2019 From: chad at apartmentlines.com (Chad Phillips) Date: Sat, 4 May 2019 23:50:23 -0700 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: Thanks for the insight Giovanni, I appreciate it! On Sat, May 4, 2019 at 10:50 AM Giovanni Maruzzelli wrote: > Ahem, udp is the original and standard transport for SIP, tcp is a little > minority, kind of an afterthought and few providers support it > > > > On Sat, May 4, 2019, 18:51 Chad Phillips wrote: > >> It wasn't a fail2ban issue... >> >> This particular provider says they only send SIP traffic over UDP, and I >> had only opened TCP traffic to port 5060 in my firewall. >> >> The part I don't understand is how I was able to receive any calls at all >> from them without UDP/5060 open -- it worked for hours with my new firewall >> config up. That's just weird... >> >> Also, can anybody explain why a provider would use UDP for SIP traffic? >> From my brief reading of the spec, it does seem to be a valid protocol to >> use, but UDP's fire and forget approach seems a poor choice for this task. >> >> On Fri, May 3, 2019 at 11:56 AM David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> Hello, >>> >>> I'd say this is a question for shorewall. But since you're here, is >>> there maybe some flood-prevention mechanism that would block it? Did you >>> check shorewall's log to try and find the reason it was blocked? >>> >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> >>> >>> On Fri, May 3, 2019 at 6:07 PM Chad Phillips >>> wrote: >>> >>>> Recently I reconfigured my firewall (via Shorewall) to block all >>>> inbound traffic to port 5060, except for whitelisted IP addresses from my >>>> inbound DID providers. After setup, we ran tests and everything worked fine >>>> for all incoming calls across all providers. >>>> >>>> Then a few hours later, calls from one of our providers started being >>>> blocked. All calls from our other providers continued coming through fine. >>>> Upon restarting our firewall service, the blocked calls from the single >>>> provider started coming through again. >>>> >>>> Between our successful tests and the start of the issue, there were >>>> zero changes made to the server. >>>> >>>> So why would my firewall suddenly start blocking inbound traffic from a >>>> whitelisted IP that it was previously letting through?? >>>> >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sanfyduan at gmail.com Sat May 4 15:22:43 2019 From: sanfyduan at gmail.com (Sanfy D) Date: Sat, 4 May 2019 23:22:43 +0800 Subject: [Freeswitch-users] Bridge Issue, What's the difference between bridge() and session.execute('bridge') in javascript In-Reply-To: References: Message-ID: hi all, I write a javascript to bridge two endpoints. The senes is like the following, A(web+sip.js+wrtc) <--->Freeswitch(sofia+javascript) <---> Twilio sip trunking <---> B(pstn phone). I tried two methods in Freeswitch javascript to call from A to B: 1. create new sessionB then bridge A to B: (1) sessionA.answer() and ring back to A, (2) create new session to B via sip bridge, then break sessionA ringback and park sessionB, (3) bridge(sessionA, sessionB) 2. bridge A to B directly without create sessionB: (1) sessionA.answer(), (2) sessionA.execute('bridge','sofia/gateway/32d1440c-d13c-44b3-94da-1589daf6e81b/'+sessionA.getVariable('callee_id_number')); The second one works well. But in the first one, A always loses some audio from B. I use tcpdump on my Freeswitch server to check the connection and find that some UDP packets from Freeswitch to A are lost, but the packets from Twillo to Freeswitch are not lose. It seems that some UDP packets are lost while the Freeswitch relays the udp packets to A. So, what the difference is between the two methods? And how can I fix this problem? I need to use the first method to make the call. Thank! -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexander at neilson.net.nz Sun May 5 08:59:17 2019 From: alexander at neilson.net.nz (Alexander Neilson) Date: Sun, 5 May 2019 20:59:17 +1200 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: Hi Chad To slightly expand on Giovanni's reply your line "but UDP's fire and forget approach seems a poor choice for this task." made me think you may be appreciative of some of the reasons that services select particular protocols with a specific focus on voice calling. You have correctly identified that UDP is "fire and forget", but this does leave a bit of an understanding of what is happening where in the system. The better way to look at it is to think about TCP being a connection oriented protocol (where the protocol stack establishes and maintains a connection) where the stack promises to provide in order delivery of packets to the application sitting up the stack. The application doesn't need to manage packet ordering, re transmission, etc. On the other hand with UDP the simplified protocol stack doesn't provide the guarantees above meaning that any of these that the application wants then it needs to handle them itself. So when thinking about voice services customers / users often expect a perception of immediacy from older circuit switched phone systems (or from other experiences) and as operators of systems we often want to seem responsive even if we have to failover to alternative routes. So for this we can actively retry quickly with an upstream carrier (or downstream user) and if no reply again failover quickly to another carrier / route without having to setup and tear down all the TCP sessions (the three way handshake to setup - and again to close down - a TCP session adds packet round trips to every session) before sending the call request through making things faster and more responsive. These reasons for SIP signalling going over UDP rather than TCP is similar but separate to why the media is usually exchanged over UDP as well. Obviously for the media we don't fail over to other carriers. However once a media packet doesn't reach the other side in order / in time then that packet is usually useless to receive (so no reason to have the protocol retransmit that packet) so using UDP makes the best sense in these situations. For loading a website on the internet you don't want to lose part of the page at random, but when we don't need all the features we pick and choose which features are needed to make the system work optimally. Apologies if this was seen as out of place in the conversation, but I hoped it may help you Chad understand and as something people might stumble over. I am happy to discuss if people want to and happy to take any additions to ensure its as clear but accurate as possible. Regards Alexander Alexander Neilson Neilson Productions Limited alexander at neilson.net.nz 021 329 681 022 456 2326 On Sun, 5 May 2019 at 19:18, Chad Phillips wrote: > Thanks for the insight Giovanni, I appreciate it! > > On Sat, May 4, 2019 at 10:50 AM Giovanni Maruzzelli > wrote: > >> Ahem, udp is the original and standard transport for SIP, tcp is a little >> minority, kind of an afterthought and few providers support it >> >> >> >> On Sat, May 4, 2019, 18:51 Chad Phillips wrote: >> >>> It wasn't a fail2ban issue... >>> >>> This particular provider says they only send SIP traffic over UDP, and I >>> had only opened TCP traffic to port 5060 in my firewall. >>> >>> The part I don't understand is how I was able to receive any calls at >>> all from them without UDP/5060 open -- it worked for hours with my new >>> firewall config up. That's just weird... >>> >>> Also, can anybody explain why a provider would use UDP for SIP traffic? >>> From my brief reading of the spec, it does seem to be a valid protocol to >>> use, but UDP's fire and forget approach seems a poor choice for this task. >>> >>> On Fri, May 3, 2019 at 11:56 AM David Villasmil < >>> david.villasmil.work at gmail.com> wrote: >>> >>>> Hello, >>>> >>>> I'd say this is a question for shorewall. But since you're here, is >>>> there maybe some flood-prevention mechanism that would block it? Did you >>>> check shorewall's log to try and find the reason it was blocked? >>>> >>>> Regards, >>>> >>>> David Villasmil >>>> email: david.villasmil.work at gmail.com >>>> phone: +34669448337 >>>> >>>> >>>> On Fri, May 3, 2019 at 6:07 PM Chad Phillips >>>> wrote: >>>> >>>>> Recently I reconfigured my firewall (via Shorewall) to block all >>>>> inbound traffic to port 5060, except for whitelisted IP addresses from my >>>>> inbound DID providers. After setup, we ran tests and everything worked fine >>>>> for all incoming calls across all providers. >>>>> >>>>> Then a few hours later, calls from one of our providers started being >>>>> blocked. All calls from our other providers continued coming through fine. >>>>> Upon restarting our firewall service, the blocked calls from the single >>>>> provider started coming through again. >>>>> >>>>> Between our successful tests and the start of the issue, there were >>>>> zero changes made to the server. >>>>> >>>>> So why would my firewall suddenly start blocking inbound traffic from >>>>> a whitelisted IP that it was previously letting through?? >>>>> >>>>> >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ko at sv01.de Sun May 5 09:31:01 2019 From: ko at sv01.de (Kevin Olbrich) Date: Sun, 5 May 2019 11:31:01 +0200 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: ... the reason TCP also works "mostly" most likely will be the sip helper which is loaded by default on shorewall. It will automatically punch holes into your firewall to make the protocols work (similiar to FTP, etc.). I've also noticed problems with bad SIP packets (bots) that cause the sip helper to stall which would lead to the problem you described. Kevin Am Sa., 4. Mai 2019 um 18:14 Uhr schrieb Chad Phillips < chad at apartmentlines.com>: > It wasn't a fail2ban issue... > > This particular provider says they only send SIP traffic over UDP, and I > had only opened TCP traffic to port 5060 in my firewall. > > The part I don't understand is how I was able to receive any calls at all > from them without UDP/5060 open -- it worked for hours with my new firewall > config up. That's just weird... > > Also, can anybody explain why a provider would use UDP for SIP traffic? > From my brief reading of the spec, it does seem to be a valid protocol to > use, but UDP's fire and forget approach seems a poor choice for this task. > > On Fri, May 3, 2019 at 11:56 AM David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> Hello, >> >> I'd say this is a question for shorewall. But since you're here, is there >> maybe some flood-prevention mechanism that would block it? Did you check >> shorewall's log to try and find the reason it was blocked? >> >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> >> >> On Fri, May 3, 2019 at 6:07 PM Chad Phillips >> wrote: >> >>> Recently I reconfigured my firewall (via Shorewall) to block all inbound >>> traffic to port 5060, except for whitelisted IP addresses from my inbound >>> DID providers. After setup, we ran tests and everything worked fine for all >>> incoming calls across all providers. >>> >>> Then a few hours later, calls from one of our providers started being >>> blocked. All calls from our other providers continued coming through fine. >>> Upon restarting our firewall service, the blocked calls from the single >>> provider started coming through again. >>> >>> Between our successful tests and the start of the issue, there were zero >>> changes made to the server. >>> >>> So why would my firewall suddenly start blocking inbound traffic from a >>> whitelisted IP that it was previously letting through?? >>> >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Sun May 5 22:08:02 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Mon, 6 May 2019 00:08:02 +0200 Subject: [Freeswitch-users] Firewall mysteriously starts blocking calls to port 5060 In-Reply-To: References: Message-ID: On Sun, May 5, 2019 at 11:15 PM Kevin Olbrich wrote: > ... the reason TCP also works "mostly" most likely will be the sip helper > which is loaded by default on shorewall. > ouch! Thanks Kevin, very very good to know (and scary, for a control freak)! -giovanni > It will automatically punch holes into your firewall to make the protocols > work (similiar to FTP, etc.). > I've also noticed problems with bad SIP packets (bots) that cause the sip > helper to stall which would lead to the problem you described. > > Kevin > > > Am Sa., 4. Mai 2019 um 18:14 Uhr schrieb Chad Phillips < > chad at apartmentlines.com>: > >> It wasn't a fail2ban issue... >> >> This particular provider says they only send SIP traffic over UDP, and I >> had only opened TCP traffic to port 5060 in my firewall. >> >> The part I don't understand is how I was able to receive any calls at all >> from them without UDP/5060 open -- it worked for hours with my new firewall >> config up. That's just weird... >> >> Also, can anybody explain why a provider would use UDP for SIP traffic? >> From my brief reading of the spec, it does seem to be a valid protocol to >> use, but UDP's fire and forget approach seems a poor choice for this task. >> >> On Fri, May 3, 2019 at 11:56 AM David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> Hello, >>> >>> I'd say this is a question for shorewall. But since you're here, is >>> there maybe some flood-prevention mechanism that would block it? Did you >>> check shorewall's log to try and find the reason it was blocked? >>> >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> >>> >>> On Fri, May 3, 2019 at 6:07 PM Chad Phillips >>> wrote: >>> >>>> Recently I reconfigured my firewall (via Shorewall) to block all >>>> inbound traffic to port 5060, except for whitelisted IP addresses from my >>>> inbound DID providers. After setup, we ran tests and everything worked fine >>>> for all incoming calls across all providers. >>>> >>>> Then a few hours later, calls from one of our providers started being >>>> blocked. All calls from our other providers continued coming through fine. >>>> Upon restarting our firewall service, the blocked calls from the single >>>> provider started coming through again. >>>> >>>> Between our successful tests and the start of the issue, there were >>>> zero changes made to the server. >>>> >>>> So why would my firewall suddenly start blocking inbound traffic from a >>>> whitelisted IP that it was previously letting through?? >>>> >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Sincerely, Giovanni Maruzzelli OpenTelecom.IT cell: +39 347 266 56 18 -------------- next part -------------- An HTML attachment was scrubbed... URL: From devang.nathwani31589 at gmail.com Mon May 6 07:31:27 2019 From: devang.nathwani31589 at gmail.com (devang nathwani) Date: Mon, 6 May 2019 13:01:27 +0530 Subject: [Freeswitch-users] 'To' number modifcation In-Reply-To: References: Message-ID: Hell Team, Any hint or suggestion please? On Wed, May 1, 2019 at 3:58 AM devang nathwani < devang.nathwani31589 at gmail.com> wrote: > Hello Brian, > > Thanks for the response. > The DID number is 12324 > bridge({sip_to_user=12324}[leg_timeout=15]user/1037568620 at 192.168.1.32 > This is the bridge string i am using to route the DID number. > > So when anybody for outside system dials DID 12324, FS will route it to > device 1037568620 which is registered at destination pbx. > Now for FS 1037568620 is destination number so I see '1037568620' in to > username in sip trace, but i want to set destination number as 12424 > instead. > > On Mon, Apr 29, 2019 at 10:53 PM Brian West wrote: > >> You use the ^ in your bridge line, can you show me your current bridge >> line and example? >> >> /b >> >> >> On Mon, Apr 29, 2019 at 11:18 AM devang nathwani < >> devang.nathwani31589 at gmail.com> wrote: >> >>> Hello Team, >>> >>> I have idea to modify from user, contact user from dialplan variable as >>> well as channel variables but can we modify to number by any variables? >>> >>> The scenario is like this, >>> My switch's device registered as trunk to destination switch, which is >>> having dynamic ip(not having fqdn) >>> So I am routing the DID number from my switch to that device which is >>> registered as trunk to destination switch, but I need that device as bridge >>> only to connect my switch with destination switch and send the call to >>> another destination number. >>> >>> How can I achieve this by any variables? >>> Thanks in advance. >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vishalmpai at gmail.com Mon May 6 09:48:59 2019 From: vishalmpai at gmail.com (Vishal Pai) Date: Mon, 6 May 2019 15:18:59 +0530 Subject: [Freeswitch-users] G729 Clarification Message-ID: Hello Everyone I am having some confusion regarding the codec G729. As i know the G729 codec is available on freeswitch as a commerical module but there some module like mod_bcg729. Just want to know what is difference between them. Thank You Vishal Pai -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 6 13:30:36 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 6 May 2019 08:30:36 -0500 Subject: [Freeswitch-users] Abuse of files.freeswitch.org In-Reply-To: <01e001d4ff66$9bf32fa0$d3d98ee0$@smartic.es> References: <01e001d4ff66$9bf32fa0$d3d98ee0$@smartic.es> Message-ID: This isn't related, Sounds lik eyou're missing a key possibly. On Tue, Apr 30, 2019 at 10:09 AM Miguel Jesús López Valverde < mjlopez at smartic.es> wrote: > Hello Brian: > > > > Thank you for this information. Today I am getting problems when I try to > download the Freeswich 1.8 sources, with its public key. Mi ip is > 51.38.62.158. > > > > > > apt-get update > > Ign:1 http://debian.mirrors.ovh.net/debian stretch InRelease > > Get:2 http://debian.mirrors.ovh.net/debian stretch-updates InRelease > [91.0 kB] > > Get:3 http://debian.mirrors.ovh.net/debian stretch Release [118 kB] > > Hit:4 http://security.debian.org/debian-security stretch/updates InRelease > > Get:5 https://last-public-ovh-rtm.snap.mirrors.ovh.net/debian stretch > InRelease [4,902 B] > > Get:6 https://last-public-ovh-kernel.snap.mirrors.ovh.net/debian > ovhkernel InRelease [4,930 B] > > Get:7 https://last-public-ovh-metrics.snap.mirrors.ovh.net/debian stretch > InRelease [4,905 B] > > Get:9 http://files.freeswitch.org/repo/deb/freeswitch-1.8 stretch > InRelease [3,210 B] > > Ign:9 http://files.freeswitch.org/repo/deb/freeswitch-1.8 stretch > InRelease > > Fetched 227 kB in 1s (200 kB/s) > > Reading package lists... Done > > W: GPG error: http://files.freeswitch.org/repo/deb/freeswitch-1.8 stretch > InRelease: The following signatures couldn't be verified because the public > key is not available: NO_PUBKEY BD3189F5A2B57698 > > W: The repository 'http://files.freeswitch.org/repo/deb/freeswitch-1.8 > stretch InRelease' is not signed. > > N: Data from such a repository can't be authenticated and is therefore > potentially dangerous to use. > > N: See apt-secure(8) manpage for repository creation and user > configuration details. > > > > > > I send this information to you in case it is related to what you report > and if it can help you in your follow-up. > > > > Receive a greeting > > > > > > Miguel J. López. > > > > *De:* FreeSWITCH-users [mailto: > freeswitch-users-bounces at lists.freeswitch.org] *En nombre de *Brian West > *Enviado el:* martes, 30 de abril de 2019 15:43 > *Para:* FreeSWITCH Users Help > *Asunto:* [Freeswitch-users] Abuse of files.freeswitch.org > > > > FreeSWITCHers, > > > > I have found over 2000 IP Addresses that are abusing the files repo, If > you happen to be one that has been blocked please email me directly to > resolve your access. This isn't about resources, it isn't about us needing > mirrors, its blatant abuse. The few that have come forward and resolved > their issues had no idea they were doing this, They have various scripts > that have gone off the rails and they are investigating and resolving the > issue. > > > > AKA When Automation Goes Wrong! > > > > Thanks, > > Brian > > > > -- > > > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > > > Libre > de virus. www.avast.com > > <#m_7336366830895205663_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 6 13:32:11 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 6 May 2019 08:32:11 -0500 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: The one we sell supports the project, the other one that we don't sell doesn't support the project. /b On Mon, May 6, 2019 at 4:49 AM Vishal Pai wrote: > Hello Everyone > > I am having some confusion regarding the codec G729. As i know the G729 > codec is available on freeswitch as a commerical module but there some > module like mod_bcg729. Just want to know what is difference between them. > > > Thank You > Vishal Pai > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From mario_fs at mgtech.com Mon May 6 16:47:25 2019 From: mario_fs at mgtech.com (mario_fs) Date: Mon, 6 May 2019 09:47:25 -0700 Subject: [Freeswitch-users] Wiki is MUCH faster after the down day In-Reply-To: References: Message-ID: I forgot to mention that although the wiki is way faster, I noticed downloading the sounds got very slow completed to before, like 1/10th the speed. I noticed this because I test compiling master on MacOS weekly and I think the slowdown occurred in the last month. Not a big deal just an FYI. > On May 4, 2019, at 11:04 AM, Giovanni Maruzzelli wrote: > > +5! > > > > On Sat, May 4, 2019, 00:31 Brian West > wrote: > Mario, > > Thanks for noticing that! :) > > /b > > > On Fri, May 3, 2019 at 4:33 PM mario_fs > wrote: > I didn’t see a comment here about the wiki update but after the down day I noticed the wiki web site averages triple it’s previous speed here on the west coast. Whatever was done worked very well. > Mario G > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > -- > > Brian West | Co-founder and Developer > Need Commercial support? email sales at freeswitch.com > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > Email: brian at freeswitch.com > Mobile: 918-424-9378 > Website: https://www.FreeSWITCH.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Mon May 6 18:30:25 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Mon, 6 May 2019 19:30:25 +0100 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: So, really, for 10 bucks per channel, just get the commercial one. Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 On Mon, May 6, 2019 at 2:42 PM Brian West wrote: > The one we sell supports the project, the other one that we don't sell > doesn't support the project. > > /b > > > On Mon, May 6, 2019 at 4:49 AM Vishal Pai wrote: > >> Hello Everyone >> >> I am having some confusion regarding the codec G729. As i know the G729 >> codec is available on freeswitch as a commerical module but there some >> module like mod_bcg729. Just want to know what is difference between them. >> >> >> Thank You >> Vishal Pai >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Mon May 6 19:00:37 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Mon, 6 May 2019 13:00:37 -0600 Subject: [Freeswitch-users] isfocus parameter in Contact header Message-ID: Hi all, I am relatively new to Freeswitch and I am looking for a way to add isfocus parameter in the Contact header of 200 OK (INVITE response) from the freeswitch. I found channel variable sip_contact_params that can be set in dialplan as below, but it doesnt seem to help. Am I missing something or doing something wrong here? ** From frederick at targointernet.com Mon May 6 14:08:18 2019 From: frederick at targointernet.com (=?UTF-8?Q?Fr=c3=a9d=c3=a9rick_Pruneau?=) Date: Mon, 6 May 2019 10:08:18 -0400 Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database Message-ID: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> Hi guys, I have an issue with FS unable to reconnect to postgresql database. Here is the setup: 2 FreeSWITCH servers with 2 postgresql servers. Each freeswitch is connected to 1 postgresql server. DB servers are synced with BDR. It was working very well until I restarted freeswitch service on one of the servers. Then, I got theses errors showing up on freeswitch console: switch_pgsql.c:384 Query X took too long to complete or database not responding. database is locked against ddl by another node I followed some guides to remove locks with these commands: SELECT * FROM pg_stat_activity; SELECT pg_terminate_backend(${pid}); But the issue is still there. Do you have an idea how to fix this issue? Thanks. From jprangi at didforsale.com Mon May 6 18:36:27 2019 From: jprangi at didforsale.com (Jai Rangi) Date: Mon, 6 May 2019 11:36:27 -0700 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: I would 2nd on that. This works well, easy to install and setup. And that's how you support the development of this project. *Jai Rangi* Cebod Technologies LLC dba DIDforSale/Cebod Telecom O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / 949-232-1410 | jprangi at didforsale.com www.cebod.com | www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614| On Mon, May 6, 2019 at 11:31 AM David Villasmil < david.villasmil.work at gmail.com> wrote: > So, really, for 10 bucks per channel, just get the commercial one. > > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > > > On Mon, May 6, 2019 at 2:42 PM Brian West wrote: > >> The one we sell supports the project, the other one that we don't sell >> doesn't support the project. >> >> /b >> >> >> On Mon, May 6, 2019 at 4:49 AM Vishal Pai wrote: >> >>> Hello Everyone >>> >>> I am having some confusion regarding the codec G729. As i know the G729 >>> codec is available on freeswitch as a commerical module but there some >>> module like mod_bcg729. Just want to know what is difference between them. >>> >>> >>> Thank You >>> Vishal Pai >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.muaddib83 at gmail.com Mon May 6 20:04:43 2019 From: paul.muaddib83 at gmail.com (Paul Muaddib) Date: Mon, 6 May 2019 22:04:43 +0200 Subject: [Freeswitch-users] Update DNS SRV records In-Reply-To: References: Message-ID: Really nobody with the same problem? Am Do., 2. Mai 2019 um 11:23 Uhr schrieb Paul Muaddib < paul.muaddib83 at gmail.com>: > Hi, > > how can I tell freeswitch to update the *SRV* records or is there a way > to force the update without restarting. My provider keeps changing the > entries after a few days and if I don't restart freeswitch I can not call > out anymore (403) > > Best regards > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 6 20:33:39 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 6 May 2019 15:33:39 -0500 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: Thank you everyone for your support. It does mean a lot to us. /b On Mon, May 6, 2019 at 2:29 PM Jai Rangi wrote: > I would 2nd on that. This works well, easy to install and setup. And > that's how you support the development of this project. > > > *Jai Rangi* > Cebod Technologies LLC dba DIDforSale/Cebod Telecom > O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / > 949-232-1410 | jprangi at didforsale.com www.cebod.com | www.didforsale.com > |2372 Morse Ave., Ste. 124, Irvine, CA 92614| > > > > > > > > On Mon, May 6, 2019 at 11:31 AM David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> So, really, for 10 bucks per channel, just get the commercial one. >> >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> >> >> On Mon, May 6, 2019 at 2:42 PM Brian West wrote: >> >>> The one we sell supports the project, the other one that we don't sell >>> doesn't support the project. >>> >>> /b >>> >>> >>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai wrote: >>> >>>> Hello Everyone >>>> >>>> I am having some confusion regarding the codec G729. As i know the G729 >>>> codec is available on freeswitch as a commerical module but there some >>>> module like mod_bcg729. Just want to know what is difference between them. >>>> >>>> >>>> Thank You >>>> Vishal Pai >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> >>> Brian West | Co-founder and Developer >>> >>> Need Commercial support? email sales at freeswitch.com >>> >>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>> >>> >>> Email: brian at freeswitch.com >>> >>> Mobile: 918-424-9378 >>> >>> Website: https://www.FreeSWITCH.com >>> >>> [image: https://www.facebook.com/signalwireinc?src=email] >>> [image: >>> https://twitter.com/freeswitch] >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 6 20:34:28 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 6 May 2019 15:34:28 -0500 Subject: [Freeswitch-users] isfocus parameter in Contact header In-Reply-To: References: Message-ID: Is this for a conference call? aka rfc4579? On Mon, May 6, 2019 at 2:01 PM Ramesh Kandasamy wrote: > Hi all, > > I am relatively new to Freeswitch and I am looking for a way to add > isfocus parameter in the Contact header of 200 OK (INVITE response) from > the freeswitch. I found channel variable sip_contact_params that can be set > in dialplan as below, but it doesnt seem to help. Am I missing something or > doing something wrong here? > > > ** > > Please advise. > > Thanks > Ramesh > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 6 20:35:16 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 6 May 2019 15:35:16 -0500 Subject: [Freeswitch-users] isfocus parameter in Contact header In-Reply-To: References: Message-ID: D'oh just add rfc-4579 to your conference profile flags, There should be an example in the defaults. /b On Mon, May 6, 2019 at 3:34 PM Brian West wrote: > Is this for a conference call? aka rfc4579? > > On Mon, May 6, 2019 at 2:01 PM Ramesh Kandasamy > wrote: > >> Hi all, >> >> I am relatively new to Freeswitch and I am looking for a way to add >> isfocus parameter in the Contact header of 200 OK (INVITE response) from >> the freeswitch. I found channel variable sip_contact_params that can be set >> in dialplan as below, but it doesnt seem to help. Am I missing something or >> doing something wrong here? >> >> >> ** >> > >> Please advise. >> >> Thanks >> Ramesh >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From lconroy at insensate.co.uk Mon May 6 21:12:55 2019 From: lconroy at insensate.co.uk (Lawrence Conroy) Date: Mon, 6 May 2019 22:12:55 +0100 Subject: [Freeswitch-users] Update DNS SRV records In-Reply-To: References: Message-ID: <8F74794A-50F0-42AA-862D-39CD9BAED974@insensate.co.uk> Hi They may do; they may not. It's hard to tell when the question is that confusing. 1. IIUC, fS doesn't update local DNS records at all. (it could, but you'd need to write something external to do the DNS update). 2. you talk of not being able to call OUT. That's good, as it means there is no need to update your domain's DNS records. I assume that what you mean is that your provider changes its SRV records every couple of days. You have a gateway entry in your fS config for that provider. That gateway spec has a defined domain name for the server. I think that you want to know how to tell your fS to re-lookup the SRV records for that gateway's domain while running, as the SRV records in that provider's DNS changes regularly. I can't help on the details of fS's DNS lookup code, but is that the actual problem you have and so the question you want to ask? br, Lawrence On 6 May 2019, at 21:04, Paul Muaddib wrote: > Really nobody with the same problem? > > Am Do., 2. Mai 2019 um 11:23 Uhr schrieb Paul Muaddib : > Hi, > > how can I tell freeswitch to update the SRV records or is there a way to force the update without restarting. My provider keeps changing the entries after a few days and if I don't restart freeswitch I can not call out anymore (403) > > Best regards > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com From ramelcom at gmail.com Mon May 6 21:17:47 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Mon, 6 May 2019 15:17:47 -0600 Subject: [Freeswitch-users] isfocus parameter in Contact header In-Reply-To: References: Message-ID: Yes. It is for conference calls 4579. Will try adding profile flag. Thanks for pointer On Mon, May 6, 2019, 3:13 PM Brian West wrote: > Is this for a conference call? aka rfc4579? > > On Mon, May 6, 2019 at 2:01 PM Ramesh Kandasamy > wrote: > >> Hi all, >> >> I am relatively new to Freeswitch and I am looking for a way to add >> isfocus parameter in the Contact header of 200 OK (INVITE response) from >> the freeswitch. I found channel variable sip_contact_params that can be set >> in dialplan as below, but it doesnt seem to help. Am I missing something or >> doing something wrong here? >> >> >> ** >> > >> Please advise. >> >> Thanks >> Ramesh >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Mon May 6 22:32:43 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Mon, 6 May 2019 16:32:43 -0600 Subject: [Freeswitch-users] isfocus parameter in Contact header In-Reply-To: References: Message-ID: Hi Brian, I see rfc-4579 is already configured in my conference profile for conference-flags as below. in my profile (video-mcu-stereo): in my dialplan: Is there anything else am missing? SIP UA calls FS (via INVITE) and am expecting FS to add isFocus parameter in Contact header of its response (200 OK). Thanks Ramesh On Mon, May 6, 2019 at 3:17 PM Ramesh Kandasamy wrote: > Yes. It is for conference calls 4579. Will try adding profile flag. > > Thanks for pointer > > On Mon, May 6, 2019, 3:13 PM Brian West wrote: > >> Is this for a conference call? aka rfc4579? >> >> On Mon, May 6, 2019 at 2:01 PM Ramesh Kandasamy >> wrote: >> >>> Hi all, >>> >>> I am relatively new to Freeswitch and I am looking for a way to add >>> isfocus parameter in the Contact header of 200 OK (INVITE response) from >>> the freeswitch. I found channel variable sip_contact_params that can be set >>> in dialplan as below, but it doesnt seem to help. Am I missing something or >>> doing something wrong here? >>> >>> >>> ** >>> >> >>> Please advise. >>> >>> Thanks >>> Ramesh >>> >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Mon May 6 22:48:09 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Mon, 6 May 2019 16:48:09 -0600 Subject: [Freeswitch-users] isfocus parameter in Contact header In-Reply-To: References: Message-ID: I think I figured it out. I missed 'is_conference' for answer as below. Thanks again for your help ! Thanks Ramesh On Mon, May 6, 2019 at 4:32 PM Ramesh Kandasamy wrote: > Hi Brian, > > I see rfc-4579 is already configured in my conference profile for > conference-flags as below. > > in my profile (video-mcu-stereo): > > > > in my dialplan: > > > Is there anything else am missing? > > SIP UA calls FS (via INVITE) and am expecting FS to add isFocus parameter > in Contact header of its response (200 OK). > > Thanks > Ramesh > > On Mon, May 6, 2019 at 3:17 PM Ramesh Kandasamy > wrote: > >> Yes. It is for conference calls 4579. Will try adding profile flag. >> >> Thanks for pointer >> >> On Mon, May 6, 2019, 3:13 PM Brian West wrote: >> >>> Is this for a conference call? aka rfc4579? >>> >>> On Mon, May 6, 2019 at 2:01 PM Ramesh Kandasamy >>> wrote: >>> >>>> Hi all, >>>> >>>> I am relatively new to Freeswitch and I am looking for a way to add >>>> isfocus parameter in the Contact header of 200 OK (INVITE response) from >>>> the freeswitch. I found channel variable sip_contact_params that can be set >>>> in dialplan as below, but it doesnt seem to help. Am I missing something or >>>> doing something wrong here? >>>> >>>> >>>> ** >>>> >>> >>>> Please advise. >>>> >>>> Thanks >>>> Ramesh >>>> >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> >>> Brian West | Co-founder and Developer >>> >>> Need Commercial support? email sales at freeswitch.com >>> >>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>> >>> >>> Email: brian at freeswitch.com >>> >>> Mobile: 918-424-9378 >>> >>> Website: https://www.FreeSWITCH.com >>> >>> [image: https://www.facebook.com/signalwireinc?src=email] >>> [image: >>> https://twitter.com/freeswitch] >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Mon May 6 23:19:23 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Mon, 6 May 2019 17:19:23 -0600 Subject: [Freeswitch-users] Welcome text for participants joining conference?? Message-ID: Hi all, Is there a way in freeswitch, we can display a welcome text for participants joining the video conference? Also, is there a way to prompt with a customized text before the end of conference? Thanks Ramesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Mon May 6 23:27:54 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Tue, 7 May 2019 00:27:54 +0100 Subject: [Freeswitch-users] Gateways and DNS and TTL Message-ID: Hello all, When creating a new gateway with a FQDN instead of an IP Address, does freeswitch make a DNS Query on every call or is there a cache or does it follow the TTL? I'm on Debian 9, installed FS from freeswitch's repo. Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From cong.wang.itsherpa at gmail.com Tue May 7 06:35:41 2019 From: cong.wang.itsherpa at gmail.com (=?utf-8?B?546L6IGh?=) Date: Tue, 7 May 2019 15:35:41 +0900 Subject: [Freeswitch-users] RTP Packet Loss Message-ID: <4239AC6D-45B6-415D-9B23-9E84F2EC87E9@gmail.com> Hey all, I established a freeswitch server on a cloud server for video chat based on master branch(1.9.0), and got a problem recently. Last week I found the video was lagged in several hours, and log showed: Correcting calculated ptime value from [1660] to [20] to compensate for [82] lost packet(s) I supposed it was a network trouble, but network monitor showed no huge traffic(no more than 100Mbps), but the inbound traffic was larger than outbound, This problem was gone after I executed the VMotion for this cloud server(without storage, network interface not changed). Is there any suggestions for this problem? Regards. C.Wang -------------- next part -------------- An HTML attachment was scrubbed... URL: From sagarmalam at gmail.com Tue May 7 07:13:19 2019 From: sagarmalam at gmail.com (sagar malam) Date: Tue, 7 May 2019 12:43:19 +0530 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: I have tried both and i recommend mod_com_g729 over mod_bcg729 mainly for below two reasons : 1) mod_com_g729 performance is far better. 2) mod_bcg729 does not work well with fs_encode command On Tue, May 7, 2019 at 2:42 AM Brian West wrote: > Thank you everyone for your support. It does mean a lot to us. > > /b > > > On Mon, May 6, 2019 at 2:29 PM Jai Rangi wrote: > >> I would 2nd on that. This works well, easy to install and setup. And >> that's how you support the development of this project. >> >> >> *Jai Rangi* >> Cebod Technologies LLC dba DIDforSale/Cebod Telecom >> O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / >> 949-232-1410 | jprangi at didforsale.com www.cebod.com | >> www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614| >> >> >> >> >> >> >> >> On Mon, May 6, 2019 at 11:31 AM David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> So, really, for 10 bucks per channel, just get the commercial one. >>> >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> >>> >>> On Mon, May 6, 2019 at 2:42 PM Brian West wrote: >>> >>>> The one we sell supports the project, the other one that we don't sell >>>> doesn't support the project. >>>> >>>> /b >>>> >>>> >>>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai wrote: >>>> >>>>> Hello Everyone >>>>> >>>>> I am having some confusion regarding the codec G729. As i know the >>>>> G729 codec is available on freeswitch as a commerical module but there some >>>>> module like mod_bcg729. Just want to know what is difference between them. >>>>> >>>>> >>>>> Thank You >>>>> Vishal Pai >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> >>>> Brian West | Co-founder and Developer >>>> >>>> Need Commercial support? email sales at freeswitch.com >>>> >>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>> >>>> >>>> Email: brian at freeswitch.com >>>> >>>> Mobile: 918-424-9378 >>>> >>>> Website: https://www.FreeSWITCH.com >>>> >>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>> [image: >>>> https://twitter.com/freeswitch] >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Thanks, Sagar -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.muaddib83 at gmail.com Tue May 7 08:49:16 2019 From: paul.muaddib83 at gmail.com (Paul Muaddib) Date: Tue, 7 May 2019 10:49:16 +0200 Subject: [Freeswitch-users] Update DNS SRV records In-Reply-To: <8F74794A-50F0-42AA-862D-39CD9BAED974@insensate.co.uk> References: <8F74794A-50F0-42AA-862D-39CD9BAED974@insensate.co.uk> Message-ID: Hi Lawrence, I think that you want to know how to tell your fS to re-lookup the SRV > records for that gateway's domain while running, as the SRV records in that > provider's DNS changes regularly. > > I can't help on the details of fS's DNS lookup code, but is that the > actual problem you have and so the question you want to ask? > Yes, that is my problem. Am Di., 7. Mai 2019 um 00:07 Uhr schrieb Lawrence Conroy < lconroy at insensate.co.uk>: > Hi > They may do; they may not. It's hard to tell when the question is that > confusing. > > 1. IIUC, fS doesn't update local DNS records at all. > (it could, but you'd need to write something external to do the DNS > update). > > 2. you talk of not being able to call OUT. > That's good, as it means there is no need to update your domain's DNS > records. > > I assume that what you mean is that your provider changes its SRV records > every couple of days. > You have a gateway entry in your fS config for that provider. > That gateway spec has a defined domain name for the server. > I think that you want to know how to tell your fS to re-lookup the SRV > records for that gateway's domain while running, as the SRV records in that > provider's DNS changes regularly. > > I can't help on the details of fS's DNS lookup code, but is that the > actual problem you have and so the question you want to ask? > > br, > Lawrence > > > On 6 May 2019, at 21:04, Paul Muaddib wrote: > > > Really nobody with the same problem? > > > > Am Do., 2. Mai 2019 um 11:23 Uhr schrieb Paul Muaddib < > paul.muaddib83 at gmail.com>: > > Hi, > > > > how can I tell freeswitch to update the SRV records or is there a way to > force the update without restarting. My provider keeps changing the entries > after a few days and if I don't restart freeswitch I can not call out > anymore (403) > > > > Best regards > > _________________________________________________________________________ > > > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > > Build your next product on our scalable cloud platform. > > > > Join our online community to chat in real time > https://signalwire.community > > > > Professional FreeSWITCH Services > > sales at freeswitch.com > > https://freeswitch.com > > > > Official FreeSWITCH Sites > > https://freeswitch.com/oss > > https://freeswitch.org/confluence > > https://cluecon.com > > > > FreeSWITCH-users mailing list > > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > > https://freeswitch.com > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From rbetancor at gmail.com Tue May 7 10:04:46 2019 From: rbetancor at gmail.com (=?UTF-8?Q?Ra=C3=BAl_Alexis_Betancor_Santana?=) Date: Tue, 7 May 2019 11:04:46 +0100 Subject: [Freeswitch-users] Update DNS SRV records In-Reply-To: References: <8F74794A-50F0-42AA-862D-39CD9BAED974@insensate.co.uk> Message-ID: The only way you have is to tell FS to "reload" that provider gw profile. You should check the TTL of that provider SRV registers as may be a problem on their end, not updating them correctly. On Tue, May 7, 2019 at 10:25 AM Paul Muaddib wrote: > Hi Lawrence, > > I think that you want to know how to tell your fS to re-lookup the SRV >> records for that gateway's domain while running, as the SRV records in that >> provider's DNS changes regularly. >> >> I can't help on the details of fS's DNS lookup code, but is that the >> actual problem you have and so the question you want to ask? >> > > Yes, that is my problem. > > Am Di., 7. Mai 2019 um 00:07 Uhr schrieb Lawrence Conroy < > lconroy at insensate.co.uk>: > >> Hi >> They may do; they may not. It's hard to tell when the question is that >> confusing. >> >> 1. IIUC, fS doesn't update local DNS records at all. >> (it could, but you'd need to write something external to do the DNS >> update). >> >> 2. you talk of not being able to call OUT. >> That's good, as it means there is no need to update your domain's DNS >> records. >> >> I assume that what you mean is that your provider changes its SRV records >> every couple of days. >> You have a gateway entry in your fS config for that provider. >> That gateway spec has a defined domain name for the server. >> I think that you want to know how to tell your fS to re-lookup the SRV >> records for that gateway's domain while running, as the SRV records in that >> provider's DNS changes regularly. >> >> I can't help on the details of fS's DNS lookup code, but is that the >> actual problem you have and so the question you want to ask? >> >> br, >> Lawrence >> >> >> On 6 May 2019, at 21:04, Paul Muaddib wrote: >> >> > Really nobody with the same problem? >> > >> > Am Do., 2. Mai 2019 um 11:23 Uhr schrieb Paul Muaddib < >> paul.muaddib83 at gmail.com>: >> > Hi, >> > >> > how can I tell freeswitch to update the SRV records or is there a way >> to force the update without restarting. My provider keeps changing the >> entries after a few days and if I don't restart freeswitch I can not call >> out anymore (403) >> > >> > Best regards >> > >> _________________________________________________________________________ >> > >> > The FreeSWITCH project is sponsored by SignalWire >> https://signalwire.com >> > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> > Build your next product on our scalable cloud platform. >> > >> > Join our online community to chat in real time >> https://signalwire.community >> > >> > Professional FreeSWITCH Services >> > sales at freeswitch.com >> > https://freeswitch.com >> > >> > Official FreeSWITCH Sites >> > https://freeswitch.com/oss >> > https://freeswitch.org/confluence >> > https://cluecon.com >> > >> > FreeSWITCH-users mailing list >> > FreeSWITCH-users at lists.freeswitch.org >> > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> > UNSUBSCRIBE: >> http://lists.freeswitch.org/mailman/options/freeswitch-users >> > https://freeswitch.com >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From paul.muaddib83 at gmail.com Tue May 7 11:42:12 2019 From: paul.muaddib83 at gmail.com (Paul Muaddib) Date: Tue, 7 May 2019 13:42:12 +0200 Subject: [Freeswitch-users] Update DNS SRV records In-Reply-To: References: <8F74794A-50F0-42AA-862D-39CD9BAED974@insensate.co.uk> Message-ID: How can I check the TTL of the SRV register? Am Di., 7. Mai 2019 um 12:36 Uhr schrieb Raúl Alexis Betancor Santana < rbetancor at gmail.com>: > The only way you have is to tell FS to "reload" that provider gw profile. > > You should check the TTL of that provider SRV registers as may be a > problem on their end, not updating them correctly. > > On Tue, May 7, 2019 at 10:25 AM Paul Muaddib > wrote: > >> Hi Lawrence, >> >> I think that you want to know how to tell your fS to re-lookup the SRV >>> records for that gateway's domain while running, as the SRV records in that >>> provider's DNS changes regularly. >>> >>> I can't help on the details of fS's DNS lookup code, but is that the >>> actual problem you have and so the question you want to ask? >>> >> >> Yes, that is my problem. >> >> Am Di., 7. Mai 2019 um 00:07 Uhr schrieb Lawrence Conroy < >> lconroy at insensate.co.uk>: >> >>> Hi >>> They may do; they may not. It's hard to tell when the question is that >>> confusing. >>> >>> 1. IIUC, fS doesn't update local DNS records at all. >>> (it could, but you'd need to write something external to do the DNS >>> update). >>> >>> 2. you talk of not being able to call OUT. >>> That's good, as it means there is no need to update your domain's DNS >>> records. >>> >>> I assume that what you mean is that your provider changes its SRV >>> records every couple of days. >>> You have a gateway entry in your fS config for that provider. >>> That gateway spec has a defined domain name for the server. >>> I think that you want to know how to tell your fS to re-lookup the SRV >>> records for that gateway's domain while running, as the SRV records in that >>> provider's DNS changes regularly. >>> >>> I can't help on the details of fS's DNS lookup code, but is that the >>> actual problem you have and so the question you want to ask? >>> >>> br, >>> Lawrence >>> >>> >>> On 6 May 2019, at 21:04, Paul Muaddib wrote: >>> >>> > Really nobody with the same problem? >>> > >>> > Am Do., 2. Mai 2019 um 11:23 Uhr schrieb Paul Muaddib < >>> paul.muaddib83 at gmail.com>: >>> > Hi, >>> > >>> > how can I tell freeswitch to update the SRV records or is there a way >>> to force the update without restarting. My provider keeps changing the >>> entries after a few days and if I don't restart freeswitch I can not call >>> out anymore (403) >>> > >>> > Best regards >>> > >>> _________________________________________________________________________ >>> > >>> > The FreeSWITCH project is sponsored by SignalWire >>> https://signalwire.com >>> > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> > Build your next product on our scalable cloud platform. >>> > >>> > Join our online community to chat in real time >>> https://signalwire.community >>> > >>> > Professional FreeSWITCH Services >>> > sales at freeswitch.com >>> > https://freeswitch.com >>> > >>> > Official FreeSWITCH Sites >>> > https://freeswitch.com/oss >>> > https://freeswitch.org/confluence >>> > https://cluecon.com >>> > >>> > FreeSWITCH-users mailing list >>> > FreeSWITCH-users at lists.freeswitch.org >>> > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> > UNSUBSCRIBE: >>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>> > https://freeswitch.com >>> >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From neilp at cs.stanford.edu Tue May 7 12:31:54 2019 From: neilp at cs.stanford.edu (Neil Patel) Date: Tue, 7 May 2019 18:01:54 +0530 Subject: [Freeswitch-users] ESL connection lost to FS In-Reply-To: References: Message-ID: We were able to isolate this issue a bit and found: - This issue persists across FS versions, so it doesn't seem to be a v1.8 issue - ESL client in fact does return a value each time; it's not that it "drops". The issue is that with a minority of calls the originate command never reaches FS in the sense that we see no trace of it in logs. - The number of calls affected seems to depend on the amount of parallelism we hit FS with. It's <1% of calls if we send up to 10 of calls per second for an entire day totalling in couple hundred thousand calls. But it goes as high as 15% if we send 100+ calls per second. - We've tried FS inbuilt pyESL lib (both built from source and package), as well as greenswitch. The issue persists across ESL clients so we don't feel it's a client related issue. Any suggestions on how to debug further? On Tue, Apr 23, 2019 at 10:12 AM Neil Patel wrote: > Deepika, > > I don't think this is the issue as we've had this pattern of code for > years and only recently (after upgrading to v1.8) have we seen ESL > connection instability. Note we took this pattern from Newfies which does > exact same thing > . > Areski hasn't responded yet but I believe he would say this is not an issue. > > We've adjusted our code to abort the attempt and retry if ev=None, but > there remains a portion of calls for which ev returns success but there is > actually no call originated and no trace of it in FS logs or in CDR. > > Any other ideas? > > > On Mon, Apr 22, 2019 at 9:51 PM Deepika Yadav > wrote: > >> Hi Neil, >> >> Just a guess, shouldn't you put a significant sleep before >> "c.disconnect()". Since the previous command starts background api, it >> would be appropriate to introduce some time gap before disconnecting ESL. >> >> Regards, >> Deepika >> PhD Scholar >> IIIT Delhi , India >> Webpage: https://deepikay.wixsite.com/deepika >> >> On Mon, Apr 22, 2019 at 9:37 PM Neil Patel wrote: >> >>> Hi Brian, >>> >>> Sorry, I didn't give enough context. >>> >>> The code below is for the origination of calls, which we are doing >>> through ESL and where the connection is being unexpectedly dropped, or even >>> if not dropped, no record of the origination appears in either FS logs or >>> CDR. >>> >>> CDRs are being generated to sqlite and we are reading them from there >>> asynchronously. >>> >>> Also forgot to link the documentation that suggests building from source >>> is the way, it's here >>> >>> >>> On Mon, Apr 22, 2019 at 6:25 PM Brian West wrote: >>> >>>> You're doing the CDR collection inline or what are you speaking of >>>> exactly? >>>> >>>> On Mon, Apr 22, 2019 at 2:29 AM Neil Patel >>>> wrote: >>>> >>>>> Hi all, I have a fresh server running FS 1.8 from package on Debian 9. >>>>> It runs a python app connecting to FS using ESL that executes this code per >>>>> call attempt: >>>>> >>>>> c = ESLconnection(str(settings.ESL_HOSTNAME), str(settings.ESL_PORT), >>>>> str(settings.ESL_PASSWORD)) >>>>> if not c.connected(): >>>>> abort() >>>>> dial_command = "originate …" >>>>> ev = c.api("bgapi", str(dial_command)) >>>>> c.disconnect() >>>>> if ev: >>>>> result = ev.serialize() >>>>> logger.debug('API result = {}'.format(result)) >>>>> >>>>> >>>>> When we ran 350K call test, 70K calls got to this code and failed the >>>>> final if condition, meaning ev was None. No CDR generated. >>>>> >>>>> This is totally an unexpected error case for us after tens of millions >>>>> of calls over last 3 years on our other servers. Any idea why this is >>>>> happening? The only difference I can see is we’ve not seen this issue on FS >>>>> 1.6 (built from source), so maybe it’s introduced in 1.8 (run from >>>>> package)? FYI we've built pyESL from source, which is what's recommended >>>>> here. Any chance there is an incompatibility between pyESL built from >>>>> source and FS 1.8 installed from package? >>>>> >>>>> Thanks, >>>>> Neil >>>>> >>>>> This question reproduced from Slack >>>>> >>>>> where I didn't get a response >>>>> >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> >>>> Brian West | Co-founder and Developer >>>> >>>> Need Commercial support? email sales at freeswitch.com >>>> >>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>> >>>> >>>> Email: brian at freeswitch.com >>>> >>>> Mobile: 918-424-9378 >>>> >>>> Website: https://www.FreeSWITCH.com >>>> >>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>> [image: >>>> https://twitter.com/freeswitch] >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> Regards, >> Deepika >> PhD Scholar >> IIIT Delhi , India >> Webpage: https://deepikay.wixsite.com/deepika >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Tue May 7 12:44:45 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Tue, 7 May 2019 13:44:45 +0100 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: If I remember correctly, bcg729 doesn’t support g.729a or b? On Tue, 7 May 2019 at 08:55, sagar malam wrote: > I have tried both and i recommend mod_com_g729 over mod_bcg729 mainly for > below two reasons : > 1) mod_com_g729 performance is far better. > 2) mod_bcg729 does not work well with fs_encode command > > > > On Tue, May 7, 2019 at 2:42 AM Brian West wrote: > >> Thank you everyone for your support. It does mean a lot to us. >> >> /b >> >> >> On Mon, May 6, 2019 at 2:29 PM Jai Rangi wrote: >> >>> I would 2nd on that. This works well, easy to install and setup. And >>> that's how you support the development of this project. >>> >>> >>> *Jai Rangi* >>> Cebod Technologies LLC dba DIDforSale/Cebod Telecom >>> O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / >>> 949-232-1410 | jprangi at didforsale.com www.cebod.com | >>> www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614 >>> | >>> >>> >>> >>> >>> >>> >>> >>> >>> On Mon, May 6, 2019 at 11:31 AM David Villasmil < >>> david.villasmil.work at gmail.com> wrote: >>> >>>> So, really, for 10 bucks per channel, just get the commercial one. >>>> >>>> Regards, >>>> >>>> David Villasmil >>>> email: david.villasmil.work at gmail.com >>>> phone: +34669448337 >>>> >>>> >>>> On Mon, May 6, 2019 at 2:42 PM Brian West wrote: >>>> >>>>> The one we sell supports the project, the other one that we don't sell >>>>> doesn't support the project. >>>>> >>>>> /b >>>>> >>>>> >>>>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai >>>>> wrote: >>>>> >>>>>> Hello Everyone >>>>>> >>>>>> I am having some confusion regarding the codec G729. As i know the >>>>>> G729 codec is available on freeswitch as a commerical module but there some >>>>>> module like mod_bcg729. Just want to know what is difference between them. >>>>>> >>>>>> >>>>>> Thank You >>>>>> Vishal Pai >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> >>>>> >>>>> -- >>>>> >>>>> Brian West | Co-founder and Developer >>>>> >>>>> Need Commercial support? email sales at freeswitch.com >>>>> >>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>> >>>>> >>>>> Email: brian at freeswitch.com >>>>> >>>>> Mobile: 918-424-9378 >>>>> >>>>> Website: https://www.FreeSWITCH.com >>>>> >>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>> [image: >>>>> https://twitter.com/freeswitch] >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > Thanks, > > Sagar > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Tue May 7 13:02:09 2019 From: brian at freeswitch.com (Brian West) Date: Tue, 7 May 2019 08:02:09 -0500 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: Its probably ours, we don't support B, as there are still patents related to B. /b On Tue, May 7, 2019 at 7:45 AM David Villasmil < david.villasmil.work at gmail.com> wrote: > If I remember correctly, bcg729 doesn’t support g.729a or b? > > On Tue, 7 May 2019 at 08:55, sagar malam wrote: > >> I have tried both and i recommend mod_com_g729 over mod_bcg729 mainly for >> below two reasons : >> 1) mod_com_g729 performance is far better. >> 2) mod_bcg729 does not work well with fs_encode command >> >> >> >> On Tue, May 7, 2019 at 2:42 AM Brian West wrote: >> >>> Thank you everyone for your support. It does mean a lot to us. >>> >>> /b >>> >>> >>> On Mon, May 6, 2019 at 2:29 PM Jai Rangi wrote: >>> >>>> I would 2nd on that. This works well, easy to install and setup. And >>>> that's how you support the development of this project. >>>> >>>> >>>> *Jai Rangi* >>>> Cebod Technologies LLC dba DIDforSale/Cebod Telecom >>>> O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / >>>> 949-232-1410 | jprangi at didforsale.com www.cebod.com | >>>> www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614 >>>> | >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> On Mon, May 6, 2019 at 11:31 AM David Villasmil < >>>> david.villasmil.work at gmail.com> wrote: >>>> >>>>> So, really, for 10 bucks per channel, just get the commercial one. >>>>> >>>>> Regards, >>>>> >>>>> David Villasmil >>>>> email: david.villasmil.work at gmail.com >>>>> phone: +34669448337 >>>>> >>>>> >>>>> On Mon, May 6, 2019 at 2:42 PM Brian West >>>>> wrote: >>>>> >>>>>> The one we sell supports the project, the other one that we don't >>>>>> sell doesn't support the project. >>>>>> >>>>>> /b >>>>>> >>>>>> >>>>>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai >>>>>> wrote: >>>>>> >>>>>>> Hello Everyone >>>>>>> >>>>>>> I am having some confusion regarding the codec G729. As i know the >>>>>>> G729 codec is available on freeswitch as a commerical module but there some >>>>>>> module like mod_bcg729. Just want to know what is difference between them. >>>>>>> >>>>>>> >>>>>>> Thank You >>>>>>> Vishal Pai >>>>>>> >>>>>>> _________________________________________________________________________ >>>>>>> >>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>> https://signalwire.com >>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>> services. >>>>>>> Build your next product on our scalable cloud platform. >>>>>>> >>>>>>> Join our online community to chat in real time >>>>>>> https://signalwire.community >>>>>>> >>>>>>> Professional FreeSWITCH Services >>>>>>> sales at freeswitch.com >>>>>>> https://freeswitch.com >>>>>>> >>>>>>> Official FreeSWITCH Sites >>>>>>> https://freeswitch.com/oss >>>>>>> https://freeswitch.org/confluence >>>>>>> https://cluecon.com >>>>>>> >>>>>>> FreeSWITCH-users mailing list >>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>> UNSUBSCRIBE: >>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>> https://freeswitch.com >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> >>>>>> Brian West | Co-founder and Developer >>>>>> >>>>>> Need Commercial support? email sales at freeswitch.com >>>>>> >>>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>>> >>>>>> >>>>>> Email: brian at freeswitch.com >>>>>> >>>>>> Mobile: 918-424-9378 >>>>>> >>>>>> Website: https://www.FreeSWITCH.com >>>>>> >>>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>>> [image: >>>>>> https://twitter.com/freeswitch] >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> >>> Brian West | Co-founder and Developer >>> >>> Need Commercial support? email sales at freeswitch.com >>> >>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>> >>> >>> Email: brian at freeswitch.com >>> >>> Mobile: 918-424-9378 >>> >>> Website: https://www.FreeSWITCH.com >>> >>> [image: https://www.facebook.com/signalwireinc?src=email] >>> [image: >>> https://twitter.com/freeswitch] >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> Thanks, >> >> Sagar >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Tue May 7 13:31:47 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Tue, 7 May 2019 14:31:47 +0100 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: Yeah that’s probably it. On Tue, 7 May 2019 at 14:16, Brian West wrote: > Its probably ours, we don't support B, as there are still patents related > to B. > > /b > > > On Tue, May 7, 2019 at 7:45 AM David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> If I remember correctly, bcg729 doesn’t support g.729a or b? >> >> On Tue, 7 May 2019 at 08:55, sagar malam wrote: >> >>> I have tried both and i recommend mod_com_g729 over mod_bcg729 mainly >>> for below two reasons : >>> 1) mod_com_g729 performance is far better. >>> 2) mod_bcg729 does not work well with fs_encode command >>> >>> >>> >>> On Tue, May 7, 2019 at 2:42 AM Brian West wrote: >>> >>>> Thank you everyone for your support. It does mean a lot to us. >>>> >>>> /b >>>> >>>> >>>> On Mon, May 6, 2019 at 2:29 PM Jai Rangi >>>> wrote: >>>> >>>>> I would 2nd on that. This works well, easy to install and setup. And >>>>> that's how you support the development of this project. >>>>> >>>>> >>>>> *Jai Rangi* >>>>> Cebod Technologies LLC dba DIDforSale/Cebod Telecom >>>>> O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / >>>>> 949-232-1410 | jprangi at didforsale.com www.cebod.com | >>>>> www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614 >>>>> | >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> On Mon, May 6, 2019 at 11:31 AM David Villasmil < >>>>> david.villasmil.work at gmail.com> wrote: >>>>> >>>>>> So, really, for 10 bucks per channel, just get the commercial one. >>>>>> >>>>>> Regards, >>>>>> >>>>>> David Villasmil >>>>>> email: david.villasmil.work at gmail.com >>>>>> phone: +34669448337 >>>>>> >>>>>> >>>>>> On Mon, May 6, 2019 at 2:42 PM Brian West >>>>>> wrote: >>>>>> >>>>>>> The one we sell supports the project, the other one that we don't >>>>>>> sell doesn't support the project. >>>>>>> >>>>>>> /b >>>>>>> >>>>>>> >>>>>>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai >>>>>>> wrote: >>>>>>> >>>>>>>> Hello Everyone >>>>>>>> >>>>>>>> I am having some confusion regarding the codec G729. As i know the >>>>>>>> G729 codec is available on freeswitch as a commerical module but there some >>>>>>>> module like mod_bcg729. Just want to know what is difference between them. >>>>>>>> >>>>>>>> >>>>>>>> Thank You >>>>>>>> Vishal Pai >>>>>>>> >>>>>>>> _________________________________________________________________________ >>>>>>>> >>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>> https://signalwire.com >>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>>> services. >>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>> >>>>>>>> Join our online community to chat in real time >>>>>>>> https://signalwire.community >>>>>>>> >>>>>>>> Professional FreeSWITCH Services >>>>>>>> sales at freeswitch.com >>>>>>>> https://freeswitch.com >>>>>>>> >>>>>>>> Official FreeSWITCH Sites >>>>>>>> https://freeswitch.com/oss >>>>>>>> https://freeswitch.org/confluence >>>>>>>> https://cluecon.com >>>>>>>> >>>>>>>> FreeSWITCH-users mailing list >>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>> UNSUBSCRIBE: >>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>> https://freeswitch.com >>>>>>> >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> >>>>>>> Brian West | Co-founder and Developer >>>>>>> >>>>>>> Need Commercial support? email sales at freeswitch.com >>>>>>> >>>>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>>>> >>>>>>> >>>>>>> Email: brian at freeswitch.com >>>>>>> >>>>>>> Mobile: 918-424-9378 >>>>>>> >>>>>>> Website: https://www.FreeSWITCH.com >>>>>>> >>>>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>>>> [image: >>>>>>> https://twitter.com/freeswitch] >>>>>>> >>>>>>> _________________________________________________________________________ >>>>>>> >>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>> https://signalwire.com >>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>> services. >>>>>>> Build your next product on our scalable cloud platform. >>>>>>> >>>>>>> Join our online community to chat in real time >>>>>>> https://signalwire.community >>>>>>> >>>>>>> Professional FreeSWITCH Services >>>>>>> sales at freeswitch.com >>>>>>> https://freeswitch.com >>>>>>> >>>>>>> Official FreeSWITCH Sites >>>>>>> https://freeswitch.com/oss >>>>>>> https://freeswitch.org/confluence >>>>>>> https://cluecon.com >>>>>>> >>>>>>> FreeSWITCH-users mailing list >>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>> UNSUBSCRIBE: >>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>> https://freeswitch.com >>>>>> >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> >>>> Brian West | Co-founder and Developer >>>> >>>> Need Commercial support? email sales at freeswitch.com >>>> >>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>> >>>> >>>> Email: brian at freeswitch.com >>>> >>>> Mobile: 918-424-9378 >>>> >>>> Website: https://www.FreeSWITCH.com >>>> >>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>> [image: >>>> https://twitter.com/freeswitch] >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> Thanks, >>> >>> Sagar >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> -- >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Tue May 7 13:37:06 2019 From: brian at freeswitch.com (Brian West) Date: Tue, 7 May 2019 08:37:06 -0500 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: Also with OPUS and the improvements in bandwidth globally, g729 has become less of an issue for many, You can usually get better results with OPUS at 8k and lower bit rates if you fiddle with it, plus it has FEC/PLC capabilities that g729 lacks. /b On Tue, May 7, 2019 at 8:32 AM David Villasmil < david.villasmil.work at gmail.com> wrote: > Yeah that’s probably it. > > On Tue, 7 May 2019 at 14:16, Brian West wrote: > >> Its probably ours, we don't support B, as there are still patents related >> to B. >> >> /b >> >> >> On Tue, May 7, 2019 at 7:45 AM David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> If I remember correctly, bcg729 doesn’t support g.729a or b? >>> >>> On Tue, 7 May 2019 at 08:55, sagar malam wrote: >>> >>>> I have tried both and i recommend mod_com_g729 over mod_bcg729 mainly >>>> for below two reasons : >>>> 1) mod_com_g729 performance is far better. >>>> 2) mod_bcg729 does not work well with fs_encode command >>>> >>>> >>>> >>>> On Tue, May 7, 2019 at 2:42 AM Brian West wrote: >>>> >>>>> Thank you everyone for your support. It does mean a lot to us. >>>>> >>>>> /b >>>>> >>>>> >>>>> On Mon, May 6, 2019 at 2:29 PM Jai Rangi >>>>> wrote: >>>>> >>>>>> I would 2nd on that. This works well, easy to install and setup. And >>>>>> that's how you support the development of this project. >>>>>> >>>>>> >>>>>> *Jai Rangi* >>>>>> Cebod Technologies LLC dba DIDforSale/Cebod Telecom >>>>>> O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / >>>>>> 949-232-1410 | jprangi at didforsale.com www.cebod.com | >>>>>> www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614 >>>>>> | >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> On Mon, May 6, 2019 at 11:31 AM David Villasmil < >>>>>> david.villasmil.work at gmail.com> wrote: >>>>>> >>>>>>> So, really, for 10 bucks per channel, just get the commercial one. >>>>>>> >>>>>>> Regards, >>>>>>> >>>>>>> David Villasmil >>>>>>> email: david.villasmil.work at gmail.com >>>>>>> phone: +34669448337 >>>>>>> >>>>>>> >>>>>>> On Mon, May 6, 2019 at 2:42 PM Brian West >>>>>>> wrote: >>>>>>> >>>>>>>> The one we sell supports the project, the other one that we don't >>>>>>>> sell doesn't support the project. >>>>>>>> >>>>>>>> /b >>>>>>>> >>>>>>>> >>>>>>>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai >>>>>>>> wrote: >>>>>>>> >>>>>>>>> Hello Everyone >>>>>>>>> >>>>>>>>> I am having some confusion regarding the codec G729. As i know the >>>>>>>>> G729 codec is available on freeswitch as a commerical module but there some >>>>>>>>> module like mod_bcg729. Just want to know what is difference between them. >>>>>>>>> >>>>>>>>> >>>>>>>>> Thank You >>>>>>>>> Vishal Pai >>>>>>>>> >>>>>>>>> _________________________________________________________________________ >>>>>>>>> >>>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>>> https://signalwire.com >>>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and >>>>>>>>> PSTN services. >>>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>>> >>>>>>>>> Join our online community to chat in real time >>>>>>>>> https://signalwire.community >>>>>>>>> >>>>>>>>> Professional FreeSWITCH Services >>>>>>>>> sales at freeswitch.com >>>>>>>>> https://freeswitch.com >>>>>>>>> >>>>>>>>> Official FreeSWITCH Sites >>>>>>>>> https://freeswitch.com/oss >>>>>>>>> https://freeswitch.org/confluence >>>>>>>>> https://cluecon.com >>>>>>>>> >>>>>>>>> FreeSWITCH-users mailing list >>>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>>> UNSUBSCRIBE: >>>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>>> https://freeswitch.com >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> -- >>>>>>>> >>>>>>>> Brian West | Co-founder and Developer >>>>>>>> >>>>>>>> Need Commercial support? email sales at freeswitch.com >>>>>>>> >>>>>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>>>>> >>>>>>>> >>>>>>>> Email: brian at freeswitch.com >>>>>>>> >>>>>>>> Mobile: 918-424-9378 >>>>>>>> >>>>>>>> Website: https://www.FreeSWITCH.com >>>>>>>> >>>>>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>>>>> [image: >>>>>>>> https://twitter.com/freeswitch] >>>>>>>> >>>>>>>> _________________________________________________________________________ >>>>>>>> >>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>> https://signalwire.com >>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>>> services. >>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>> >>>>>>>> Join our online community to chat in real time >>>>>>>> https://signalwire.community >>>>>>>> >>>>>>>> Professional FreeSWITCH Services >>>>>>>> sales at freeswitch.com >>>>>>>> https://freeswitch.com >>>>>>>> >>>>>>>> Official FreeSWITCH Sites >>>>>>>> https://freeswitch.com/oss >>>>>>>> https://freeswitch.org/confluence >>>>>>>> https://cluecon.com >>>>>>>> >>>>>>>> FreeSWITCH-users mailing list >>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>> UNSUBSCRIBE: >>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>> https://freeswitch.com >>>>>>> >>>>>>> >>>>>>> _________________________________________________________________________ >>>>>>> >>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>> https://signalwire.com >>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>> services. >>>>>>> Build your next product on our scalable cloud platform. >>>>>>> >>>>>>> Join our online community to chat in real time >>>>>>> https://signalwire.community >>>>>>> >>>>>>> Professional FreeSWITCH Services >>>>>>> sales at freeswitch.com >>>>>>> https://freeswitch.com >>>>>>> >>>>>>> Official FreeSWITCH Sites >>>>>>> https://freeswitch.com/oss >>>>>>> https://freeswitch.org/confluence >>>>>>> https://cluecon.com >>>>>>> >>>>>>> FreeSWITCH-users mailing list >>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>> UNSUBSCRIBE: >>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>> https://freeswitch.com >>>>>> >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> >>>>> >>>>> -- >>>>> >>>>> Brian West | Co-founder and Developer >>>>> >>>>> Need Commercial support? email sales at freeswitch.com >>>>> >>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>> >>>>> >>>>> Email: brian at freeswitch.com >>>>> >>>>> Mobile: 918-424-9378 >>>>> >>>>> Website: https://www.FreeSWITCH.com >>>>> >>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>> [image: >>>>> https://twitter.com/freeswitch] >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> Thanks, >>>> >>>> Sagar >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> -- >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Tue May 7 15:31:45 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Tue, 7 May 2019 16:31:45 +0100 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: Totally agree. It’s been ages since I’ve used g729. It’s all OPUS. G.729 is mostly for termination carriers, and even those support OPUS more and more. On Tue, 7 May 2019 at 14:53, Brian West wrote: > Also with OPUS and the improvements in bandwidth globally, g729 has become > less of an issue for many, You can usually get better results with OPUS at > 8k and lower bit rates if you fiddle with it, plus it has FEC/PLC > capabilities that g729 lacks. > > /b > > > On Tue, May 7, 2019 at 8:32 AM David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> Yeah that’s probably it. >> >> On Tue, 7 May 2019 at 14:16, Brian West wrote: >> >>> Its probably ours, we don't support B, as there are still patents >>> related to B. >>> >>> /b >>> >>> >>> On Tue, May 7, 2019 at 7:45 AM David Villasmil < >>> david.villasmil.work at gmail.com> wrote: >>> >>>> If I remember correctly, bcg729 doesn’t support g.729a or b? >>>> >>>> On Tue, 7 May 2019 at 08:55, sagar malam wrote: >>>> >>>>> I have tried both and i recommend mod_com_g729 over mod_bcg729 mainly >>>>> for below two reasons : >>>>> 1) mod_com_g729 performance is far better. >>>>> 2) mod_bcg729 does not work well with fs_encode command >>>>> >>>>> >>>>> >>>>> On Tue, May 7, 2019 at 2:42 AM Brian West >>>>> wrote: >>>>> >>>>>> Thank you everyone for your support. It does mean a lot to us. >>>>>> >>>>>> /b >>>>>> >>>>>> >>>>>> On Mon, May 6, 2019 at 2:29 PM Jai Rangi >>>>>> wrote: >>>>>> >>>>>>> I would 2nd on that. This works well, easy to install and setup. And >>>>>>> that's how you support the development of this project. >>>>>>> >>>>>>> >>>>>>> *Jai Rangi* >>>>>>> Cebod Technologies LLC dba DIDforSale/Cebod Telecom >>>>>>> O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 / >>>>>>> 949-232-1410 | jprangi at didforsale.com www.cebod.com | >>>>>>> www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614 >>>>>>> | >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> On Mon, May 6, 2019 at 11:31 AM David Villasmil < >>>>>>> david.villasmil.work at gmail.com> wrote: >>>>>>> >>>>>>>> So, really, for 10 bucks per channel, just get the commercial one. >>>>>>>> >>>>>>>> Regards, >>>>>>>> >>>>>>>> David Villasmil >>>>>>>> email: david.villasmil.work at gmail.com >>>>>>>> phone: +34669448337 >>>>>>>> >>>>>>>> >>>>>>>> On Mon, May 6, 2019 at 2:42 PM Brian West >>>>>>>> wrote: >>>>>>>> >>>>>>>>> The one we sell supports the project, the other one that we don't >>>>>>>>> sell doesn't support the project. >>>>>>>>> >>>>>>>>> /b >>>>>>>>> >>>>>>>>> >>>>>>>>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai >>>>>>>>> wrote: >>>>>>>>> >>>>>>>>>> Hello Everyone >>>>>>>>>> >>>>>>>>>> I am having some confusion regarding the codec G729. As i know >>>>>>>>>> the G729 codec is available on freeswitch as a commerical module but there >>>>>>>>>> some module like mod_bcg729. Just want to know what is difference between >>>>>>>>>> them. >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Thank You >>>>>>>>>> Vishal Pai >>>>>>>>>> >>>>>>>>>> _________________________________________________________________________ >>>>>>>>>> >>>>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>>>> https://signalwire.com >>>>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and >>>>>>>>>> PSTN services. >>>>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>>>> >>>>>>>>>> Join our online community to chat in real time >>>>>>>>>> https://signalwire.community >>>>>>>>>> >>>>>>>>>> Professional FreeSWITCH Services >>>>>>>>>> sales at freeswitch.com >>>>>>>>>> https://freeswitch.com >>>>>>>>>> >>>>>>>>>> Official FreeSWITCH Sites >>>>>>>>>> https://freeswitch.com/oss >>>>>>>>>> https://freeswitch.org/confluence >>>>>>>>>> https://cluecon.com >>>>>>>>>> >>>>>>>>>> FreeSWITCH-users mailing list >>>>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>>>> UNSUBSCRIBE: >>>>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>>>> https://freeswitch.com >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> -- >>>>>>>>> >>>>>>>>> Brian West | Co-founder and Developer >>>>>>>>> >>>>>>>>> Need Commercial support? email sales at freeswitch.com >>>>>>>>> >>>>>>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI >>>>>>>>> 53045 >>>>>>>>> >>>>>>>>> >>>>>>>>> Email: brian at freeswitch.com >>>>>>>>> >>>>>>>>> Mobile: 918-424-9378 >>>>>>>>> >>>>>>>>> Website: https://www.FreeSWITCH.com >>>>>>>>> >>>>>>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>>>>>> [image: >>>>>>>>> https://twitter.com/freeswitch] >>>>>>>>> >>>>>>>>> _________________________________________________________________________ >>>>>>>>> >>>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>>> https://signalwire.com >>>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and >>>>>>>>> PSTN services. >>>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>>> >>>>>>>>> Join our online community to chat in real time >>>>>>>>> https://signalwire.community >>>>>>>>> >>>>>>>>> Professional FreeSWITCH Services >>>>>>>>> sales at freeswitch.com >>>>>>>>> https://freeswitch.com >>>>>>>>> >>>>>>>>> Official FreeSWITCH Sites >>>>>>>>> https://freeswitch.com/oss >>>>>>>>> https://freeswitch.org/confluence >>>>>>>>> https://cluecon.com >>>>>>>>> >>>>>>>>> FreeSWITCH-users mailing list >>>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>>> UNSUBSCRIBE: >>>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>>> https://freeswitch.com >>>>>>>> >>>>>>>> >>>>>>>> _________________________________________________________________________ >>>>>>>> >>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>> https://signalwire.com >>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>>> services. >>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>> >>>>>>>> Join our online community to chat in real time >>>>>>>> https://signalwire.community >>>>>>>> >>>>>>>> Professional FreeSWITCH Services >>>>>>>> sales at freeswitch.com >>>>>>>> https://freeswitch.com >>>>>>>> >>>>>>>> Official FreeSWITCH Sites >>>>>>>> https://freeswitch.com/oss >>>>>>>> https://freeswitch.org/confluence >>>>>>>> https://cluecon.com >>>>>>>> >>>>>>>> FreeSWITCH-users mailing list >>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>> UNSUBSCRIBE: >>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>> https://freeswitch.com >>>>>>> >>>>>>> >>>>>>> _________________________________________________________________________ >>>>>>> >>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>> https://signalwire.com >>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>> services. >>>>>>> Build your next product on our scalable cloud platform. >>>>>>> >>>>>>> Join our online community to chat in real time >>>>>>> https://signalwire.community >>>>>>> >>>>>>> Professional FreeSWITCH Services >>>>>>> sales at freeswitch.com >>>>>>> https://freeswitch.com >>>>>>> >>>>>>> Official FreeSWITCH Sites >>>>>>> https://freeswitch.com/oss >>>>>>> https://freeswitch.org/confluence >>>>>>> https://cluecon.com >>>>>>> >>>>>>> FreeSWITCH-users mailing list >>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>> UNSUBSCRIBE: >>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>> https://freeswitch.com >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> >>>>>> Brian West | Co-founder and Developer >>>>>> >>>>>> Need Commercial support? email sales at freeswitch.com >>>>>> >>>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>>> >>>>>> >>>>>> Email: brian at freeswitch.com >>>>>> >>>>>> Mobile: 918-424-9378 >>>>>> >>>>>> Website: https://www.FreeSWITCH.com >>>>>> >>>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>>> [image: >>>>>> https://twitter.com/freeswitch] >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> >>>>> >>>>> -- >>>>> Thanks, >>>>> >>>>> Sagar >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> -- >>>> Regards, >>>> >>>> David Villasmil >>>> email: david.villasmil.work at gmail.com >>>> phone: +34669448337 >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> >>> Brian West | Co-founder and Developer >>> >>> Need Commercial support? email sales at freeswitch.com >>> >>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>> >>> >>> Email: brian at freeswitch.com >>> >>> Mobile: 918-424-9378 >>> >>> Website: https://www.FreeSWITCH.com >>> >>> [image: https://www.facebook.com/signalwireinc?src=email] >>> [image: >>> https://twitter.com/freeswitch] >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> -- >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Tue May 7 18:30:38 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Tue, 7 May 2019 18:30:38 +0000 Subject: [Freeswitch-users] PASSed dialplan ignored? Message-ID: Can anyone explain this to me? 79c47900-43c6-4e2a-be5d-42883371a823 Dialplan: sofia/internal/220@ [CS_ROUTING] [NO_ROUTE_DESTINATION] How can it be REGEX (PASS) and have no route? Thanks, Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Tue May 7 18:48:34 2019 From: brian at freeswitch.com (Brian West) Date: Tue, 7 May 2019 13:48:34 -0500 Subject: [Freeswitch-users] PASSed dialplan ignored? In-Reply-To: References: Message-ID: Doesn't look like the extension gave it anything to do. You can still match a regex, but fail to give it directions. On Tue, May 7, 2019 at 1:31 PM Sean Devoy wrote: > Can anyone explain this to me? > > > > 79c47900-43c6-4e2a-be5d-42883371a823 Dialplan: sofia/internal/220@ Regex (PASS) [getvoicemail] destination_number(*8686) =~ /^\*8686$/ > break=on-false > > 79c47900-43c6-4e2a-be5d-42883371a823 2019-05-07 18:08:53.382829 [INFO] > switch_core_state_machine.c:311 No Route, Aborting > > 79c47900-43c6-4e2a-be5d-42883371a823 2019-05-07 18:08:53.382829 [NOTICE] > switch_core_state_machine.c:312 Hangup sofia/internal/220@ > [CS_ROUTING] [NO_ROUTE_DESTINATION] > > > > How can it be REGEX (PASS) and have no route? > > > > Thanks, > > Sean > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Tue May 7 23:35:05 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Tue, 7 May 2019 17:35:05 -0600 Subject: [Freeswitch-users] Welcome text for participants joining conference?? In-Reply-To: References: Message-ID: Reposting it. Thanks Ramesh On Mon, May 6, 2019 at 5:19 PM Ramesh Kandasamy wrote: > Hi all, > > Is there a way in freeswitch, we can display a welcome text for > participants joining the video conference? Also, is there a way to prompt > with a customized text before the end of conference? > > Thanks > Ramesh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Tue May 7 23:37:30 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Tue, 7 May 2019 17:37:30 -0600 Subject: [Freeswitch-users] Conference duration limit Message-ID: Hi all, Is there a config to limit the duration of a conference from the time it is created? I came across sched_hangup. But if i configure this on dialplan it seems to be applicable per participant joining this conference (through this dialplan) but not for this conference. Thanks Ramesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From abaci64 at gmail.com Wed May 8 00:01:55 2019 From: abaci64 at gmail.com (Abaci B) Date: Tue, 7 May 2019 20:01:55 -0400 Subject: [Freeswitch-users] Conference duration limit In-Reply-To: References: Message-ID: you can use the sched_api along with the conference api (conference hup all) On Tue, May 7, 2019 at 7:38 PM Ramesh Kandasamy wrote: > Hi all, > > Is there a config to limit the duration of a conference from the time it > is created? > I came across sched_hangup. But if i configure this on dialplan it seems > to be applicable per participant joining this conference (through this > dialplan) but not for this conference. > > Thanks > Ramesh > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From chenxiemin at gmail.com Wed May 8 03:13:44 2019 From: chenxiemin at gmail.com (Xiemin Chen) Date: Wed, 8 May 2019 11:13:44 +0800 Subject: [Freeswitch-users] Verto conference: video garbage Message-ID: There's video garbage showing something during the Verto video conference. Even though I enlarge the jitter buffer the problem still exists. Anyway to improve this? Sincerely Xiemin -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Wed May 8 06:52:08 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Wed, 8 May 2019 08:52:08 +0200 Subject: [Freeswitch-users] Verto conference: video garbage In-Reply-To: References: Message-ID: Check the cpu load If it is too high, change machine, or put the conference in pass through mode On Wed, May 8, 2019, 05:56 Xiemin Chen wrote: > There's video garbage showing something during the Verto video conference. > Even though I enlarge the jitter buffer the problem still exists. > Anyway to improve this? > > Sincerely > Xiemin > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From chenxiemin at gmail.com Wed May 8 07:38:36 2019 From: chenxiemin at gmail.com (Xiemin Chen) Date: Wed, 8 May 2019 15:38:36 +0800 Subject: [Freeswitch-users] Verto conference: video garbage In-Reply-To: References: Message-ID: Another way to improve this? Even in the pass through mode, recording may still has the same problem. For example, can I check the sps / pps id after freeswitch receives the h264 nalus? Sincerely Xiemin Giovanni Maruzzelli 于2019年5月8日周三 下午2:52写道: > Check the cpu load > > If it is too high, change machine, or put the conference in pass through > mode > > > > On Wed, May 8, 2019, 05:56 Xiemin Chen wrote: > >> There's video garbage showing something during the Verto video conference. >> Even though I enlarge the jitter buffer the problem still exists. >> Anyway to improve this? >> >> Sincerely >> Xiemin >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From cong.wang.itsherpa at gmail.com Wed May 8 09:43:26 2019 From: cong.wang.itsherpa at gmail.com (=?utf-8?B?546L6IGh?=) Date: Wed, 8 May 2019 18:43:26 +0900 Subject: [Freeswitch-users] About Call Transfer Message-ID: Hey all, I’m trying to add a new function to my callcenter server which allow peers transfer their call to other operator. I added the following configure into my dialplan: This should works when *4 was pressed and att_xfer activated, however when I test this dialplan, freeswitch showed the log as: 2019-05-08 18:31:46.546807 [DEBUG] switch_rtp.c:7789 RTP RECV DTMF *:1280 2019-05-08 18:31:46.546807 [INFO] switch_channel.c:515 RECV DTMF *:1280 2019-05-08 18:31:46.986810 [DEBUG] switch_rtp.c:7789 RTP RECV DTMF 4:1280 2019-05-08 18:31:46.986810 [INFO] switch_channel.c:515 RECV DTMF 4:1280 2019-05-08 18:31:46.986810 [DEBUG] switch_ivr_async.c:4233 sofia/internal/anonymous at 192.168.121.11 Processing meta digit '4' [execute_extension:att_xfer XML features] 2019-05-08 18:31:47.226816 [DEBUG] switch_ivr.c:625 sofia/internal/anonymous at 192.168.121.11 Command Execute playback(local_stream://moh/8000) EXECUTE sofia/internal/anonymous at 192.168.121.11 playback(local_stream://moh/8000) 2019-05-08 18:31:47.226816 [DEBUG] mod_local_stream.c:907 Opening Stream [moh/8000] 8000hz 2019-05-08 18:31:47.226816 [DEBUG] switch_ivr_play_say.c:1497 Codec Activated L16 at 8000hz 1 channels 20ms 2019-05-08 18:31:47.226816 [DEBUG] switch_ivr.c:625 sofia/internal/BB-000004 at 192.168.121.3:54129 Command Execute playback(execute_extension:att_xfer XML features) EXECUTE sofia/internal/BB-000004 at 192.168.121.3:54129 playback(execute_extension:att_xfer XML features) 2019-05-08 18:31:47.226816 [ERR] mod_native_file.c:74 Error opening /usr/local/freeswitch/sounds/en/us/callie/execute_extension:att_xfer XML features.PCMU 2019-05-08 18:31:47.226816 [ERR] mod_sndfile.c:204 Error Opening File [/usr/local/freeswitch/sounds/en/us/callie/execute_extension:att_xfer XML features.wav] [System error : No such file or directory.] 2019-05-08 18:31:47.246814 [DEBUG] switch_ivr_play_say.c:1941 done playing file local_stream://moh/8000 The anonymous is my test phone and BB-000004 is operator. I pressed *4 on operator sip phone and got the error above. Freeswitch seems to execute the playback on bind_meta_app. Is there any advice on this problem? System info: FreeSWITCH: FreeSWITCH Version 1.8.5+git~20190124T225359Z~31281a0bf1~64bit (git 31281a0 2019-01-24 22:53:59Z 64bit) OS: Debian Stretch 9.8 Client: Bria 5 Regards. C.Wang -------------- next part -------------- An HTML attachment was scrubbed... URL: From akaccr at gmail.com Wed May 8 03:22:28 2019 From: akaccr at gmail.com (Shishir Pokharel) Date: Tue, 7 May 2019 23:22:28 -0400 Subject: [Freeswitch-users] Verto conference: video garbage In-Reply-To: References: Message-ID: Can you explain a bit more? What kind of video garbage you are referring to? /Shishir > On May 7, 2019, at 23:13, Xiemin Chen wrote: > > There's video garbage showing something during the Verto video conference. > Even though I enlarge the jitter buffer the problem still exists. > Anyway to improve this? > > Sincerely > Xiemin > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com From asilva at wirelessmundi.com Wed May 8 08:31:13 2019 From: asilva at wirelessmundi.com (=?UTF-8?Q?Ant=c3=b3nio_Silva?=) Date: Wed, 8 May 2019 10:31:13 +0200 Subject: cannot buy G729 licences: site is not responding Message-ID: Hi, Is not possible to buy G.729 licences the site is not responding: https://endor.freeswitch.com/cart.php?a=add&pid=33 I follow the link from https://freeswitch.com/index.php/modules-more/ -- Saludos / Regards / Cumprimentos António Silva From vrajendra.vt at yahoo.com Wed May 8 14:19:04 2019 From: vrajendra.vt at yahoo.com (Vrajendra VT) Date: Wed, 8 May 2019 14:19:04 +0000 (UTC) Subject: redirect + swapping of ports References: <303688028.1584432.1557325144650.ref@mail.yahoo.com> Message-ID: <303688028.1584432.1557325144650@mail.yahoo.com> Hi, I am a novice in Freeswitch. I have a provider sending me calls on 5060 port only. I have 2 FS's. Calls are landing on FS1. From FS1, I need to redirect to FS2 (lets assume all calls to be redirected) With normal config's (I had done few config changes in default and public), I was able to get some logs albeit (Proxy Authentication error). This may be because by default internal calls are authenticated. Thats why I swapped ports 5060 and 5080 of internal and external profiles. But I am getting 480 error Any help is appreciated. Thanks. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tdenton at 24-7intouch.com Wed May 8 14:40:55 2019 From: tdenton at 24-7intouch.com (Troy Denton) Date: Wed, 8 May 2019 09:40:55 -0500 Subject: [Freeswitch-users] About Call Transfer In-Reply-To: References: Message-ID: > > > > freeswitch-users at lists.freeswitch.org> > Cc: > Bcc: > Date: Wed, 8 May 2019 14:19:04 +0000 (UTC) > Subject: redirect + swapping of ports > Hi, > > I am a novice in Freeswitch. > > I have a provider sending me calls on 5060 port only. > I have 2 FS's. Calls are landing on FS1. From FS1, I need to redirect to > FS2 > (lets assume all calls to be redirected) > With normal config's (I had done few config changes in default and public), > I was able to get some logs albeit (Proxy Authentication error). This may > be > because by default internal calls are authenticated. > > Thats why I swapped ports 5060 and 5080 of internal and external profiles. > But I am getting 480 error > > Any help is appreciated. Thanks. > > > Thanks. > > > > ---------- Forwarded message ---------- > From: Vrajendra VT via FreeSWITCH-users < > freeswitch-users at lists.freeswitch.org> > To: "freeswitch-users at lists.freeswitch.org" < > freeswitch-users at lists.freeswitch.org> > Cc: > Bcc: > Date: Wed, 08 May 2019 10:40:28 -0700 (PDT) > Subject: [Freeswitch-users] redirect + swapping of ports > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From vrajendra.vt at yahoo.com Thu May 9 03:27:11 2019 From: vrajendra.vt at yahoo.com (Vrajendra VT) Date: Thu, 9 May 2019 03:27:11 +0000 (UTC) Subject: [Freeswitch-users] redirect + swapping of ports In-Reply-To: <255338223.1904028.1557372076796@mail.yahoo.com> References: <303688028.1584432.1557325144650.ref@mail.yahoo.com> <255338223.1904028.1557372076796@mail.yahoo.com> Message-ID: <496158084.1901325.1557372431102@mail.yahoo.com> + freeswitch-users at lists.freeswitch.org On Thursday, May 9, 2019, 8:51:16 AM GMT+5:30, Vrajendra VT wrote: Thank you Jose for the reply. The reason for doing this:Lets just say FS2 will be replaced with N no of FSs in future So, FS1 will redirect to FS2 .... FSN, depending upon which is free (whose load is less).As of now, will take FS1 and FS2 as an example. Since I have swapped the ports. the incoming call (on 5060) is handled by external profile (rather than internal) since I have swapped the ports in vars.xml. Since I am only redirecting from FS1, I have changed only public.xml something like this on FS1                           After this, I am seeing the following in the logs, 2019-05-09 03:05:29.267994 [DEBUG] mod_sofia.c:577 Responding to INVITE with: 302 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:60 sofia/external/+16617480240@[IP from SIP PROVIDER] Standard HANGUP, cause: NORMAL_UNSPECIFIED 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:852 (sofia/external/+16617480240@[IP from SIP PROVIDER]) State HANGUP going to sleep 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:619 (sofia/external/+16617480240@[IP from SIP PROVIDER]) State Change CS_HANGUP -> CS_REPORTING 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:584 (sofia/external/+16617480240@[IP from SIP PROVIDER]) Running State Change CS_REPORTING (Cur 2 Tot 7538) 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:938 (sofia/external/+16617480240@[IP from SIP PROVIDER]) State REPORTING 2019-05-09 03:05:29.428022 [ERR] mod_cdr_csv.c:156 Error opening /var/log/freeswitch/cdr-csv/Master.csv 2019-05-09 03:05:29.428022 [DEBUG] switch_core_state_machine.c:174 sofia/external/16617480240@[IP from SIP PROVIDER] Standard REPORTING, cause: NORMAL_UNSPECIFIED 2019-05-09 03:05:29.428022 [DEBUG] switch_core_state_machine.c:938 (sofia/external/16617480240@[IP from SIP PROVIDER]) State REPORTING going to sleep 2019-05-09 03:05:29.428022 [DEBUG] switch_core_state_machine.c:610 (sofia/external/16617480240@[IP from SIP PROVIDER]) State Change CS_REPORTING -> CS_DESTROY 2019-05-09 03:05:29.428022 [DEBUG] switch_core_session.c:1665 Session 7537 (sofia/external/16617480240@[IP from SIP PROVIDER]) Locked, Waiting on external entities 2019-05-09 03:05:29.428022 [NOTICE] switch_core_session.c:1683 Session 7537 (sofia/external/16617480240@[IP from SIP PROVIDER]) Ended 2019-05-09 03:05:29.428022 [NOTICE] switch_core_session.c:1687 Close Channel sofia/external/16617480240@[IP from SIP PROVIDER] [CS_DESTROY] One thing I observed, "+" missing in source number for second half of logs. After corresponding redirect, I am not seeing any logs on FS2.Could there be issue in FS2 configs? Thanks. On Thursday, May 9, 2019, 12:22:44 AM GMT+5:30, Jose Figueroa wrote: Hello Vrajendra, There are several ways to achieve this. The question is what is the reason you're doing this? It would be good to understand the scenario.In VoIP, you can use prefixes to redirect incoming calls or outgoing calls to specific gateways or even use sip proxy strategies. In addition, if you share your config here I am pretty sure someone from the mailing list can help you. ThanksJose N Figueroa On Wed, May 8, 2019 at 12:40 PM Vrajendra VT via FreeSWITCH-users wrote: ---------- Forwarded message ---------- From: Vrajendra VT To: "freeswitch-users at lists.freeswitch.org" Cc:  Bcc:  Date: Wed, 8 May 2019 14:19:04 +0000 (UTC) Subject: redirect + swapping of ports Hi, I am a novice in Freeswitch. I have a provider sending me calls on 5060 port only. I have 2 FS's. Calls are landing on FS1. From FS1, I need to redirect to FS2 (lets assume all calls to be redirected) With normal config's (I had done few config changes in default and public), I was able to get some logs albeit (Proxy Authentication error). This may be because by default internal calls are authenticated. Thats why I swapped ports 5060 and 5080 of internal and external profiles. But I am getting 480 error Any help is appreciated. Thanks. Thanks. ---------- Forwarded message ---------- From: Vrajendra VT via FreeSWITCH-users To: "freeswitch-users at lists.freeswitch.org" Cc:  Bcc:  Date: Wed, 08 May 2019 10:40:28 -0700 (PDT) Subject: [Freeswitch-users] redirect + swapping of ports _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From josedavid at zennio.com Fri May 10 06:25:16 2019 From: josedavid at zennio.com (Jose David Jurado Alonso) Date: Fri, 10 May 2019 08:25:16 +0200 Subject: [Freeswitch-users] Call to unregister endpoint with auth=true after endpoint password change Message-ID: Hi, I have FS configured to only send calls to authenticated endpoints. It works very well in general but there is a case in which it sends the call to unregistered endpoints: 1. Auth the endpoint and "registration" (ok) 2. Call to endpoint and call arrives (ok) 3. Change the endpoint password in FS DB and endpoint "fail registration" 4. Call to endpoint and call arrives (ERROR, call must be ignored) The ERROR is because the REGISTER event know that endpoint "fail registration" and yet send the call anyway ignoring the "auth_calls=true" configuration. If I execute these fs_cli commands between step 3 and 4, the call is not sent (OK for me, expected and desired case): > sofia profile external flush_inbound_reg all > sofia profile external flush_inbound_reg reboot > sofia profile external check_sync I have not tested if all the commands are necessary or not. Does anyone know how it can be done to make it work as desired using configuration without having to execute the commands after every password change in an endpoint? Relevant configuration is: vars.xml: sip_profile "external.xml" (i use it): I use a dynamic directory getting SIP accounts from DB and generate the XML (mod_curl) setting "cacheable=0". Thanks! José David Jurado Alonso. -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at freeswitch.com Fri May 10 09:11:22 2019 From: alex at freeswitch.com (Alexey Sibyakin) Date: Fri, 10 May 2019 18:11:22 +0900 Subject: [Freeswitch-users] Call to unregister endpoint with auth=true after endpoint password change In-Reply-To: References: Message-ID: Hi, FreeSWITCH will not send a call to an unregistered endpoint. Registration will not expire because of password changing. Try to reduce expire or flush registration via ESL on password change. Regards, Alex Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, Palo Alto, CA 94303 Email: alex at freeswitch.com Website: https://www.signalwire.com On Fri, May 10, 2019 at 4:09 PM Jose David Jurado Alonso < josedavid at zennio.com> wrote: > Hi, > > I have FS configured to only send calls to authenticated endpoints. It > works very well in general but there is a case in which it sends the call > to unregistered endpoints: > > 1. Auth the endpoint and "registration" (ok) > 2. Call to endpoint and call arrives (ok) > 3. Change the endpoint password in FS DB and endpoint "fail > registration" > 4. Call to endpoint and call arrives (ERROR, call must be ignored) > > The ERROR is because the REGISTER event know that endpoint "fail > registration" and yet send the call anyway ignoring the "auth_calls=true" > configuration. > > If I execute these fs_cli commands between step 3 and 4, the call is not > sent (OK for me, expected and desired case): > > > sofia profile external flush_inbound_reg all > > sofia profile external flush_inbound_reg reboot > > sofia profile external check_sync > > I have not tested if all the commands are necessary or not. > > Does anyone know how it can be done to make it work as desired using > configuration without having to execute the commands after every password > change in an endpoint? > > Relevant configuration is: > > vars.xml: > > > > > > > > > > > > > > sip_profile "external.xml" (i use it): > > > > > > > I use a dynamic directory getting SIP accounts from DB and generate the > XML (mod_curl) setting "cacheable=0". > > Thanks! > > José David Jurado Alonso. > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From josedavid at zennio.com Fri May 10 12:11:49 2019 From: josedavid at zennio.com (Jose David Jurado Alonso) Date: Fri, 10 May 2019 14:11:49 +0200 Subject: [Freeswitch-users] Call to unregister endpoint with auth=true after endpoint password change In-Reply-To: References: Message-ID: Hi, Yes, I had already reached that conclusion. Thank you very much for the reply. The solution that is going to give is to execute a script with these commands after the change of password since this change is done from an external app outside of FS context so it is not viable through ESL. Thanks again. José David Jurado Alonso El vie., 10 may. 2019 a las 11:41, Alexey Sibyakin () escribió: > Hi, > > FreeSWITCH will not send a call to an unregistered endpoint. Registration > will not expire because of password changing. > > Try to reduce expire or flush registration via ESL on password change. > > Regards, > > Alex > > Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, > Palo Alto, CA 94303 Email: alex at freeswitch.com Website: > https://www.signalwire.com > > > > On Fri, May 10, 2019 at 4:09 PM Jose David Jurado Alonso < > josedavid at zennio.com> wrote: > >> Hi, >> >> I have FS configured to only send calls to authenticated endpoints. It >> works very well in general but there is a case in which it sends the call >> to unregistered endpoints: >> >> 1. Auth the endpoint and "registration" (ok) >> 2. Call to endpoint and call arrives (ok) >> 3. Change the endpoint password in FS DB and endpoint "fail >> registration" >> 4. Call to endpoint and call arrives (ERROR, call must be ignored) >> >> The ERROR is because the REGISTER event know that endpoint "fail >> registration" and yet send the call anyway ignoring the "auth_calls=true" >> configuration. >> >> If I execute these fs_cli commands between step 3 and 4, the call is not >> sent (OK for me, expected and desired case): >> >> > sofia profile external flush_inbound_reg all >> > sofia profile external flush_inbound_reg reboot >> > sofia profile external check_sync >> >> I have not tested if all the commands are necessary or not. >> >> Does anyone know how it can be done to make it work as desired using >> configuration without having to execute the commands after every password >> change in an endpoint? >> >> Relevant configuration is: >> >> vars.xml: >> >> >> >> >> >> >> >> >> >> >> >> >> >> sip_profile "external.xml" (i use it): >> >> >> >> >> >> >> I use a dynamic directory getting SIP accounts from DB and generate the >> XML (mod_curl) setting "cacheable=0". >> >> Thanks! >> >> José David Jurado Alonso. >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From support at directvoip.co.uk Fri May 10 12:48:18 2019 From: support at directvoip.co.uk (Darren Williams) Date: Fri, 10 May 2019 14:48:18 +0200 Subject: [Freeswitch-users] Call to unregister endpoint with auth=true after endpoint password change In-Reply-To: References: Message-ID: I think there ma be a misunderstanding here. auth-calls has nothing to do with incoming calls, the password is irrelevant in this situation. The calls will always go to the endpoint until the registration times out. On Fri, 10 May 2019 at 14:42, Jose David Jurado Alonso wrote: > Hi, > > Yes, I had already reached that conclusion. Thank you very much for the > reply. > > The solution that is going to give is to execute a script with these > commands after the change of password since this change is done from an > external app outside of FS context so it is not viable through ESL. > > Thanks again. > > José David Jurado Alonso > > El vie., 10 may. 2019 a las 11:41, Alexey Sibyakin () > escribió: > >> Hi, >> >> FreeSWITCH will not send a call to an unregistered endpoint. Registration >> will not expire because of password changing. >> >> Try to reduce expire or flush registration via ESL on password change. >> >> Regards, >> >> Alex >> >> Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, >> Palo Alto, CA 94303 Email: alex at freeswitch.com Website: >> https://www.signalwire.com >> >> >> >> On Fri, May 10, 2019 at 4:09 PM Jose David Jurado Alonso < >> josedavid at zennio.com> wrote: >> >>> Hi, >>> >>> I have FS configured to only send calls to authenticated endpoints. It >>> works very well in general but there is a case in which it sends the call >>> to unregistered endpoints: >>> >>> 1. Auth the endpoint and "registration" (ok) >>> 2. Call to endpoint and call arrives (ok) >>> 3. Change the endpoint password in FS DB and endpoint "fail >>> registration" >>> 4. Call to endpoint and call arrives (ERROR, call must be ignored) >>> >>> The ERROR is because the REGISTER event know that endpoint "fail >>> registration" and yet send the call anyway ignoring the "auth_calls=true" >>> configuration. >>> >>> If I execute these fs_cli commands between step 3 and 4, the call is not >>> sent (OK for me, expected and desired case): >>> >>> > sofia profile external flush_inbound_reg all >>> > sofia profile external flush_inbound_reg reboot >>> > sofia profile external check_sync >>> >>> I have not tested if all the commands are necessary or not. >>> >>> Does anyone know how it can be done to make it work as desired using >>> configuration without having to execute the commands after every password >>> change in an endpoint? >>> >>> Relevant configuration is: >>> >>> vars.xml: >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> sip_profile "external.xml" (i use it): >>> >>> >>> >>> >>> >>> >>> I use a dynamic directory getting SIP accounts from DB and generate the >>> XML (mod_curl) setting "cacheable=0". >>> >>> Thanks! >>> >>> José David Jurado Alonso. >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Fri May 10 14:01:22 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Fri, 10 May 2019 14:01:22 +0000 Subject: [Freeswitch-users] PASSed dialplan ignored? In-Reply-To: References: Message-ID: Duh. Cut and paste can be evil. Had all instead of Thanks Brian, Sean From: FreeSWITCH-users On Behalf Of Brian West Sent: Tuesday, May 7, 2019 2:49 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] PASSed dialplan ignored? Doesn't look like the extension gave it anything to do. You can still match a regex, but fail to give it directions. On Tue, May 7, 2019 at 1:31 PM Sean Devoy > wrote: Can anyone explain this to me? 79c47900-43c6-4e2a-be5d-42883371a823 Dialplan: sofia/internal/220@) Regex (PASS) [getvoicemail] destination_number(*8686) =~ /^\*8686$/ break=on-false 79c47900-43c6-4e2a-be5d-42883371a823 2019-05-07 18:08:53.382829 [INFO] switch_core_state_machine.c:311 No Route, Aborting 79c47900-43c6-4e2a-be5d-42883371a823 2019-05-07 18:08:53.382829 [NOTICE] switch_core_state_machine.c:312 Hangup sofia/internal/220@> [CS_ROUTING] [NO_ROUTE_DESTINATION] How can it be REGEX (PASS) and have no route? Thanks, Sean _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [https://www.facebook.com/signalwireinc?src=email][https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Fri May 10 14:10:49 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Fri, 10 May 2019 14:10:49 +0000 Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds Message-ID: Hi all, I have a problem with one client where the call is fine and they can talk for almost exactly 30 seconds, then the log says originating phone (of FS) hung up. This only happens like 1% to 5% of the time. The phones are Mitel 6867i and 6865i which must use TCP not UDP. The firewall is a $#!#&* SonicWall. I am 99% convinced it is the firewall. It happened once on a Cisco phone using UDP so I increased the firewall UDP timeout. I already have keep-alive set to 30 seconds. It has not recurred on UDP phones since. Any ideas on something to do to Mitel config or SonicWall that might prevent a drop after 30 seconds? I have considered PCAP, but with so few occurrences I am worried about PCAP size before I get a "hit." Thanks, Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Fri May 10 14:24:40 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Fri, 10 May 2019 14:24:40 +0000 Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds In-Reply-To: References: Message-ID: Thanks Nathan. That is a big help. Maybe I can finally see what is really happening. Sean From: Nathan Neulinger Sent: Friday, May 10, 2019 10:17 AM To: FreeSWITCH Users Help ; Sean Devoy Subject: Re: [Freeswitch-users] Occasional Dropped call at 30 seconds It doesn't address your actual issue - but for the pcap - as long as you can respond in a reasonable timeframe for the hit, you can use the tcpdump file rotation options "-C size -W count" to just set up a capture that will rotate through files. It'll create a lot of capture, but it will only keep the last N files. -- Nathan ________________________________ From: Sean Devoy Sent: Fri, May 10, 2019 9:10 AM CDT To: FreeSWITCH Users Help Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds Hi all, I have a problem with one client where the call is fine and they can talk for almost exactly 30 seconds, then the log says originating phone (of FS) hung up. This only happens like 1% to 5% of the time. The phones are Mitel 6867i and 6865i which must use TCP not UDP. The firewall is a $#!#&* SonicWall. I am 99% convinced it is the firewall. It happened once on a Cisco phone using UDP so I increased the firewall UDP timeout. I already have keep-alive set to 30 seconds. It has not recurred on UDP phones since. Any ideas on something to do to Mitel config or SonicWall that might prevent a drop after 30 seconds? I have considered PCAP, but with so few occurrences I am worried about PCAP size before I get a "hit." Thanks, Sean _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- ------------------------------------------------------------ Nathan Neulinger nneul at mst.edu Missouri S&T Information Technology (573) 341-6679 System Administrator - Architect (573) 612-1412 System and Desktop Infrastructure Team Manager -------------- next part -------------- An HTML attachment was scrubbed... URL: From vma at vallimamod.org Fri May 10 14:51:33 2019 From: vma at vallimamod.org (Vallimamod Abdullah) Date: Fri, 10 May 2019 16:51:33 +0200 Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds In-Reply-To: References: Message-ID: Hi, a 30s delay (more exactly, 32s) is for sure a nat issue: you are not receiving the final ACK. Check if there is a SIP ALG enabled on your SonicWall and try to disable it. Best Regards, -- Vallimamod Abdullah SIP Solutions vma at sip.solutions linkedin.com/in/vallimamod . > On 10 May 2019, at 16:10, Sean Devoy wrote: > > Hi all, > > I have a problem with one client where the call is fine and they can talk for almost exactly 30 seconds, then the log says originating phone (of FS) hung up. This only happens like 1% to 5% of the time. > > The phones are Mitel 6867i and 6865i which must use TCP not UDP. The firewall is a $#!#&* SonicWall. I am 99% convinced it is the firewall. It happened once on a Cisco phone using UDP so I increased the firewall UDP timeout. I already have keep-alive set to 30 seconds. It has not recurred on UDP phones since. > > Any ideas on something to do to Mitel config or SonicWall that might prevent a drop after 30 seconds? > > I have considered PCAP, but with so few occurrences I am worried about PCAP size before I get a “hit.” > > Thanks, > Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Fri May 10 15:47:46 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Fri, 10 May 2019 16:47:46 +0100 Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds In-Reply-To: References: Message-ID: +1 On Fri, 10 May 2019 at 16:08, Vallimamod Abdullah wrote: > Hi, > > a 30s delay (more exactly, 32s) is for sure a nat issue: you are not > receiving the final ACK. > > Check if there is a SIP ALG enabled on your SonicWall and try to disable > it. > > Best Regards, > -- > Vallimamod Abdullah > SIP Solutions > vma at sip.solutions > linkedin.com/in/vallimamod > . > > > On 10 May 2019, at 16:10, Sean Devoy wrote: > > Hi all, > > I have a problem with one client where the call is fine and they can talk > for almost exactly 30 seconds, then the log says originating phone (of FS) > hung up. This only happens like 1% to 5% of the time. > > The phones are Mitel 6867i and 6865i which must use TCP not UDP. The > firewall is a $#!#&* SonicWall. I am 99% convinced it is the firewall. It > happened once on a Cisco phone using UDP so I increased the firewall UDP > timeout. I already have keep-alive set to 30 seconds. It has not recurred > on UDP phones since. > > Any ideas on something to do to Mitel config or SonicWall that might > prevent a drop after 30 seconds? > > I have considered PCAP, but with so few occurrences I am worried about > PCAP size before I get a “hit.” > > Thanks, > Sean > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From abhilash.rathod at ecosmob.com Fri May 10 04:10:22 2019 From: abhilash.rathod at ecosmob.com (Abhilash Rathod) Date: Fri, 10 May 2019 09:40:22 +0530 Subject: [Freeswitch-users] Auto start freeswitch license server Message-ID: Hello Team, I have purchased License for the Mod_com_G729 and transcoding works fine. But I want to know can I start this license server automatically when any transcoding command run. the command is like below. $ /usr/local/freeswitch/bin/fs_encode -l mod_com_g729 tmp_dg_en.wav.wav tmp_dg_en.wav.G729 Advance thanks for the help. -- *Thanks & Regards* *Abhilash Rathod* [image: Ecosmob Technologies Pvt. Ltd.] Ecosmob Technologies Pvt. Ltd. https://www.ecosmob.com -- *Disclaimer* In addition to generic Disclaimer which you have agreed on our website, any views or opinions presented in this email are solely those of the originator and do not necessarily represent those of the Company or its sister concerns. Any liability (in negligence, contract or otherwise) arising from any third party taking any action, or refraining from taking any action on the basis of any of the information contained in this email is hereby excluded. *Confidentiality* This communication (including any attachment/s) is intended only for the use of the addressee(s) and contains information that is PRIVILEGED AND CONFIDENTIAL. Unauthorized reading, dissemination, distribution, or copying of this communication is prohibited. Please inform originator if you have received it in error. *Caution for viruses, malware etc.* This communication, including any attachments, may not be free of viruses, trojans, similar or new contaminants/malware, interceptions or interference, and may not be compatible with your systems. You shall carry out virus/malware scanning on your own before opening any attachment to this e-mail. The sender of this e-mail and Company including its sister concerns shall not be liable for any damage that may incur to you as a result of viruses, incompleteness of this message, a delay in receipt of this message or any other computer problems.  -------------- next part -------------- An HTML attachment was scrubbed... URL: From vrajendra.vt at yahoo.com Fri May 10 09:30:58 2019 From: vrajendra.vt at yahoo.com (Vrajendra VT) Date: Fri, 10 May 2019 09:30:58 +0000 (UTC) Subject: [Freeswitch-users] redirect + swapping of ports In-Reply-To: References: <303688028.1584432.1557325144650.ref@mail.yahoo.com> <255338223.1904028.1557372076796@mail.yahoo.com> Message-ID: <2145880867.2425955.1557480658887@mail.yahoo.com> Hi, Still awaiting for the reply. Thanks. On Thursday, May 9, 2019, 3:44:28 PM EDT, Vrajendra VT via FreeSWITCH-users wrote: + freeswitch-users at lists.freeswitch.org On Thursday, May 9, 2019, 8:51:16 AM GMT+5:30, Vrajendra VT wrote: Thank you Jose for the reply. The reason for doing this:Lets just say FS2 will be replaced with N no of FSs in future So, FS1 will redirect to FS2 .... FSN, depending upon which is free (whose load is less).As of now, will take FS1 and FS2 as an example. Since I have swapped the ports. the incoming call (on 5060) is handled by external profile (rather than internal) since I have swapped the ports in vars.xml. Since I am only redirecting from FS1, I have changed only public.xml something like this on FS1                           After this, I am seeing the following in the logs, 2019-05-09 03:05:29.267994 [DEBUG] mod_sofia.c:577 Responding to INVITE with: 302 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:60 sofia/external/+16617480240@[IP from SIP PROVIDER] Standard HANGUP, cause: NORMAL_UNSPECIFIED 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:852 (sofia/external/+16617480240@[IP from SIP PROVIDER]) State HANGUP going to sleep 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:619 (sofia/external/+16617480240@[IP from SIP PROVIDER]) State Change CS_HANGUP -> CS_REPORTING 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:584 (sofia/external/+16617480240@[IP from SIP PROVIDER]) Running State Change CS_REPORTING (Cur 2 Tot 7538) 2019-05-09 03:05:29.267994 [DEBUG] switch_core_state_machine.c:938 (sofia/external/+16617480240@[IP from SIP PROVIDER]) State REPORTING 2019-05-09 03:05:29.428022 [ERR] mod_cdr_csv.c:156 Error opening /var/log/freeswitch/cdr-csv/Master.csv 2019-05-09 03:05:29.428022 [DEBUG] switch_core_state_machine.c:174 sofia/external/16617480240@[IP from SIP PROVIDER] Standard REPORTING, cause: NORMAL_UNSPECIFIED 2019-05-09 03:05:29.428022 [DEBUG] switch_core_state_machine.c:938 (sofia/external/16617480240@[IP from SIP PROVIDER]) State REPORTING going to sleep 2019-05-09 03:05:29.428022 [DEBUG] switch_core_state_machine.c:610 (sofia/external/16617480240@[IP from SIP PROVIDER]) State Change CS_REPORTING -> CS_DESTROY 2019-05-09 03:05:29.428022 [DEBUG] switch_core_session.c:1665 Session 7537 (sofia/external/16617480240@[IP from SIP PROVIDER]) Locked, Waiting on external entities 2019-05-09 03:05:29.428022 [NOTICE] switch_core_session.c:1683 Session 7537 (sofia/external/16617480240@[IP from SIP PROVIDER]) Ended 2019-05-09 03:05:29.428022 [NOTICE] switch_core_session.c:1687 Close Channel sofia/external/16617480240@[IP from SIP PROVIDER] [CS_DESTROY] One thing I observed, "+" missing in source number for second half of logs. After corresponding redirect, I am not seeing any logs on FS2.Could there be issue in FS2 configs? Thanks. On Thursday, May 9, 2019, 12:22:44 AM GMT+5:30, Jose Figueroa wrote: Hello Vrajendra, There are several ways to achieve this. The question is what is the reason you're doing this? It would be good to understand the scenario.In VoIP, you can use prefixes to redirect incoming calls or outgoing calls to specific gateways or even use sip proxy strategies. In addition, if you share your config here I am pretty sure someone from the mailing list can help you. ThanksJose N Figueroa On Wed, May 8, 2019 at 12:40 PM Vrajendra VT via FreeSWITCH-users wrote: ---------- Forwarded message ---------- From: Vrajendra VT To: "freeswitch-users at lists.freeswitch.org" Cc:  Bcc:  Date: Wed, 8 May 2019 14:19:04 +0000 (UTC) Subject: redirect + swapping of ports Hi, I am a novice in Freeswitch. I have a provider sending me calls on 5060 port only. I have 2 FS's. Calls are landing on FS1. From FS1, I need to redirect to FS2 (lets assume all calls to be redirected) With normal config's (I had done few config changes in default and public), I was able to get some logs albeit (Proxy Authentication error). This may be because by default internal calls are authenticated. Thats why I swapped ports 5060 and 5080 of internal and external profiles. But I am getting 480 error Any help is appreciated. Thanks. Thanks. ---------- Forwarded message ---------- From: Vrajendra VT via FreeSWITCH-users To: "freeswitch-users at lists.freeswitch.org" Cc:  Bcc:  Date: Wed, 08 May 2019 10:40:28 -0700 (PDT) Subject: [Freeswitch-users] redirect + swapping of ports _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From cpservicespb at gmail.com Fri May 10 11:27:13 2019 From: cpservicespb at gmail.com (CpServiceSPb) Date: Fri, 10 May 2019 14:27:13 +0300 Subject: [Freeswitch-users] Is there device / extension state functionality at Freeswitch or how is to get User/Gateway state ? Message-ID: There is Freeswitch 1.8.5 built from sources worked on x64 Linux. I need to check / get internal users / trunck gateways state BEFORE using it to perform different actions in response of got conditions: 1. the called number is not exists in the directory at all; 2. the called number exist in the directory, but not registered at the time, for example don' t launch softphone; 3. the called number is inuse; 4. the called number is busy; 5. the called number is not answered due timeout 6. the called number is answered. Is there functionality looks like device and / or extension (user) state at Freeswitch ? And if I could still get at least 1 and 2 states and 5 of a user, I can' t get inuse, busy states. How is the best way to get these different states for internal users, for each one and /or for trunk gateways, per each also ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From praveen.chourasia at outlook.com Fri May 10 11:45:34 2019 From: praveen.chourasia at outlook.com (Praveen Chourasia) Date: Fri, 10 May 2019 11:45:34 +0000 Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database In-Reply-To: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> References: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> Message-ID: Hi Frédérick, PostgreSQL BDR uses 'Master-Master' replication and requires locking if any of the PostgreSQL BDR nodes (that are in replication cluster) executes DDL SQL queries. It causes the whole cluster to lock as far as I remember. The reason you may be experiencing the database getting locked when you restart one of the FreeSWITCH nodes is that FreeSWITCH upon its start/restart executes DDL queries. FreeSWITCH AFAIK unconditionally executes 'DROP TABLE/VIEW...' and 'CREATE TABLE/VIEW ...' for tables like 'channels', 'calls', 'interfaces', 'tasks' (TABLES) & 'detailed_calls', 'basic_calls' (VIEWS) that ultimately leads to PostgreSQL BDR getting locked. -- Praveen Chourasia ________________________________ From: FreeSWITCH-users on behalf of Frédérick Pruneau Sent: Monday, May 6, 2019 7:38 PM To: freeswitch-users at lists.freeswitch.org Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database Hi guys, I have an issue with FS unable to reconnect to postgresql database. Here is the setup: 2 FreeSWITCH servers with 2 postgresql servers. Each freeswitch is connected to 1 postgresql server. DB servers are synced with BDR. It was working very well until I restarted freeswitch service on one of the servers. Then, I got theses errors showing up on freeswitch console: switch_pgsql.c:384 Query X took too long to complete or database not responding. database is locked against ddl by another node I followed some guides to remove locks with these commands: SELECT * FROM pg_stat_activity; SELECT pg_terminate_backend(${pid}); But the issue is still there. Do you have an idea how to fix this issue? Thanks. _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From nneul at mst.edu Fri May 10 14:17:07 2019 From: nneul at mst.edu (Nathan Neulinger) Date: Fri, 10 May 2019 09:17:07 -0500 Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds In-Reply-To: References: Message-ID: It doesn't address your actual issue - but for the pcap - as long as you can respond in a reasonable timeframe for the hit, you can use the tcpdump file rotation options "-C size -W count" to just set up a capture that will rotate through files. It'll create a lot of capture, but it will only keep the last N files. -- Nathan ------------------------------------------------------------------------------------------------------------------------ *From:* Sean Devoy *Sent:* Fri, May 10, 2019 9:10 AM CDT *To:* FreeSWITCH Users Help *Subject:* [Freeswitch-users] Occasional Dropped call at 30 seconds > Hi all, > > I have a problem with one client where the call is fine and they can talk for almost exactly 30 seconds, then the log > says originating phone (of FS) hung up.  This only happens like 1% to 5% of the time. > > The phones are Mitel 6867i and 6865i which must use TCP not UDP.  The firewall is a $#!#&* SonicWall.  I am 99% > convinced it is the firewall.  It happened once on a Cisco phone using UDP so I increased the firewall UDP timeout.  I > already have keep-alive set to 30 seconds.  It has not recurred on UDP phones since. > > Any ideas on something to do to Mitel config or SonicWall that might prevent a drop after 30 seconds? > > I have considered PCAP, but with so few occurrences I am worried about PCAP size before I get a “hit.” > > Thanks, > > Sean > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- ------------------------------------------------------------ Nathan Neulinger nneul at mst.edu Missouri S&T Information Technology (573) 341-6679 System Administrator - Architect (573) 612-1412 System and Desktop Infrastructure Team Manager -------------- next part -------------- An HTML attachment was scrubbed... URL: From andywolk at gmail.com Fri May 10 19:26:53 2019 From: andywolk at gmail.com (Andrey Wolk) Date: Fri, 10 May 2019 23:26:53 +0400 Subject: [Freeswitch-users] NOTICE: Jira is down for maintenance. Please be patient. Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at freeswitch.org Fri May 10 20:26:36 2019 From: mike at freeswitch.org (Mike Jerris) Date: Fri, 10 May 2019 14:26:36 -0600 Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database In-Reply-To: References: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> Message-ID: If you are using shared db you should be disabling the features for managing the schema. The issue is you will need to manually maintain your schema. Almost always we manage schema it a way that is backwards compatible so you can do staged upgrades if you manually add to the tables. > On May 10, 2019, at 5:45 AM, Praveen Chourasia wrote: > > Hi Frédérick, > > PostgreSQL BDR uses 'Master-Master' replication and requires locking if any of the PostgreSQL BDR nodes (that are in replication cluster) executes DDL SQL queries. It causes the whole cluster to lock as far as I remember. > > The reason you may be experiencing the database getting locked when you restart one of the FreeSWITCH nodes is that FreeSWITCH upon its start/restart executes DDL queries. > > FreeSWITCH AFAIK unconditionally executes 'DROP TABLE/VIEW...' and 'CREATE TABLE/VIEW ...' for tables like 'channels', 'calls', 'interfaces', 'tasks' (TABLES) & 'detailed_calls', 'basic_calls' (VIEWS) that ultimately leads to PostgreSQL BDR getting locked. > > -- > Praveen Chourasia > > From: FreeSWITCH-users on behalf of Frédérick Pruneau > Sent: Monday, May 6, 2019 7:38 PM > To: freeswitch-users at lists.freeswitch.org > Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database > > Hi guys, > > I have an issue with FS unable to reconnect to postgresql database. Here > is the setup: 2 FreeSWITCH servers with 2 postgresql servers. Each > freeswitch is connected to 1 postgresql server. DB servers are synced > with BDR. It was working very well until I restarted freeswitch service > on one of the servers. Then, I got theses errors showing up on > freeswitch console: > > switch_pgsql.c:384 Query X took too long to complete or database not > responding. > > database is locked against ddl by another node > > I followed some guides to remove locks with these commands: > > SELECT * FROM pg_stat_activity; > SELECT pg_terminate_backend(${pid}); > > But the issue is still there. Do you have an idea how to fix this issue? > > Thanks. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexander at neilson.net.nz Fri May 10 18:47:57 2019 From: alexander at neilson.net.nz (Alexander Neilson) Date: Sat, 11 May 2019 06:47:57 +1200 Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds In-Reply-To: References: Message-ID: <6842E3EB-FCE8-455E-BC94-F6AA0C07F31D@neilson.net.nz> This link is for a different phone system. But it looks like you may need to get two setting options to avoid the random translations of port. https://www.3cx.com/docs/sonicwall-firewall-configuration/ Regards Alexander Alexander Neilson Neilson Productions Limited 021 329 681 alexander at neilson.net.nz > On 11/05/2019, at 03:47, David Villasmil wrote: > > +1 > >> On Fri, 10 May 2019 at 16:08, Vallimamod Abdullah wrote: >> Hi, >> >> a 30s delay (more exactly, 32s) is for sure a nat issue: you are not receiving the final ACK. >> >> Check if there is a SIP ALG enabled on your SonicWall and try to disable it. >> >> Best Regards, >> -- >> Vallimamod Abdullah >> SIP Solutions >> vma at sip.solutions >> linkedin.com/in/vallimamod >> . >> >> >>> On 10 May 2019, at 16:10, Sean Devoy wrote: >>> >>> Hi all, >>> >>> I have a problem with one client where the call is fine and they can talk for almost exactly 30 seconds, then the log says originating phone (of FS) hung up. This only happens like 1% to 5% of the time. >>> >>> The phones are Mitel 6867i and 6865i which must use TCP not UDP. The firewall is a $#!#&* SonicWall. I am 99% convinced it is the firewall. It happened once on a Cisco phone using UDP so I increased the firewall UDP timeout. I already have keep-alive set to 30 seconds. It has not recurred on UDP phones since. >>> >>> Any ideas on something to do to Mitel config or SonicWall that might prevent a drop after 30 seconds? >>> >>> I have considered PCAP, but with so few occurrences I am worried about PCAP size before I get a “hit.” >>> >>> Thanks, >>> Sean >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryandelgrosso at gmail.com Sat May 11 00:31:25 2019 From: ryandelgrosso at gmail.com (Ryan Delgrosso) Date: Fri, 10 May 2019 17:31:25 -0700 Subject: [Freeswitch-users] Nightmare transfer question Message-ID: <6a57f667-c023-8c94-4698-e8b35cc594e6@gmail.com> So I have a cluster of FS servers using a common shared DB. There is host weighting and some loosely intelligent dialplan generation to attempt to get related dialogs started on the same instance but I still occasionally encounter the "nightmare xfer" section of sofia.c which basically guarantees this call is doomed. To be clear, this happens when for some reason an endpoint ends up on a call through FS1, then makes an outbound call that for some cacophony of reasons ends up on FS2 and then hit xfer. There isnt anything in the signaling from most endpoints that indicate to me the invite beginning the 2nd leg is implicitly related to the 1st so i cant do any clever routing at the outset. What can i do to try and make this recoverable? Since i dont even get a dialplan request for the refer im struggling with how to affect this in a way that might make the call succeed. Thanks in advance -Ryan From sdevoy at bizfocused.com Mon May 13 17:20:21 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Mon, 13 May 2019 17:20:21 +0000 Subject: [Freeswitch-users] Failed Connection Message-ID: Hi, My user said "It just never connected" referring to an outbound call. It looks like everything is going great until the RTP is starting and then splat. This all happens in 2 seconds or less. I have tried different gateways and 2 different NAT'ed phone locations. The server is not NAT'ed. These have only started since I updated to FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit). But other things have changed too! I created a paste bin of my log: https://pastebin.com/9nw39DaR The lines in the log that confuse me are bordered by rows of ******. >From my clueless reviews, it looks like it may be related top CODEC (re)negotiation. Thanks for any insights you can share. Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 13 17:43:01 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 13 May 2019 12:43:01 -0500 Subject: [Freeswitch-users] Failed Connection In-Reply-To: References: Message-ID: global_setvar execute_on_answer=playback:silence_stream://500 Then try again, smells like a mexican stand off where both ends are waiting for the other to send a packet. /b On Mon, May 13, 2019 at 12:20 PM Sean Devoy wrote: > Hi, > > My user said “It just never connected” referring to an outbound call. It > looks like everything is going great until the RTP is starting and then > splat. This all happens in 2 seconds or less. I have tried different > gateways and 2 different NAT’ed phone locations. The server is not NAT’ed. > These have only started since I updated to FreeSWITCH Version > 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit). But other things have > changed too! > > I created a paste bin of my log: > > https://pastebin.com/9nw39DaR > > The lines in the log that confuse me are bordered by rows of ******. > > From my clueless reviews, it looks like it may be related top CODEC > (re)negotiation. > > > > Thanks for any insights you can share. > > Sean > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From wsimon at stratusvideo.com Mon May 13 14:08:44 2019 From: wsimon at stratusvideo.com (William Simon) Date: Mon, 13 May 2019 14:08:44 +0000 Subject: [Freeswitch-users] conference member play image file Message-ID: <001FDD9A-10D5-4248-AABD-D8E0DFB5B0FF@stratusvideo.com> Using Freeswitch 1.8.5 release version we are trying to play a PNG image file to individual video conference members. Per confluence the API is: conference play [{vol=,full-screen=true,png_ms=100}] [async| [nomux]] Doing this API and omitting the details after the file-path, the PNG image is displayed to all conference members. If we include the member_id afterward in order to send the image to just one member, suddenly Freeswitch complains: 2019-05-10 10:23:11.288415 [ERR] mod_png.c:120 Channel has no video and audio_file is not set! To confirm, the participant is a video channel. “The information transmitted is intended only for the person or entity to which it is addressed and may contain proprietary, business-confidential and/or privileged material. If you are not the intended recipient of this message you are hereby notified that any use, review, retransmission, dissemination, distribution, reproduction or any action taken in reliance upon this message is prohibited. If you received this in error, please contact the sender and delete the material from any computer.” From 596076 at gmail.com Mon May 13 15:52:14 2019 From: 596076 at gmail.com (Daniel Dimitrov) Date: Mon, 13 May 2019 18:52:14 +0300 Subject: [Freeswitch-users] forward calls Message-ID: Hello everyone, I am new to freeswitch and fusionpbx . I need help to forward calls coming from mobile A to local phone (818) and send them to mobile B.Here is what i have tried but it doesn't work. Also calls are coming from my provider in public context then send to my ext in private context . phone:03312 818 private cx | Mobile ---- > FS ----------> Mobile A public B appreciate any advice -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 13 20:32:17 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 13 May 2019 15:32:17 -0500 Subject: [Freeswitch-users] conference member play image file In-Reply-To: <001FDD9A-10D5-4248-AABD-D8E0DFB5B0FF@stratusvideo.com> References: <001FDD9A-10D5-4248-AABD-D8E0DFB5B0FF@stratusvideo.com> Message-ID: William, Please file a JIRA and we can verify that, Also if you can, please remove the notice at the bottom of your emails when emailing the public mailing list. Thanks, Brian On Mon, May 13, 2019 at 2:15 PM William Simon wrote: > Using Freeswitch 1.8.5 release version we are trying to play a PNG image > file to individual video conference members. > > Per confluence the API is: > > conference play > [{vol=,full-screen=true,png_ms=100}] [async| > [nomux]] > > Doing this API and omitting the details after the file-path, the PNG image > is displayed to all conference members. > > If we include the member_id afterward in order to send the image to just > one member, suddenly Freeswitch complains: > > 2019-05-10 10:23:11.288415 [ERR] mod_png.c:120 Channel has no video and > audio_file is not set! > > To confirm, the participant is a video channel. > > > > > “The information transmitted is intended only for the person or entity to > which it is addressed and may contain proprietary, business-confidential > and/or privileged material. If you are not the intended recipient of this > message you are hereby notified that any use, review, retransmission, > dissemination, distribution, reproduction or any action taken in reliance > upon this message is prohibited. If you received this in error, please > contact the sender and delete the material from any computer.” > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Mon May 13 22:11:32 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Mon, 13 May 2019 22:11:32 +0000 Subject: [Freeswitch-users] Failed Connection In-Reply-To: References: Message-ID: Brian, Once again, thanks for the help. Also, thanks for the bit of humor. global_setvar is new to me. Is this executed in fs_cli one time? Once every restart? Somewhere in the (xml) dialplan? Thanks. Sean From: FreeSWITCH-users On Behalf Of Brian West Sent: Monday, May 13, 2019 1:43 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Failed Connection global_setvar execute_on_answer=playback:silence_stream://500 Then try again, smells like a mexican stand off where both ends are waiting for the other to send a packet. /b On Mon, May 13, 2019 at 12:20 PM Sean Devoy > wrote: Hi, My user said “It just never connected” referring to an outbound call. It looks like everything is going great until the RTP is starting and then splat. This all happens in 2 seconds or less. I have tried different gateways and 2 different NAT’ed phone locations. The server is not NAT’ed. These have only started since I updated to FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit). But other things have changed too! I created a paste bin of my log: https://pastebin.com/9nw39DaR The lines in the log that confuse me are bordered by rows of ******. From my clueless reviews, it looks like it may be related top CODEC (re)negotiation. Thanks for any insights you can share. Sean _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [https://www.facebook.com/signalwireinc?src=email][https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 13 22:34:57 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 13 May 2019 17:34:57 -0500 Subject: [Freeswitch-users] Failed Connection In-Reply-To: References: Message-ID: Just do it once, to set it globally, to test with, that was just me giving you the fastest path to test that, then if that fixes it we can revisit. :) On Mon, May 13, 2019 at 5:12 PM Sean Devoy wrote: > Brian, > > > > Once again, thanks for the help. Also, thanks for the bit of humor. > > > > global_setvar is new to me. Is this executed in fs_cli one time? Once > every restart? Somewhere in the (xml) dialplan? > > > > Thanks. > > Sean > > *From:* FreeSWITCH-users *On > Behalf Of *Brian West > *Sent:* Monday, May 13, 2019 1:43 PM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] Failed Connection > > > > global_setvar execute_on_answer=playback:silence_stream://500 > > > > Then try again, smells like a mexican stand off where both ends are > waiting for the other to send a packet. > > > > /b > > > > > > On Mon, May 13, 2019 at 12:20 PM Sean Devoy wrote: > > Hi, > > My user said “It just never connected” referring to an outbound call. It > looks like everything is going great until the RTP is starting and then > splat. This all happens in 2 seconds or less. I have tried different > gateways and 2 different NAT’ed phone locations. The server is not NAT’ed. > These have only started since I updated to FreeSWITCH Version > 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit). But other things have > changed too! > > I created a paste bin of my log: > > https://pastebin.com/9nw39DaR > > The lines in the log that confuse me are bordered by rows of ******. > > From my clueless reviews, it looks like it may be related top CODEC > (re)negotiation. > > > > Thanks for any insights you can share. > > Sean > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > > > -- > > > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhossomi at daitan.com Mon May 13 20:00:44 2019 From: mhossomi at daitan.com (Marcelo Yukio Bressan Hossomi) Date: Mon, 13 May 2019 20:00:44 +0000 Subject: [Freeswitch-users] set_audio_level being ignored Message-ID: Hi everyone, I'm trying a dialplan like this (inline, added linebreaks for readability): set_audio_level:write -4, playback:shouts://server.com, set_audio_level:write 4, playback:shouts://server.com But the second audio always plays at level 0. I noticed that: - It works most of the time if I add a sleep:50 before the second `set_audio_level`, but this seems hacky; - I see the log "Removing BUG from ..." right after the second audio starts; it doesn't happen when I have sleep:50 as above. Audios are about 3s long. Using code up to commit 78c189bfcc2. Other non-working scenarios (same behavior): set_audio_level:write -4, playback:shouts://server.com, playback:shouts://server.com set_audio_level:write -4, playback:shouts://server.com, set_audio_level:write 4, set_audio_level:write -4, playback:shouts://server.com Any hint is appreciated! -------------- next part -------------- An HTML attachment was scrubbed... URL: From leo.lai.wolf at gmail.com Tue May 14 02:12:00 2019 From: leo.lai.wolf at gmail.com (Leo Wolf) Date: Tue, 14 May 2019 10:12:00 +0800 Subject: [Freeswitch-users] How to let freeswitch make a transfer call without dialplan xml? Message-ID: Hi, I want to make a transfer call on freeswitch. I use event socket to receive calls, do the calling invite logic in the program. Now I want to do the same things for transfering call. But the commands I found for transfer are all depending on dialplan xml. E.x., uuid_transfer, transfer, ..., etc. But what I want is do the transfer call without any xml, even the default. Is there any way to achieve that goal on freeswitch? Sincerely, Leo -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Tue May 14 15:44:29 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Tue, 14 May 2019 16:44:29 +0100 Subject: [Freeswitch-users] SRV and TTL Message-ID: Hello all, I’m testing SRV where TTL is very low, like ~5 seconds. But I don’t see FS refreshing the SRV records. Is there a minimum TTL FS will honor? Thanks all David -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Tue May 14 16:24:02 2019 From: brian at freeswitch.com (Brian West) Date: Tue, 14 May 2019 11:24:02 -0500 Subject: [Freeswitch-users] SRV and TTL In-Reply-To: References: Message-ID: You may wish to review the RFC again, I think five seconds is too low. On Tue, May 14, 2019 at 10:45 AM David Villasmil < david.villasmil.work at gmail.com> wrote: > Hello all, > > I’m testing SRV where TTL is very low, like ~5 seconds. But I don’t see FS > refreshing the SRV records. Is there a minimum TTL FS will honor? > > Thanks all > > David > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From rbetancor at gmail.com Tue May 14 16:54:25 2019 From: rbetancor at gmail.com (=?UTF-8?Q?Ra=C3=BAl_Alexis_Betancor_Santana?=) Date: Tue, 14 May 2019 17:54:25 +0100 Subject: [Freeswitch-users] SRV and TTL In-Reply-To: References: Message-ID: Any DNS TTL under 60s should be considered "Not to be cached" and do real-time-query each time used, but I think that FS simply ignore TTLs, things are queried once and no more. On Tue, May 14, 2019 at 5:09 PM David Villasmil < david.villasmil.work at gmail.com> wrote: > Hello all, > > I’m testing SRV where TTL is very low, like ~5 seconds. But I don’t see FS > refreshing the SRV records. Is there a minimum TTL FS will honor? > > Thanks all > > David > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Tue May 14 19:17:15 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Tue, 14 May 2019 20:17:15 +0100 Subject: [Freeswitch-users] SRV and TTL In-Reply-To: References: Message-ID: so: quote RFC1034: The meaning of the TTL field is a time limit on how long an RR can be kept in a cache. This limit does not apply to authoritative data in zones; it is also timed out, but by the refreshing policies for the zone. The TTL is assigned by the administrator for the zone where the data originates. While short TTLs can be used to minimize caching, and a zero TTL prohibits caching, If i set the TTL to 0, shouldn't FS query everytime? I also don't see a MINIMUM TTL allowe, and the above does implies there _is_ no minimum. So, will FS not cache if it is 0? or should i just not use SRV and go with A records with healthchecks that set the weight to 0 if it fails? (AWS) Thanks all for your help! Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 On Tue, May 14, 2019 at 6:12 PM Raúl Alexis Betancor Santana < rbetancor at gmail.com> wrote: > Any DNS TTL under 60s should be considered "Not to be cached" and do > real-time-query each time used, but I think that FS simply ignore TTLs, > things are queried once and no more. > > On Tue, May 14, 2019 at 5:09 PM David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> Hello all, >> >> I’m testing SRV where TTL is very low, like ~5 seconds. But I don’t see >> FS refreshing the SRV records. Is there a minimum TTL FS will honor? >> >> Thanks all >> >> David >> -- >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Tue May 14 20:24:40 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Tue, 14 May 2019 20:24:40 +0000 Subject: [Freeswitch-users] UNALLOCATED EXTENSION Message-ID: Hi, I have an internal extension (AASTRA/MITEL6867i phone) that is registered on the server and shows in "show registrations". However, when I attempt I get [CS_CONSUME_MEDIA] [UNALLOCATED_NUMBER] 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_ivr_originate.c:67 (sofia/internal/110) State Change CS_ROUTING -> CS_CONSUME_MEDIA 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:643 (sofia/internal/110) State ROUTING going to sleep 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:584 (sofia/internal/110) Running State Change CS_CONSUME_MEDIA (Cur 4 Tot 3889) 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:662 (sofia/internal/110) State CONSUME_MEDIA 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:662 (sofia/internal/110) State CONSUME_MEDIA going to sleep 3770a2a3 2019-05-14 17:38:38.242809 [DEBUG] sofia.c:7291 Channel sofia/internal/110 entering state [terminated][404] 3770a2a3 2019-05-14 17:38:38.242809 [NOTICE] sofia.c:8484 Hangup sofia/internal/110 [CS_CONSUME_MEDIA] [UNALLOCATED_NUMBER] 3770a2a3 2019-05-14 17:38:38.242809 [DEBUG] switch_core_state_machine.c:584 (sofia/internal/110) Running State Change CS_HANGUP (Cur 4 Tot 3889) 3770a2a3 2019-05-14 17:38:38.242809 [DEBUG] switch_core_state_machine.c:847 (sofia/internal/110) Callstate Change DOWN -> HANGUP Any ideas? Thanks, Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Tue May 14 21:59:02 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Tue, 14 May 2019 21:59:02 +0000 Subject: [Freeswitch-users] UNALLOCATED EXTENSION In-Reply-To: References: Message-ID: HI All, I compared every field in the setup of this phone and the working one next to it. The only difference was that the sip port on the working phone was left blank and the failing phone had 5060. I removed 5060 and it works fine again. I suspect that ip.add.dr.ess:port works and dom.ain.com:5060 does not, but that is speculation. I am not a fan of Mitel phones ☹. I am a fan of the new FANVIL phones I have tested if anyone cares. Sean From: FreeSWITCH-users On Behalf Of Sean Devoy Sent: Tuesday, May 14, 2019 4:25 PM To: FreeSWITCH Users Help Subject: [Freeswitch-users] UNALLOCATED EXTENSION Hi, I have an internal extension (AASTRA/MITEL6867i phone) that is registered on the server and shows in “show registrations”. However, when I attempt I get [CS_CONSUME_MEDIA] [UNALLOCATED_NUMBER] 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_ivr_originate.c:67 (sofia/internal/110) State Change CS_ROUTING -> CS_CONSUME_MEDIA 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:643 (sofia/internal/110) State ROUTING going to sleep 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:584 (sofia/internal/110) Running State Change CS_CONSUME_MEDIA (Cur 4 Tot 3889) 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:662 (sofia/internal/110) State CONSUME_MEDIA 3770a2a3 2019-05-14 17:38:38.202824 [DEBUG] switch_core_state_machine.c:662 (sofia/internal/110) State CONSUME_MEDIA going to sleep 3770a2a3 2019-05-14 17:38:38.242809 [DEBUG] sofia.c:7291 Channel sofia/internal/110 entering state [terminated][404] 3770a2a3 2019-05-14 17:38:38.242809 [NOTICE] sofia.c:8484 Hangup sofia/internal/110 [CS_CONSUME_MEDIA] [UNALLOCATED_NUMBER] 3770a2a3 2019-05-14 17:38:38.242809 [DEBUG] switch_core_state_machine.c:584 (sofia/internal/110) Running State Change CS_HANGUP (Cur 4 Tot 3889) 3770a2a3 2019-05-14 17:38:38.242809 [DEBUG] switch_core_state_machine.c:847 (sofia/internal/110) Callstate Change DOWN -> HANGUP Any ideas? Thanks, Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandro.bordacchini at nems.it Tue May 14 08:51:40 2019 From: sandro.bordacchini at nems.it (Sandro Bordacchini) Date: Tue, 14 May 2019 10:51:40 +0200 Subject: [Freeswitch-users] codec error on 1.6 Message-ID: Hi everyone. I am facing a weird issue on a production setup, FS version 1.6.16~33~e6d643b-1~jessie+1 installed with deb from offcial repo, o.s. debian 8. Scenario is pretty straightforward: call incoming from voip provider and routed to a sip phone, i have no nat between FS and provider, i have nat between FS and sip phone. Provider sends INVITE with sdp (g711a + g729 + te) to FS FS sends INVITE with sdp (g711a + g729 + te) to sip phone sip phone sends 180 RINGING back to FS FS sends 183 SESS PROG with sdp (g711a + te) back to provider PRACK and 200OK between provider and FS sip phone sends 200 OK with sdp (g729 + te) to FS FS sends ACK to sip phone FS sends 200 without sdp to provider FS sends UPDATE with sdp (g729 + te + g711a) provider sends ACK to FS sip phone sends 200OK (to the UPDATE) with sdp (G729 + te) to FS At this point I have a bidirectional g711a rtp stream on the external profile. Instead on the internal profile i receive g729 from the phone but FS does not send any G729 stream to the phone. I have run some tests: if i don't have G711a codec as 1st choice in the incoming INVITE, the audio is ok; both the provider and the phone support both G711a and G729, but sip phone always answer ONLY with its preferred codec (in this test, G729). Generally speaking, if sip phone's preferred codec is different from the first codec in the incoming INVITE from the provider, i have the issue. Since the codec mix and order from the provider is not known, i cannot configure the sip phone accordingly. On both external and internal profiles i have: *inbound-codec-negotiation = generous* *inbound-late-negotiation = true* **-codec-prefs= G729, PCMA* FS logfile presents an error (loglevel: INFO, privacy data screened with *): 922bb07e-8dce-4416-9073-52db21a8a432 2019-05-09 17:27:59.997037 [NOTICE] switch_channel.c:1104 New Channel sofia/external/********@******.net [922bb07e-8dce-4416-9073-52db21a8a432] 922bb07e-8dce-4416-9073-52db21a8a432 2019-05-09 17:27:59.997037 [INFO] mod_dialplan_xml.c:637 Processing ******* <*******>->************ in context public 922bb07e-8dce-4416-9073-52db21a8a432 2019-05-09 17:28:00.037033 [NOTICE] switch_ivr.c:2172 Transfer sofia/external/ ********@******.net to XML[6000@ ************] 922bb07e-8dce-4416-9073-52db21a8a432 2019-05-09 17:28:00.037033 [INFO] mod_dialplan_xml.c:637 Processing ******** < ******** >->6000 in context ************ [...] fb16ac80-17f5-451b-a8ee-d22a135afc51 2019-05-09 17:28:00.197034 [NOTICE] switch_channel.c:1104 New Channel sofia/internal-bs/6000 at 192.168.50.119:5064 [fb16ac80-17f5-451b-a8ee-d22a135afc51] [...] 2019-05-09 17:28:00.277039 [INFO] sofia.c:1279 sofia/internal-bs/ 6000 at 192.168.50.119:5064 Update Callee ID to "6000 6000" <6000> fb16ac80-17f5-451b-a8ee-d22a135afc51 2019-05-09 17:28:00.277039 [NOTICE] sofia.c:7156 Ring-Ready sofia/internal-bs/6000 at 192.168.50.119:5064! 922bb07e-8dce-4416-9073-52db21a8a432 2019-05-09 17:28:00.277039 [INFO] switch_ivr_originate.c:1215 Sending early media 922bb07e-8dce-4416-9073-52db21a8a432 2019-05-09 17:28:00.277039 [NOTICE] sofia_media.c:92 Pre-Answer sofia/external/********@******.net! [...] fb16ac80-17f5-451b-a8ee-d22a135afc51 2019-05-09 17:28:03.497034 [NOTICE] sofia.c:8167 Channel [sofia/internal-bs/6000 at 192.168.50.119:5064] has been answered 922bb07e-8dce-4416-9073-52db21a8a432 2019-05-09 17:28:03.497034 [NOTICE] switch_ivr_originate.c:3632 Channel [sofia/external/********@******.net] has been answered fb16ac80-17f5-451b-a8ee-d22a135afc51 2019-05-09 17:28:03.577036 [ERR] sofia.c:8020 Codec Error! v=0 fb16ac80-17f5-451b-a8ee-d22a135afc51 o=- 1027803 1027804 IN IP4 192.168.50.119 fb16ac80-17f5-451b-a8ee-d22a135afc51 s=- fb16ac80-17f5-451b-a8ee-d22a135afc51 c=IN IP4 192.168.50.119 fb16ac80-17f5-451b-a8ee-d22a135afc51 t=0 0 fb16ac80-17f5-451b-a8ee-d22a135afc51 m=audio 25546 RTP/AVP 18 101 fb16ac80-17f5-451b-a8ee-d22a135afc51 a=rtpmap:18 G729/8000 fb16ac80-17f5-451b-a8ee-d22a135afc51 a=fmtp:18 annexb=no fb16ac80-17f5-451b-a8ee-d22a135afc51 a=rtpmap:101 telephone-event/8000 fb16ac80-17f5-451b-a8ee-d22a135afc51 a=fmtp:101 0-15 fb16ac80-17f5-451b-a8ee-d22a135afc51 a=ptime:20 fb16ac80-17f5-451b-a8ee-d22a135afc51 Matching packets time and logfile time, the "sofia.c:8020 Codec Error!" matches the sip phone 200OK answer to the UPDATE message. I tried to navigate the sofia.c code but i can't actually figure out what's happening. Please note that on a FS 1.4.9 setup (with a, i would say, "identical" configuration) this works, i.e. a bidirectional g729 stream is estabilished on the FS<->phone leg, also with identical signalling. I am wondering if there is any config parameter that should be edited/added/removed on the 1.6.x compared to the 1.4.x configuration. Btw, G729 commercial codec is active and running on both systems. Any hint is appreciated and, if needed i can post more data/log/tests. Thanks in advance. SB -------------- next part -------------- An HTML attachment was scrubbed... URL: From chenxiemin at gmail.com Wed May 15 10:22:14 2019 From: chenxiemin at gmail.com (Xiemin Chen) Date: Wed, 15 May 2019 18:22:14 +0800 Subject: [Freeswitch-users] Verto conference: video garbage In-Reply-To: References: Message-ID: I have switched to a new powerful PC and still has the problem, any update? > -------------- next part -------------- An HTML attachment was scrubbed... URL: From saouli at digigram.com Wed May 15 03:04:24 2019 From: saouli at digigram.com (Mohamed Saouli) Date: Wed, 15 May 2019 05:04:24 +0200 Subject: [Freeswitch-users] Questions about FS Message-ID: Dear Madam, Mr, I am actually trying to implement your solution FreeSwitch for my company. And i have some requirements and questions, which are: - Can I configure rules to manipulate the sigalling on input and on output of FS? - To cope with NAT traversal issues, must I configure FS with a systematic relay of the media streams or is it possible to configure FS so that it relays the media streams only when it's necessary? Best regards, -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Wed May 15 14:41:18 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Wed, 15 May 2019 14:41:18 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 Message-ID: Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can't handle "transfer", they insist on only using "hold" and pick up. The phones are cisco, nat'ed and the server is not nat'ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Wed May 15 14:56:20 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Wed, 15 May 2019 14:56:20 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: UPDATE: I just noticed that in "show registrations" the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can't handle "transfer", they insist on only using "hold" and pick up. The phones are cisco, nat'ed and the server is not nat'ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: -------------- next part -------------- An HTML attachment was scrubbed... URL: From abaci64 at gmail.com Wed May 15 15:34:09 2019 From: abaci64 at gmail.com (Abaci B) Date: Wed, 15 May 2019 11:34:09 -0400 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy wrote: > UPDATE: > > > > I just noticed that in “show registrations” the phone logged in to each > extension is switching back and forth. Perhaps there is something new > about allowing multiple phones login to the same extension? > > > > Sean > > > > *From:* FreeSWITCH-users *On > Behalf Of *Sean Devoy > *Sent:* Wednesday, May 15, 2019 10:41 AM > *To:* FreeSWITCH Users Help > *Subject:* [Freeswitch-users] Shared Lines not working on 1.8 > > > > Hi, > > > > I just switched a customer from our version 1.4 server to our 1.8 server. > They have 2 phones programmed with the same 3 shared extensions. The only > change made was the FQDN they login to. In show registrations, I only see > one login for each extension. The status on the phones all say > registered. When called, only one of the 2 phones rings. > > > > This customer is a restaurant whose employees can’t handle “transfer”, > they insist on only using “hold” and pick up. > > The phones are cisco, nat’ed and the server is not nat’ed. The phones are > configured for Shared lines as well. > > > > This is sort of urgent. Please help if you can. > > > > Many thanks, > > Sean > > > > Sample User Dir entry: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Wed May 15 15:42:40 2019 From: brian at freeswitch.com (Brian West) Date: Wed, 15 May 2019 10:42:40 -0500 Subject: [Freeswitch-users] Verto conference: video garbage In-Reply-To: References: Message-ID: That doesn't jive with what I see daily, did you have non-free repo enabled ? On Wed, May 15, 2019 at 5:23 AM Xiemin Chen wrote: > I have switched to a new powerful PC and still has the problem, any update? > >> _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From chenxiemin at gmail.com Wed May 15 15:45:26 2019 From: chenxiemin at gmail.com (Xiemin Chen) Date: Wed, 15 May 2019 23:45:26 +0800 Subject: [Freeswitch-users] Verto conference: video garbage In-Reply-To: References: Message-ID: No, just mod_av enabled with h.264 video codec. Brian West 于2019年5月15日周三 下午11:43写道: > That doesn't jive with what I see daily, did you have non-free repo > enabled ? > > On Wed, May 15, 2019 at 5:23 AM Xiemin Chen wrote: > >> I have switched to a new powerful PC and still has the problem, any >> update? >> >>> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Wed May 15 15:48:51 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Wed, 15 May 2019 15:48:51 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: Thank you Abaci. I have added: From: FreeSWITCH-users On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users > On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Wed May 15 15:56:40 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Wed, 15 May 2019 15:56:40 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: Answered the wrong question, sorry. I have now also set: From: FreeSWITCH-users On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:49 AM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Abaci. I have added: From: FreeSWITCH-users > On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users > On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Wed May 15 16:22:03 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Wed, 15 May 2019 16:22:03 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? Any other params? From: FreeSWITCH-users On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:57 AM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Answered the wrong question, sorry. I have now also set: From: FreeSWITCH-users > On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:49 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Abaci. I have added: From: FreeSWITCH-users > On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users > On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From steveayre at gmail.com Wed May 15 17:13:37 2019 From: steveayre at gmail.com (Steven Ayre) Date: Wed, 15 May 2019 18:13:37 +0100 Subject: [Freeswitch-users] SRV and TTL In-Reply-To: References: Message-ID: Are you querying the DNS server directly? Some DNS servers will override a low TTL with something longer. Local resolvers might as well. At one time BIND also interpreted TTL=0 as the the minimum TTL for the zone (see RFC1536). In short you might get unpredictable results with a very short TTL. 30s might be enough? On Tue, 14 May 2019 at 20:49, David Villasmil < david.villasmil.work at gmail.com> wrote: > so: > quote RFC1034: > > The meaning of the TTL field is a time limit on how long an RR can be > kept in a cache. This limit does not apply to authoritative data in > zones; it is also timed out, but by the refreshing policies for the > zone. The TTL is assigned by the administrator for the zone where the > data originates. While short TTLs can be used to minimize caching, and > a zero TTL prohibits caching, > > If i set the TTL to 0, shouldn't FS query everytime? > I also don't see a MINIMUM TTL allowe, and the above does implies there > _is_ no minimum. > > So, will FS not cache if it is 0? or should i just not use SRV and go with > A records with healthchecks that set the weight to 0 if it fails? (AWS) > > Thanks all for your help! > > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > > > On Tue, May 14, 2019 at 6:12 PM Raúl Alexis Betancor Santana < > rbetancor at gmail.com> wrote: > >> Any DNS TTL under 60s should be considered "Not to be cached" and do >> real-time-query each time used, but I think that FS simply ignore TTLs, >> things are queried once and no more. >> >> On Tue, May 14, 2019 at 5:09 PM David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> Hello all, >>> >>> I’m testing SRV where TTL is very low, like ~5 seconds. But I don’t see >>> FS refreshing the SRV records. Is there a minimum TTL FS will honor? >>> >>> Thanks all >>> >>> David >>> -- >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From steveayre at gmail.com Wed May 15 17:17:02 2019 From: steveayre at gmail.com (Steven Ayre) Date: Wed, 15 May 2019 18:17:02 +0100 Subject: [Freeswitch-users] Occasional Dropped call at 30 seconds In-Reply-To: <6842E3EB-FCE8-455E-BC94-F6AA0C07F31D@neilson.net.nz> References: <6842E3EB-FCE8-455E-BC94-F6AA0C07F31D@neilson.net.nz> Message-ID: You could also look at the https://freeswitch.org/confluence/display/FREESWITCH/NDLB options such as forcing rport. But it's far better to solve it properly at the client end than implement workarounds at the server end. On Mon, 13 May 2019 at 12:09, Alexander Neilson wrote: > This link is for a different phone system. > > But it looks like you may need to get two setting options to avoid the > random translations of port. > > https://www.3cx.com/docs/sonicwall-firewall-configuration/ > > Regards > Alexander > > Alexander Neilson > Neilson Productions Limited > 021 329 681 > alexander at neilson.net.nz > > On 11/05/2019, at 03:47, David Villasmil > wrote: > > +1 > > On Fri, 10 May 2019 at 16:08, Vallimamod Abdullah > wrote: > >> Hi, >> >> a 30s delay (more exactly, 32s) is for sure a nat issue: you are not >> receiving the final ACK. >> >> Check if there is a SIP ALG enabled on your SonicWall and try to disable >> it. >> >> Best Regards, >> -- >> Vallimamod Abdullah >> SIP Solutions >> vma at sip.solutions >> linkedin.com/in/vallimamod >> . >> >> >> On 10 May 2019, at 16:10, Sean Devoy wrote: >> >> Hi all, >> >> I have a problem with one client where the call is fine and they can talk >> for almost exactly 30 seconds, then the log says originating phone (of FS) >> hung up. This only happens like 1% to 5% of the time. >> >> The phones are Mitel 6867i and 6865i which must use TCP not UDP. The >> firewall is a $#!#&* SonicWall. I am 99% convinced it is the firewall. It >> happened once on a Cisco phone using UDP so I increased the firewall UDP >> timeout. I already have keep-alive set to 30 seconds. It has not recurred >> on UDP phones since. >> >> Any ideas on something to do to Mitel config or SonicWall that might >> prevent a drop after 30 seconds? >> >> I have considered PCAP, but with so few occurrences I am worried about >> PCAP size before I get a “hit.” >> >> Thanks, >> Sean >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Wed May 15 18:15:41 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Wed, 15 May 2019 19:15:41 +0100 Subject: [Freeswitch-users] SRV and TTL In-Reply-To: References: Message-ID: Hello, Yes 30 is enough, as long as FS fails over to the next address, which in my tests seems to do properly. On Wed, 15 May 2019 at 18:50, Steven Ayre wrote: > Are you querying the DNS server directly? Some DNS servers will override a > low TTL with something longer. Local resolvers might as well. At one time > BIND also interpreted TTL=0 as the the minimum TTL for the zone (see > RFC1536). > > In short you might get unpredictable results with a very short TTL. 30s > might be enough? > > On Tue, 14 May 2019 at 20:49, David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> so: >> quote RFC1034: >> >> The meaning of the TTL field is a time limit on how long an RR can be >> kept in a cache. This limit does not apply to authoritative data in >> zones; it is also timed out, but by the refreshing policies for the >> zone. The TTL is assigned by the administrator for the zone where the >> data originates. While short TTLs can be used to minimize caching, and >> a zero TTL prohibits caching, >> >> If i set the TTL to 0, shouldn't FS query everytime? >> I also don't see a MINIMUM TTL allowe, and the above does implies there >> _is_ no minimum. >> >> So, will FS not cache if it is 0? or should i just not use SRV and go >> with A records with healthchecks that set the weight to 0 if it fails? (AWS) >> >> Thanks all for your help! >> >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> >> >> On Tue, May 14, 2019 at 6:12 PM Raúl Alexis Betancor Santana < >> rbetancor at gmail.com> wrote: >> >>> Any DNS TTL under 60s should be considered "Not to be cached" and do >>> real-time-query each time used, but I think that FS simply ignore TTLs, >>> things are queried once and no more. >>> >>> On Tue, May 14, 2019 at 5:09 PM David Villasmil < >>> david.villasmil.work at gmail.com> wrote: >>> >>>> Hello all, >>>> >>>> I’m testing SRV where TTL is very low, like ~5 seconds. But I don’t see >>>> FS refreshing the SRV records. Is there a minimum TTL FS will honor? >>>> >>>> Thanks all >>>> >>>> David >>>> -- >>>> Regards, >>>> >>>> David Villasmil >>>> email: david.villasmil.work at gmail.com >>>> phone: +34669448337 >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Wed May 15 22:34:05 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Wed, 15 May 2019 16:34:05 -0600 Subject: [Freeswitch-users] Conference duration limit In-Reply-To: References: Message-ID: Hi all, I want to schedule a timer for a conference call disconnect. I am trying to implement this in dialplan as below But this doesn't seem to help. Any help would be appreciated ! Thanks Ramesh On Wed, May 8, 2019 at 1:02 PM Ramesh Kandasamy wrote: > Thanks for the response, Abaci ! > > I am wondering if there is any config that shall be done @ freeswitch to > handle this. > In my case, I have the API interface in a different remote server than the > freeswitch instance. > If this can be handled only @ through API, then is there any event that I > can subscribe to get the notification on conference room creation. I tried > using CHANNEL_CREATE, but it seems to send the notification for every > participant. I would want to do this only for the conference room creation > so that I need not worry if more participants are joining at a later stage > of the conf call. > > Thanks > Ramesh > > On Tue, May 7, 2019 at 6:38 PM Abaci B wrote: > >> you can use the sched_api along with the conference api (conference >> hup all) >> >> On Tue, May 7, 2019 at 7:38 PM Ramesh Kandasamy >> wrote: >> >>> Hi all, >>> >>> Is there a config to limit the duration of a conference from the time it >>> is created? >>> I came across sched_hangup. But if i configure this on dialplan it seems >>> to be applicable per participant joining this conference (through this >>> dialplan) but not for this conference. >>> >>> Thanks >>> Ramesh >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From abaci64 at gmail.com Wed May 15 22:47:50 2019 From: abaci64 at gmail.com (Abaci B) Date: Wed, 15 May 2019 18:47:50 -0400 Subject: [Freeswitch-users] Conference duration limit In-Reply-To: References: Message-ID: try this fixed line On Wed, May 15, 2019 at 6:34 PM Ramesh Kandasamy wrote: > Hi all, > > I want to schedule a timer for a conference call disconnect. I am trying > to implement this in dialplan as below > > > > > But this doesn't seem to help. > > Any help would be appreciated ! > > Thanks > Ramesh > > On Wed, May 8, 2019 at 1:02 PM Ramesh Kandasamy > wrote: > >> Thanks for the response, Abaci ! >> >> I am wondering if there is any config that shall be done @ freeswitch to >> handle this. >> In my case, I have the API interface in a different remote server than >> the freeswitch instance. >> If this can be handled only @ through API, then is there any event that I >> can subscribe to get the notification on conference room creation. I tried >> using CHANNEL_CREATE, but it seems to send the notification for every >> participant. I would want to do this only for the conference room creation >> so that I need not worry if more participants are joining at a later stage >> of the conf call. >> >> Thanks >> Ramesh >> >> On Tue, May 7, 2019 at 6:38 PM Abaci B wrote: >> >>> you can use the sched_api along with the conference api (conference >>> hup all) >>> >>> On Tue, May 7, 2019 at 7:38 PM Ramesh Kandasamy >>> wrote: >>> >>>> Hi all, >>>> >>>> Is there a config to limit the duration of a conference from the time >>>> it is created? >>>> I came across sched_hangup. But if i configure this on dialplan it >>>> seems to be applicable per participant joining this conference (through >>>> this dialplan) but not for this conference. >>>> >>>> Thanks >>>> Ramesh >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Wed May 15 23:08:37 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Wed, 15 May 2019 17:08:37 -0600 Subject: [Freeswitch-users] Conference duration limit In-Reply-To: References: Message-ID: Thanks all. I have figured it out and it works now. Thanks Ramesh On Wed, May 15, 2019 at 4:34 PM Ramesh Kandasamy wrote: > Hi all, > > I want to schedule a timer for a conference call disconnect. I am trying > to implement this in dialplan as below > > > > > But this doesn't seem to help. > > Any help would be appreciated ! > > Thanks > Ramesh > > On Wed, May 8, 2019 at 1:02 PM Ramesh Kandasamy > wrote: > >> Thanks for the response, Abaci ! >> >> I am wondering if there is any config that shall be done @ freeswitch to >> handle this. >> In my case, I have the API interface in a different remote server than >> the freeswitch instance. >> If this can be handled only @ through API, then is there any event that I >> can subscribe to get the notification on conference room creation. I tried >> using CHANNEL_CREATE, but it seems to send the notification for every >> participant. I would want to do this only for the conference room creation >> so that I need not worry if more participants are joining at a later stage >> of the conf call. >> >> Thanks >> Ramesh >> >> On Tue, May 7, 2019 at 6:38 PM Abaci B wrote: >> >>> you can use the sched_api along with the conference api (conference >>> hup all) >>> >>> On Tue, May 7, 2019 at 7:38 PM Ramesh Kandasamy >>> wrote: >>> >>>> Hi all, >>>> >>>> Is there a config to limit the duration of a conference from the time >>>> it is created? >>>> I came across sched_hangup. But if i configure this on dialplan it >>>> seems to be applicable per participant joining this conference (through >>>> this dialplan) but not for this conference. >>>> >>>> Thanks >>>> Ramesh >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Thu May 16 08:58:00 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Thu, 16 May 2019 10:58:00 +0200 Subject: [Freeswitch-users] Questions about FS In-Reply-To: References: Message-ID: Hello Mohamed, On Wed, May 15, 2019 at 1:33 PM Mohamed Saouli wrote: > Can I configure rules to manipulate the sigalling on input and on output > of FS? > on a limited way, like adding and deleting some headers for a complete control and manipulation of signling, you put a proxy (eg OpenSIPS, Kamailio) in front of FS. > - To cope with NAT traversal issues, must I configure FS with a > systematic relay of the media streams or is it possible to configure FS so > that it relays the media streams only when it's necessary? > > FreeSWITCH has best NAT traversal management in industry, and yes, you can configure it to relay media only when needed. -giovanni -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Thu May 16 16:00:48 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Thu, 16 May 2019 10:00:48 -0600 Subject: [Freeswitch-users] Conference duration limit In-Reply-To: References: Message-ID: Thanks, Abaci ! I moved sched_api dialplan statement before answer and it worked. Thanks Ramesh On Wed, May 15, 2019 at 5:14 PM Abaci B wrote: > try this fixed line > > > On Wed, May 15, 2019 at 6:34 PM Ramesh Kandasamy > wrote: > >> Hi all, >> >> I want to schedule a timer for a conference call disconnect. I am trying >> to implement this in dialplan as below >> >> >> >> >> But this doesn't seem to help. >> >> Any help would be appreciated ! >> >> Thanks >> Ramesh >> >> On Wed, May 8, 2019 at 1:02 PM Ramesh Kandasamy >> wrote: >> >>> Thanks for the response, Abaci ! >>> >>> I am wondering if there is any config that shall be done @ freeswitch to >>> handle this. >>> In my case, I have the API interface in a different remote server than >>> the freeswitch instance. >>> If this can be handled only @ through API, then is there any event that >>> I can subscribe to get the notification on conference room creation. I >>> tried using CHANNEL_CREATE, but it seems to send the notification for every >>> participant. I would want to do this only for the conference room creation >>> so that I need not worry if more participants are joining at a later stage >>> of the conf call. >>> >>> Thanks >>> Ramesh >>> >>> On Tue, May 7, 2019 at 6:38 PM Abaci B wrote: >>> >>>> you can use the sched_api along with the conference api (conference >>>> hup all) >>>> >>>> On Tue, May 7, 2019 at 7:38 PM Ramesh Kandasamy >>>> wrote: >>>> >>>>> Hi all, >>>>> >>>>> Is there a config to limit the duration of a conference from the time >>>>> it is created? >>>>> I came across sched_hangup. But if i configure this on dialplan it >>>>> seems to be applicable per participant joining this conference (through >>>>> this dialplan) but not for this conference. >>>>> >>>>> Thanks >>>>> Ramesh >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Thu May 16 18:46:46 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Thu, 16 May 2019 12:46:46 -0600 Subject: [Freeswitch-users] conference member play image file In-Reply-To: References: <001FDD9A-10D5-4248-AABD-D8E0DFB5B0FF@stratusvideo.com> Message-ID: Hi William, I am also trying to play an image file to all conference members with the same command as you have mentioned above (ignoring after file path) along with sched_api. However, Freeswitch seems to expect the member_id as well. Am I missing something here? 2019-05-16 12:21:13.188676 [DEBUG] mod_commands.c:5178 Command conference(19876543210 play png_ms=2000 /usr/local/freeswitch/conf/mcu-bg-06.png): -ERR Member: 0 not found. play [async| [nomux]] Thanks Ramesh On Mon, May 13, 2019 at 2:38 PM Brian West wrote: > William, > > Please file a JIRA and we can verify that, Also if you can, please remove > the notice at the bottom of your emails when emailing the public mailing > list. > > Thanks, > Brian > > > On Mon, May 13, 2019 at 2:15 PM William Simon > wrote: > >> Using Freeswitch 1.8.5 release version we are trying to play a PNG image >> file to individual video conference members. >> >> Per confluence the API is: >> >> conference play >> [{vol=,full-screen=true,png_ms=100}] [async| >> [nomux]] >> >> Doing this API and omitting the details after the file-path, the PNG >> image is displayed to all conference members. >> >> If we include the member_id afterward in order to send the image to just >> one member, suddenly Freeswitch complains: >> >> 2019-05-10 10:23:11.288415 [ERR] mod_png.c:120 Channel has no video and >> audio_file is not set! >> >> To confirm, the participant is a video channel. >> >> >> >> >> “The information transmitted is intended only for the person or entity to >> which it is addressed and may contain proprietary, business-confidential >> and/or privileged material. If you are not the intended recipient of this >> message you are hereby notified that any use, review, retransmission, >> dissemination, distribution, reproduction or any action taken in reliance >> upon this message is prohibited. If you received this in error, please >> contact the sender and delete the material from any computer.” >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at freeswitch.org Thu May 16 19:07:11 2019 From: mike at freeswitch.org (Mike Jerris) Date: Thu, 16 May 2019 13:07:11 -0600 Subject: [Freeswitch-users] conference member play image file In-Reply-To: References: <001FDD9A-10D5-4248-AABD-D8E0DFB5B0FF@stratusvideo.com> Message-ID: <9A5171A3-2F5C-4472-B618-8D39E4609A32@freeswitch.org> Your syntax is for sure incorrect around the png_ms= portion > On May 16, 2019, at 12:46 PM, Ramesh Kandasamy wrote: > > Hi William, > > I am also trying to play an image file to all conference members with the same command as you have mentioned above (ignoring after file path) along with sched_api. However, Freeswitch seems to expect the member_id as well. Am I missing something here? > > > > 2019-05-16 12:21:13.188676 [DEBUG] mod_commands.c:5178 Command conference(19876543210 play png_ms=2000 /usr/local/freeswitch/conf/mcu-bg-06.png): > -ERR Member: 0 not found. > play [async| [nomux]] > > Thanks > Ramesh > > On Mon, May 13, 2019 at 2:38 PM Brian West > wrote: > William, > > Please file a JIRA and we can verify that, Also if you can, please remove the notice at the bottom of your emails when emailing the public mailing list. > > Thanks, > Brian > > > On Mon, May 13, 2019 at 2:15 PM William Simon > wrote: > Using Freeswitch 1.8.5 release version we are trying to play a PNG image file to individual video conference members. > > Per confluence the API is: > > conference play [{vol=,full-screen=true,png_ms=100}] [async| [nomux]] > > Doing this API and omitting the details after the file-path, the PNG image is displayed to all conference members. > > If we include the member_id afterward in order to send the image to just one member, suddenly Freeswitch complains: > > 2019-05-10 10:23:11.288415 [ERR] mod_png.c:120 Channel has no video and audio_file is not set! > > To confirm, the participant is a video channel. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Thu May 16 19:13:23 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Thu, 16 May 2019 13:13:23 -0600 Subject: [Freeswitch-users] conference member play image file In-Reply-To: References: <001FDD9A-10D5-4248-AABD-D8E0DFB5B0FF@stratusvideo.com> Message-ID: I got it working now. Thanks Ramesh On Thu, May 16, 2019 at 12:46 PM Ramesh Kandasamy wrote: > Hi William, > > I am also trying to play an image file to all conference members with the > same command as you have mentioned above (ignoring after file path) along > with sched_api. However, Freeswitch seems to expect the member_id as well. > Am I missing something here? > > > > 2019-05-16 12:21:13.188676 [DEBUG] mod_commands.c:5178 Command > conference(19876543210 play png_ms=2000 > /usr/local/freeswitch/conf/mcu-bg-06.png): > -ERR Member: 0 not found. > play [async| [nomux]] > > Thanks > Ramesh > > On Mon, May 13, 2019 at 2:38 PM Brian West wrote: > >> William, >> >> Please file a JIRA and we can verify that, Also if you can, please remove >> the notice at the bottom of your emails when emailing the public mailing >> list. >> >> Thanks, >> Brian >> >> >> On Mon, May 13, 2019 at 2:15 PM William Simon >> wrote: >> >>> Using Freeswitch 1.8.5 release version we are trying to play a PNG image >>> file to individual video conference members. >>> >>> Per confluence the API is: >>> >>> conference play >>> [{vol=,full-screen=true,png_ms=100}] [async| >>> [nomux]] >>> >>> Doing this API and omitting the details after the file-path, the PNG >>> image is displayed to all conference members. >>> >>> If we include the member_id afterward in order to send the image to just >>> one member, suddenly Freeswitch complains: >>> >>> 2019-05-10 10:23:11.288415 [ERR] mod_png.c:120 Channel has no video and >>> audio_file is not set! >>> >>> To confirm, the participant is a video channel. >>> >>> >>> >>> >>> “The information transmitted is intended only for the person or entity >>> to which it is addressed and may contain proprietary, business-confidential >>> and/or privileged material. If you are not the intended recipient of this >>> message you are hereby notified that any use, review, retransmission, >>> dissemination, distribution, reproduction or any action taken in reliance >>> upon this message is prohibited. If you received this in error, please >>> contact the sender and delete the material from any computer.” >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Thu May 16 20:06:43 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Thu, 16 May 2019 14:06:43 -0600 Subject: [Freeswitch-users] conference member play image file In-Reply-To: <9A5171A3-2F5C-4472-B618-8D39E4609A32@freeswitch.org> References: <001FDD9A-10D5-4248-AABD-D8E0DFB5B0FF@stratusvideo.com> <9A5171A3-2F5C-4472-B618-8D39E4609A32@freeswitch.org> Message-ID: Thanks Mike ! I corrected it now and it works. Thanks Ramesh On Thu, May 16, 2019 at 1:51 PM Mike Jerris wrote: > Your syntax is for sure incorrect around the png_ms= portion > > On May 16, 2019, at 12:46 PM, Ramesh Kandasamy wrote: > > Hi William, > > I am also trying to play an image file to all conference members with the > same command as you have mentioned above (ignoring after file path) along > with sched_api. However, Freeswitch seems to expect the member_id as well. > Am I missing something here? > > > > 2019-05-16 12:21:13.188676 [DEBUG] mod_commands.c:5178 Command > conference(19876543210 play png_ms=2000 > /usr/local/freeswitch/conf/mcu-bg-06.png): > -ERR Member: 0 not found. > play [async| [nomux]] > > Thanks > Ramesh > > On Mon, May 13, 2019 at 2:38 PM Brian West wrote: > >> William, >> >> Please file a JIRA and we can verify that, Also if you can, please remove >> the notice at the bottom of your emails when emailing the public mailing >> list. >> >> Thanks, >> Brian >> >> >> On Mon, May 13, 2019 at 2:15 PM William Simon >> wrote: >> >>> Using Freeswitch 1.8.5 release version we are trying to play a PNG image >>> file to individual video conference members. >>> >>> Per confluence the API is: >>> >>> conference play >>> [{vol=,full-screen=true,png_ms=100}] [async| >>> [nomux]] >>> >>> Doing this API and omitting the details after the file-path, the PNG >>> image is displayed to all conference members. >>> >>> If we include the member_id afterward in order to send the image to just >>> one member, suddenly Freeswitch complains: >>> >>> 2019-05-10 10:23:11.288415 [ERR] mod_png.c:120 Channel has no video and >>> audio_file is not set! >>> >>> To confirm, the participant is a video channel. >>> >>> > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tahir at ictinnovations.com Thu May 16 21:25:27 2019 From: tahir at ictinnovations.com (Tahir Almas) Date: Thu, 16 May 2019 14:25:27 -0700 Subject: [Freeswitch-users] G729 Clarification In-Reply-To: References: Message-ID: We do also recommend mod_com_g729 to our customers Regards *Tahir Almas* Managing Partner ICT Innovations http://www.ictinnovations.com Leveraging open source in ICT On Tue, May 7, 2019 at 8:57 AM David Villasmil < david.villasmil.work at gmail.com> wrote: > Totally agree. It’s been ages since I’ve used g729. It’s all OPUS. > G.729 is mostly for termination carriers, and even those support OPUS more > and more. > > On Tue, 7 May 2019 at 14:53, Brian West wrote: > >> Also with OPUS and the improvements in bandwidth globally, g729 has >> become less of an issue for many, You can usually get better results with >> OPUS at 8k and lower bit rates if you fiddle with it, plus it has FEC/PLC >> capabilities that g729 lacks. >> >> /b >> >> >> On Tue, May 7, 2019 at 8:32 AM David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> Yeah that’s probably it. >>> >>> On Tue, 7 May 2019 at 14:16, Brian West wrote: >>> >>>> Its probably ours, we don't support B, as there are still patents >>>> related to B. >>>> >>>> /b >>>> >>>> >>>> On Tue, May 7, 2019 at 7:45 AM David Villasmil < >>>> david.villasmil.work at gmail.com> wrote: >>>> >>>>> If I remember correctly, bcg729 doesn’t support g.729a or b? >>>>> >>>>> On Tue, 7 May 2019 at 08:55, sagar malam wrote: >>>>> >>>>>> I have tried both and i recommend mod_com_g729 over mod_bcg729 mainly >>>>>> for below two reasons : >>>>>> 1) mod_com_g729 performance is far better. >>>>>> 2) mod_bcg729 does not work well with fs_encode command >>>>>> >>>>>> >>>>>> >>>>>> On Tue, May 7, 2019 at 2:42 AM Brian West >>>>>> wrote: >>>>>> >>>>>>> Thank you everyone for your support. It does mean a lot to us. >>>>>>> >>>>>>> /b >>>>>>> >>>>>>> >>>>>>> On Mon, May 6, 2019 at 2:29 PM Jai Rangi >>>>>>> wrote: >>>>>>> >>>>>>>> I would 2nd on that. This works well, easy to install and setup. >>>>>>>> And that's how you support the development of this project. >>>>>>>> >>>>>>>> >>>>>>>> *Jai Rangi* >>>>>>>> Cebod Technologies LLC dba DIDforSale/Cebod Telecom >>>>>>>> O 949-471-0102 | C 949-419-7634 <1-949-419-7634> | F 949-269-0449 >>>>>>>> / 949-232-1410 | jprangi at didforsale.com www.cebod.com | >>>>>>>> www.didforsale.com |2372 Morse Ave., Ste. 124, Irvine, CA 92614 >>>>>>>> | >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> On Mon, May 6, 2019 at 11:31 AM David Villasmil < >>>>>>>> david.villasmil.work at gmail.com> wrote: >>>>>>>> >>>>>>>>> So, really, for 10 bucks per channel, just get the commercial one. >>>>>>>>> >>>>>>>>> Regards, >>>>>>>>> >>>>>>>>> David Villasmil >>>>>>>>> email: david.villasmil.work at gmail.com >>>>>>>>> phone: +34669448337 >>>>>>>>> >>>>>>>>> >>>>>>>>> On Mon, May 6, 2019 at 2:42 PM Brian West >>>>>>>>> wrote: >>>>>>>>> >>>>>>>>>> The one we sell supports the project, the other one that we don't >>>>>>>>>> sell doesn't support the project. >>>>>>>>>> >>>>>>>>>> /b >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> On Mon, May 6, 2019 at 4:49 AM Vishal Pai >>>>>>>>>> wrote: >>>>>>>>>> >>>>>>>>>>> Hello Everyone >>>>>>>>>>> >>>>>>>>>>> I am having some confusion regarding the codec G729. As i know >>>>>>>>>>> the G729 codec is available on freeswitch as a commerical module but there >>>>>>>>>>> some module like mod_bcg729. Just want to know what is difference between >>>>>>>>>>> them. >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> Thank You >>>>>>>>>>> Vishal Pai >>>>>>>>>>> >>>>>>>>>>> _________________________________________________________________________ >>>>>>>>>>> >>>>>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>>>>> https://signalwire.com >>>>>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and >>>>>>>>>>> PSTN services. >>>>>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>>>>> >>>>>>>>>>> Join our online community to chat in real time >>>>>>>>>>> https://signalwire.community >>>>>>>>>>> >>>>>>>>>>> Professional FreeSWITCH Services >>>>>>>>>>> sales at freeswitch.com >>>>>>>>>>> https://freeswitch.com >>>>>>>>>>> >>>>>>>>>>> Official FreeSWITCH Sites >>>>>>>>>>> https://freeswitch.com/oss >>>>>>>>>>> https://freeswitch.org/confluence >>>>>>>>>>> https://cluecon.com >>>>>>>>>>> >>>>>>>>>>> FreeSWITCH-users mailing list >>>>>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>>>>> UNSUBSCRIBE: >>>>>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>>>>> https://freeswitch.com >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> -- >>>>>>>>>> >>>>>>>>>> Brian West | Co-founder and Developer >>>>>>>>>> >>>>>>>>>> Need Commercial support? email sales at freeswitch.com >>>>>>>>>> >>>>>>>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI >>>>>>>>>> 53045 >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Email: brian at freeswitch.com >>>>>>>>>> >>>>>>>>>> Mobile: 918-424-9378 >>>>>>>>>> >>>>>>>>>> Website: https://www.FreeSWITCH.com >>>>>>>>>> >>>>>>>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>>>>>>> [image: >>>>>>>>>> https://twitter.com/freeswitch] >>>>>>>>>> >>>>>>>>>> _________________________________________________________________________ >>>>>>>>>> >>>>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>>>> https://signalwire.com >>>>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and >>>>>>>>>> PSTN services. >>>>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>>>> >>>>>>>>>> Join our online community to chat in real time >>>>>>>>>> https://signalwire.community >>>>>>>>>> >>>>>>>>>> Professional FreeSWITCH Services >>>>>>>>>> sales at freeswitch.com >>>>>>>>>> https://freeswitch.com >>>>>>>>>> >>>>>>>>>> Official FreeSWITCH Sites >>>>>>>>>> https://freeswitch.com/oss >>>>>>>>>> https://freeswitch.org/confluence >>>>>>>>>> https://cluecon.com >>>>>>>>>> >>>>>>>>>> FreeSWITCH-users mailing list >>>>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>>>> UNSUBSCRIBE: >>>>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>>>> https://freeswitch.com >>>>>>>>> >>>>>>>>> >>>>>>>>> _________________________________________________________________________ >>>>>>>>> >>>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>>> https://signalwire.com >>>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and >>>>>>>>> PSTN services. >>>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>>> >>>>>>>>> Join our online community to chat in real time >>>>>>>>> https://signalwire.community >>>>>>>>> >>>>>>>>> Professional FreeSWITCH Services >>>>>>>>> sales at freeswitch.com >>>>>>>>> https://freeswitch.com >>>>>>>>> >>>>>>>>> Official FreeSWITCH Sites >>>>>>>>> https://freeswitch.com/oss >>>>>>>>> https://freeswitch.org/confluence >>>>>>>>> https://cluecon.com >>>>>>>>> >>>>>>>>> FreeSWITCH-users mailing list >>>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>>> UNSUBSCRIBE: >>>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>>> https://freeswitch.com >>>>>>>> >>>>>>>> >>>>>>>> _________________________________________________________________________ >>>>>>>> >>>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>>> https://signalwire.com >>>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>>> services. >>>>>>>> Build your next product on our scalable cloud platform. >>>>>>>> >>>>>>>> Join our online community to chat in real time >>>>>>>> https://signalwire.community >>>>>>>> >>>>>>>> Professional FreeSWITCH Services >>>>>>>> sales at freeswitch.com >>>>>>>> https://freeswitch.com >>>>>>>> >>>>>>>> Official FreeSWITCH Sites >>>>>>>> https://freeswitch.com/oss >>>>>>>> https://freeswitch.org/confluence >>>>>>>> https://cluecon.com >>>>>>>> >>>>>>>> FreeSWITCH-users mailing list >>>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>>> UNSUBSCRIBE: >>>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>>> https://freeswitch.com >>>>>>> >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> >>>>>>> Brian West | Co-founder and Developer >>>>>>> >>>>>>> Need Commercial support? email sales at freeswitch.com >>>>>>> >>>>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>>>> >>>>>>> >>>>>>> Email: brian at freeswitch.com >>>>>>> >>>>>>> Mobile: 918-424-9378 >>>>>>> >>>>>>> Website: https://www.FreeSWITCH.com >>>>>>> >>>>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>>>> [image: >>>>>>> https://twitter.com/freeswitch] >>>>>>> >>>>>>> _________________________________________________________________________ >>>>>>> >>>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>>> https://signalwire.com >>>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>>> services. >>>>>>> Build your next product on our scalable cloud platform. >>>>>>> >>>>>>> Join our online community to chat in real time >>>>>>> https://signalwire.community >>>>>>> >>>>>>> Professional FreeSWITCH Services >>>>>>> sales at freeswitch.com >>>>>>> https://freeswitch.com >>>>>>> >>>>>>> Official FreeSWITCH Sites >>>>>>> https://freeswitch.com/oss >>>>>>> https://freeswitch.org/confluence >>>>>>> https://cluecon.com >>>>>>> >>>>>>> FreeSWITCH-users mailing list >>>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>>> UNSUBSCRIBE: >>>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>>> https://freeswitch.com >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Thanks, >>>>>> >>>>>> Sagar >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> -- >>>>> Regards, >>>>> >>>>> David Villasmil >>>>> email: david.villasmil.work at gmail.com >>>>> phone: +34669448337 >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> >>>> Brian West | Co-founder and Developer >>>> >>>> Need Commercial support? email sales at freeswitch.com >>>> >>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>> >>>> >>>> Email: brian at freeswitch.com >>>> >>>> Mobile: 918-424-9378 >>>> >>>> Website: https://www.FreeSWITCH.com >>>> >>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>> [image: >>>> https://twitter.com/freeswitch] >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> -- >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tahir at ictinnovations.com Thu May 16 21:31:36 2019 From: tahir at ictinnovations.com (Tahir Almas) Date: Thu, 16 May 2019 14:31:36 -0700 Subject: [Freeswitch-users] ICTFax version 4.0 , Open source Fax over Ip software In-Reply-To: References: <00dc01d4c14e$7902e630$6b08b290$@gmail.com> Message-ID: Please to announce that both ICTFax http://www.ictfax.org and ICTDialer http://www.ictdialer.org developed over ICTCore, freeswitch and Angular framework are fully functional and can be installed according to given instructions at websites Regards *Tahir Almas* Managing Partner ICT Innovations http://www.ictinnovations.com Leveraging open source in ICT On Tue, Mar 26, 2019 at 2:42 AM Tahir Almas wrote: > sorry I missed this post, > > Thanks for positive feedback , > > We have fixed few issues reported at github also we have updated > our website too , Our development team using github therefore we do > recommend to use github to report issues as well as download latest > versions > Yes, ICTFax forum is not active and you can post bug / issues at > github and sales / support related issues with live support > professional ( GMT 4 to GMT 16 ) or create a support ticket at > http://service.ictinnovations.com > > Regards > *Tahir Almas* > > Managing Partner > ICT Innovations > http://www.ictinnovations.com > Leveraging open source in ICT > > > On Mon, Feb 18, 2019 at 6:01 PM NYCPhoneService > wrote: > >> Tahir – thank you for great product! >> >> I installed it (although some rpms/deps were missing from ictfax package >> and had to do some tweaking) and was able to successfully send faxes. >> >> There are some issues exist in the new gui and I have a few questions: >> >> 1. Is there a user support forum or irc channel? The >> ictfax.com/forum is not active. >> >> 2. If we find some bugs, suggest improvements – should we post on >> the github? >> >> 3. Github version of ictfax is completely different from the rpm >> version on your site. Which one should we use? >> >> Thanks again for the great effort! >> >> Dennis >> >> >> >> *From:* FreeSWITCH-users [mailto: >> freeswitch-users-bounces at lists.freeswitch.org] *On Behalf Of *Tahir Almas >> *Sent:* Saturday, February 9, 2019 5:20 AM >> *To:* FreeSWITCH Users Help >> *Cc:* freeswitch-biz at lists.freeswitch.org >> *Subject:* [Freeswitch-users] ICTFax version 4.0 , Open source Fax over >> Ip software >> >> >> >> We are pleased to announce that ICTFax 4.0 has been released developed >> over freeswitch , ictcore and angular framework. New features include ATA >> / Extension support and REST API >> >> >> >> http://ictfax.org/ictfax-4.0-released-with-ata-api-support >> >> >> >> Regards >> >> *Tahir Almas* >> >> Managing Partner >> ICT Innovations >> http://www.ictinnovations.com >> Leveraging open source in ICT >> >> >> _________________________________________________________________________ >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Thu May 16 21:49:13 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Thu, 16 May 2019 15:49:13 -0600 Subject: [Freeswitch-users] Text display in a conference Message-ID: Hi all, I am looking for a way to send a text display from Freeswitch to all the participants of a video conference. Though, I found a way to do this with playing an image, is there any other way to send this display as text? Thanks Ramesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From moshe.rosenberg at gmail.com Thu May 16 22:17:20 2019 From: moshe.rosenberg at gmail.com (Moshe Rosenberg) Date: Thu, 16 May 2019 18:17:20 -0400 Subject: [Freeswitch-users] ICTFax version 4.0 , Open source Fax over Ip software In-Reply-To: References: <00dc01d4c14e$7902e630$6b08b290$@gmail.com> Message-ID: Hi I can't find any information on how to set up email2fax can you send me a link to information on this On Thu, May 16, 2019, 5:52 PM Tahir Almas wrote: > Please to announce that both ICTFax http://www.ictfax.org and > ICTDialer http://www.ictdialer.org developed over ICTCore, freeswitch > and Angular framework are fully functional and can be installed > according to given instructions at websites > > Regards > *Tahir Almas* > > Managing Partner > ICT Innovations > http://www.ictinnovations.com > Leveraging open source in ICT > > > On Tue, Mar 26, 2019 at 2:42 AM Tahir Almas > wrote: > >> sorry I missed this post, >> >> Thanks for positive feedback , >> >> We have fixed few issues reported at github also we have updated >> our website too , Our development team using github therefore we do >> recommend to use github to report issues as well as download latest >> versions >> Yes, ICTFax forum is not active and you can post bug / issues at >> github and sales / support related issues with live support >> professional ( GMT 4 to GMT 16 ) or create a support ticket at >> http://service.ictinnovations.com >> >> Regards >> *Tahir Almas* >> >> Managing Partner >> ICT Innovations >> http://www.ictinnovations.com >> Leveraging open source in ICT >> >> >> On Mon, Feb 18, 2019 at 6:01 PM NYCPhoneService < >> nycphoneservice at gmail.com> wrote: >> >>> Tahir – thank you for great product! >>> >>> I installed it (although some rpms/deps were missing from ictfax package >>> and had to do some tweaking) and was able to successfully send faxes. >>> >>> There are some issues exist in the new gui and I have a few questions: >>> >>> 1. Is there a user support forum or irc channel? The >>> ictfax.com/forum is not active. >>> >>> 2. If we find some bugs, suggest improvements – should we post on >>> the github? >>> >>> 3. Github version of ictfax is completely different from the rpm >>> version on your site. Which one should we use? >>> >>> Thanks again for the great effort! >>> >>> Dennis >>> >>> >>> >>> *From:* FreeSWITCH-users [mailto: >>> freeswitch-users-bounces at lists.freeswitch.org] *On Behalf Of *Tahir >>> Almas >>> *Sent:* Saturday, February 9, 2019 5:20 AM >>> *To:* FreeSWITCH Users Help >>> *Cc:* freeswitch-biz at lists.freeswitch.org >>> *Subject:* [Freeswitch-users] ICTFax version 4.0 , Open source Fax over >>> Ip software >>> >>> >>> >>> We are pleased to announce that ICTFax 4.0 has been released >>> developed over freeswitch , ictcore and angular framework. New features >>> include ATA / Extension support and REST API >>> >>> >>> >>> http://ictfax.org/ictfax-4.0-released-with-ata-api-support >>> >>> >>> >>> Regards >>> >>> *Tahir Almas* >>> >>> Managing Partner >>> ICT Innovations >>> http://www.ictinnovations.com >>> Leveraging open source in ICT >>> >>> >>> _________________________________________________________________________ >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Sun May 19 19:31:30 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Sun, 19 May 2019 19:31:30 +0000 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 Message-ID: Hi All, I have tried everything I have been advised to as well as anything I could find on the web. I cannot get multiple logins to work on the current release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but that does not seem to be relevant. I have cloned my server to a test environment. I am offering $100U.S. via PayPal for someone to use the test system and fix the problem. Of course, you will need to inform me what you did so I can apply it to the production system. I need this fixed ASAP so I don't get billed for 2 servers for another month. I will share a putty key (and password) with root access. If interested, please send me a private email. I will post here when the offer is taken. Thanks, Sean Devoy. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mario_fs at mgtech.com Sun May 19 19:32:22 2019 From: mario_fs at mgtech.com (mario_fs) Date: Sun, 19 May 2019 12:32:22 -0700 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox and MWI indicator and use separate extension numbers, no more problems. Mario G > On May 15, 2019, at 9:22 AM, Sean Devoy wrote: > > No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? > Any other params? > > From: FreeSWITCH-users On Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 11:57 AM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > Answered the wrong question, sorry. I have now also set: > > > From: FreeSWITCH-users >On Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 11:49 AM > To: FreeSWITCH Users Help > > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > Thank you Abaci. > > I have added: > > > > > From: FreeSWITCH-users >On Behalf Of Abaci B > Sent: Wednesday, May 15, 2019 11:34 AM > To: FreeSWITCH Users Help > > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > what do you have in your sip profile for "multiple-registrations" param? > > On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: > UPDATE: > > I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? > > Sean > > From: FreeSWITCH-users >On Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 10:41 AM > To: FreeSWITCH Users Help > > Subject: [Freeswitch-users] Shared Lines not working on 1.8 > > Hi, > > I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. > > This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. > The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. > > This is sort of urgent. Please help if you can. > > Many thanks, > Sean > > Sample User Dir entry: > > > > > > > > > > > > > > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Sun May 19 21:13:06 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Sun, 19 May 2019 21:13:06 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: HI Mario, Thanks for the response. VM is not an issue here. This has been working for this customer for well over 2 years on FS version 1.2.22. This customer insists his employees are too stupid to learn to transfer a call. His requirements: 1. Both Phones must ring 2. Either phone can answer 3. They must be able to put the call on hold and yell for someone to “Pick line 1” on the other phone. It seems so simple, but he is beginning to think we can’t hit our a$$ regarding phone service. This is a deli that does lots of deliveries, so it is critical to his business. Thanks, Sean From: FreeSWITCH-users On Behalf Of mario_fs Sent: Sunday, May 19, 2019 3:32 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox and MWI indicator and use separate extension numbers, no more problems. Mario G On May 15, 2019, at 9:22 AM, Sean Devoy > wrote: No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? Any other params? From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:57 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Answered the wrong question, sorry. I have now also set: From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:49 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Abaci. I have added: From: FreeSWITCH-users >On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at freeswitch.com Mon May 20 00:34:47 2019 From: alex at freeswitch.com (Alexey Sibyakin) Date: Mon, 20 May 2019 09:34:47 +0900 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: Hi, in the sip profile and in the dialplan should work. If not, please provide the log. Also, we have professional consulting. Please contact sales at signalwire.com for offerings. Regards, Alex Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, Palo Alto, CA 94303 Email: alex at freeswitch.com Website: https://www.signalwire.com On Mon, May 20, 2019 at 4:53 AM Sean Devoy wrote: > Hi All, > > > > I have tried everything I have been advised to as well as anything I could > find on the web. I cannot get multiple logins to work on the current > release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but > that does not seem to be relevant. > > > > I have cloned my server to a test environment. I am offering $100U.S. via > PayPal for someone to use the test system and fix the problem. Of course, > you will need to inform me what you did so I can apply it to the production > system. I need this fixed ASAP so I don’t get billed for 2 servers for > another month. > > > > I will share a putty key (and password) with root access. If interested, > please send me a private email. > > > > I will post here when the offer is taken. > > > > Thanks, > > Sean Devoy. > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Mon May 20 01:02:52 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Mon, 20 May 2019 02:02:52 +0100 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: What? You’re trying to have multiple contacts and it doesn’t work? As in, multiple clients register with the same user/password but the latest overwrites the last one? On Mon, 20 May 2019 at 01:50, Alexey Sibyakin wrote: > Hi, > > > > in the sip profile and > > > > in the dialplan should work. > > If not, please provide the log. > > Also, we have professional consulting. Please contact sales at signalwire.com > for offerings. > > Regards, > > Alex > > Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, > Palo Alto, CA 94303 > > Email: alex at freeswitch.com Website: https://www.signalwire.com > > > > On Mon, May 20, 2019 at 4:53 AM Sean Devoy wrote: > >> Hi All, >> >> >> >> I have tried everything I have been advised to as well as anything I >> could find on the web. I cannot get multiple logins to work on the current >> release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but >> that does not seem to be relevant. >> >> >> >> I have cloned my server to a test environment. I am offering $100U.S. >> via PayPal for someone to use the test system and fix the problem. Of >> course, you will need to inform me what you did so I can apply it to the >> production system. I need this fixed ASAP so I don’t get billed for 2 >> servers for another month. >> >> >> >> I will share a putty key (and password) with root access. If interested, >> please send me a private email. >> >> >> >> I will post here when the offer is taken. >> >> >> >> Thanks, >> >> Sean Devoy. >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From covici at ccs.covici.com Mon May 20 05:59:09 2019 From: covici at ccs.covici.com (John Covici) Date: Mon, 20 May 2019 01:59:09 -0400 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: Why not just have two separate extensions and bridge with a , and then have them park the call and someone else can pick it up from park. On Sun, 19 May 2019 17:13:06 -0400, Sean Devoy wrote: > > [1 ] > [1.1 ] > [1.2 ] > HI Mario, > > > > Thanks for the response. VM is not an issue here. > > This has been working for this customer for well over 2 years on FS version 1.2.22. This customer insists his employees are too stupid to learn to transfer a call. > > > > His requirements: > > 1 Both Phones must ring > > 2 Either phone can answer > > 3 They must be able to put the call on hold and yell for someone to “Pick line 1” on the other phone. > > > > It seems so simple, but he is beginning to think we can’t hit our a$$ regarding phone service. This is a deli that does lots of deliveries, so it is critical to his business. > > > > Thanks, > > Sean > > > > > > From: FreeSWITCH-users On Behalf Of mario_fs > Sent: Sunday, May 19, 2019 3:32 PM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox > and MWI indicator and use separate extension numbers, no more problems. > > Mario G > > On May 15, 2019, at 9:22 AM, Sean Devoy wrote: > > > > No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? > > Any other params? > > > > From: FreeSWITCH-users On Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 11:57 AM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Answered the wrong question, sorry. I have now also set: > > > > > > From: FreeSWITCH-users On Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 11:49 AM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Thank you Abaci. > > > > I have added: > > > > > > > > > > From: FreeSWITCH-users On Behalf Of Abaci B > Sent: Wednesday, May 15, 2019 11:34 AM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > what do you have in your sip profile for "multiple-registrations" param? > > > > On Wed, May 15, 2019 at 11:25 AM Sean Devoy wrote: > > UPDATE: > > > > I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? > > > > Sean > > > > From: FreeSWITCH-users On Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 10:41 AM > To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Hi, > > > > I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one > login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. > > > > This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. > > The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. > > > > This is sort of urgent. Please help if you can. > > > > Many thanks, > > Sean > > > > Sample User Dir entry: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > [2 ] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici wb2una covici at ccs.covici.com From mario_fs at mgtech.com Mon May 20 17:11:43 2019 From: mario_fs at mgtech.com (mario_fs) Date: Mon, 20 May 2019 10:11:43 -0700 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> That’s exactly what I do here, but more info for Sean, you can do this two ways: Program a button to dial a code, in my case 6001. My Yealink phones can program separate pickup and park buttons, but I have both programed for 6001 for park and pickup, also use 6001 on iPads. Your customer can do this using the bridge to two extensions to ring at the same time using the “,” between extensions, for the record I use groups: The two phones ring, one person answers, than presses the park button (which acts like hold so they can pickup again if needed), yells to someone to pickup, that person presses pickup which auto answers. I use this on multiple phones and iPads so the call can be answered anywhere and picked up anywhere. This other thing you can do is have multiple pickup numbers, like 6001, 6002, etc. Cool if needed. I have this in default.xm, remember I use 6001 for park and pickupl: Other extensions you can look at in default.xml are park, unmark, you will see my valet_park is different from the supplied one. Hope this helps. Mario G > On May 19, 2019, at 10:59 PM, John Covici wrote: > > Why not just have two separate extensions and bridge with a , and then > have them park the call and someone else can pick it up from park. > > On Sun, 19 May 2019 17:13:06 -0400, > Sean Devoy wrote: >> >> [1 ] >> [1.1 ] >> [1.2 ] >> HI Mario, >> >> >> >> Thanks for the response. VM is not an issue here. >> >> This has been working for this customer for well over 2 years on FS version 1.2.22. This customer insists his employees are too stupid to learn to transfer a call. >> >> >> >> His requirements: >> >> 1 Both Phones must ring >> >> 2 Either phone can answer >> >> 3 They must be able to put the call on hold and yell for someone to “Pick line 1” on the other phone. >> >> >> >> It seems so simple, but he is beginning to think we can’t hit our a$$ regarding phone service. This is a deli that does lots of deliveries, so it is critical to his business. >> >> >> >> Thanks, >> >> Sean >> >> >> >> >> >> From: FreeSWITCH-users On Behalf Of mario_fs >> Sent: Sunday, May 19, 2019 3:32 PM >> To: FreeSWITCH Users Help >> Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 >> >> >> >> When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox >> and MWI indicator and use separate extension numbers, no more problems. >> >> Mario G >> >> On May 15, 2019, at 9:22 AM, Sean Devoy wrote: >> >> >> >> No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? >> >> Any other params? >> >> >> >> From: FreeSWITCH-users On Behalf Of Sean Devoy >> Sent: Wednesday, May 15, 2019 11:57 AM >> To: FreeSWITCH Users Help >> Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 >> >> >> >> Answered the wrong question, sorry. I have now also set: >> >> >> >> >> >> From: FreeSWITCH-users On Behalf Of Sean Devoy >> Sent: Wednesday, May 15, 2019 11:49 AM >> To: FreeSWITCH Users Help >> Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 >> >> >> >> Thank you Abaci. >> >> >> >> I have added: >> >> >> >> >> >> >> >> >> >> From: FreeSWITCH-users On Behalf Of Abaci B >> Sent: Wednesday, May 15, 2019 11:34 AM >> To: FreeSWITCH Users Help >> Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 >> >> >> >> what do you have in your sip profile for "multiple-registrations" param? >> >> >> >> On Wed, May 15, 2019 at 11:25 AM Sean Devoy wrote: >> >> UPDATE: >> >> >> >> I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? >> >> >> >> Sean >> >> >> >> From: FreeSWITCH-users On Behalf Of Sean Devoy >> Sent: Wednesday, May 15, 2019 10:41 AM >> To: FreeSWITCH Users Help >> Subject: [Freeswitch-users] Shared Lines not working on 1.8 >> >> >> >> Hi, >> >> >> >> I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one >> login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. >> >> >> >> This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. >> >> The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. >> >> >> >> This is sort of urgent. Please help if you can. >> >> >> >> Many thanks, >> >> Sean >> >> >> >> Sample User Dir entry: >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com >> [2 ] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- > Your life is like a penny. You're going to lose it. The question is: > How do > you spend it? > > John Covici wb2una > covici at ccs.covici.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Mon May 20 17:54:56 2019 From: brian at freeswitch.com (Brian West) Date: Mon, 20 May 2019 12:54:56 -0500 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> References: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> Message-ID: I'm guessing you're not setting the presence_id /b On Mon, May 20, 2019 at 12:43 PM mario_fs wrote: > That’s exactly what I do here, but more info for Sean, you can do this two > ways: > > Program a button to dial a code, in my case 6001. My Yealink phones can > program separate pickup and park buttons, but I have both programed for > 6001 for park and pickup, also use 6001 on iPads. Your customer can do this > using the bridge to two extensions to ring at the same time using the “,” > between extensions, for the record I use groups: The two phones ring, one > person answers, than presses the park button (which acts like hold so they > can pickup again if needed), yells to someone to pickup, that person > presses pickup which auto answers. I use this on multiple phones and iPads > so the call can be answered anywhere and picked up anywhere. > > This other thing you can do is have multiple pickup numbers, like 6001, > 6002, etc. Cool if needed. > > I have this in default.xm, remember I use 6001 for park and pickupl: > > > > > > > > > Other extensions you can look at in default.xml are park, unmark, you will > see my valet_park is different from the supplied one. Hope this helps. > > Mario G > > On May 19, 2019, at 10:59 PM, John Covici wrote: > > Why not just have two separate extensions and bridge with a , and then > have them park the call and someone else can pick it up from park. > > On Sun, 19 May 2019 17:13:06 -0400, > Sean Devoy wrote: > > > [1 ] > [1.1 ] > [1.2 ] > HI Mario, > > > > Thanks for the response. VM is not an issue here. > > This has been working for this customer for well over 2 years on FS > version 1.2.22. This customer insists his employees are too stupid to > learn to transfer a call. > > > > His requirements: > > 1 Both Phones must ring > > 2 Either phone can answer > > 3 They must be able to put the call on hold and yell for someone to “Pick > line 1” on the other phone. > > > > It seems so simple, but he is beginning to think we can’t hit our a$$ > regarding phone service. This is a deli that does lots of deliveries, so it > is critical to his business. > > > > Thanks, > > Sean > > > > > > From: FreeSWITCH-users On > Behalf Of mario_fs > Sent: Sunday, May 19, 2019 3:32 PM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > When I set multiple-registrations for Bria push servers last year I found > I had to restart FreeSwitch. BTW, when I used multiple registrations for > actual phone years ago I had a lot of issues. I wound up simply using a > shared VM mailbox > and MWI indicator and use separate extension numbers, no more problems. > > Mario G > > On May 15, 2019, at 9:22 AM, Sean Devoy wrote: > > > > No change. Is sofia profile internal rescan all that’s required or do I > have to restart FS? > > Any other params? > > > > From: FreeSWITCH-users On > Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 11:57 AM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Answered the wrong question, sorry. I have now also set: > > > > > > From: FreeSWITCH-users On > Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 11:49 AM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Thank you Abaci. > > > > I have added: > > > > > > > > > > From: FreeSWITCH-users On > Behalf Of Abaci B > Sent: Wednesday, May 15, 2019 11:34 AM > To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > what do you have in your sip profile for "multiple-registrations" param? > > > > On Wed, May 15, 2019 at 11:25 AM Sean Devoy wrote: > > UPDATE: > > > > I just noticed that in “show registrations” the phone logged in to each > extension is switching back and forth. Perhaps there is something new > about allowing multiple phones login to the same extension? > > > > Sean > > > > From: FreeSWITCH-users On > Behalf Of Sean Devoy > Sent: Wednesday, May 15, 2019 10:41 AM > To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Hi, > > > > I just switched a customer from our version 1.4 server to our 1.8 server. > They have 2 phones programmed with the same 3 shared extensions. The only > change made was the FQDN they login to. In show registrations, I only see > one > login for each extension. The status on the phones all say registered. > When called, only one of the 2 phones rings. > > > > This customer is a restaurant whose employees can’t handle “transfer”, > they insist on only using “hold” and pick up. > > The phones are cisco, nat’ed and the server is not nat’ed. The phones are > configured for Shared lines as well. > > > > This is sort of urgent. Please help if you can. > > > > Many thanks, > > Sean > > > > Sample User Dir entry: > > > > > > > > > > > > > > > > > > > > value="NDLB-connectile-dysfunction"/> > > > > > > > > > > > > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > [2 ] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > -- > Your life is like a penny. You're going to lose it. The question is: > How do > you spend it? > > John Covici wb2una > covici at ccs.covici.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From moshe.rosenberg at gmail.com Mon May 20 00:05:39 2019 From: moshe.rosenberg at gmail.com (Moshe Rosenberg) Date: Sun, 19 May 2019 20:05:39 -0400 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: Use call park for hold then every one can have a different ext. On Sun, May 19, 2019, 5:49 PM Sean Devoy wrote: > HI Mario, > > > > Thanks for the response. VM is not an issue here. > > This has been working for this customer for well over 2 years on FS > version 1.2.22. This customer insists his employees are too stupid to > learn to transfer a call. > > > > His requirements: > > 1. Both Phones must ring > 2. Either phone can answer > 3. They must be able to put the call on hold and yell for someone to > “Pick line 1” on the other phone. > > > > It seems so simple, but he is beginning to think we can’t hit our a$$ > regarding phone service. This is a deli that does lots of deliveries, so > it is critical to his business. > > > > Thanks, > > Sean > > > > > > *From:* FreeSWITCH-users *On > Behalf Of *mario_fs > *Sent:* Sunday, May 19, 2019 3:32 PM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > When I set multiple-registrations for Bria push servers last year I found > I had to restart FreeSwitch. BTW, when I used multiple registrations for > actual phone years ago I had a lot of issues. I wound up simply using a > shared VM mailbox and MWI indicator and use separate extension numbers, no > more problems. > > Mario G > > > > On May 15, 2019, at 9:22 AM, Sean Devoy wrote: > > > > No change. Is sofia profile internal rescan all that’s required or do I > have to restart FS? > > Any other params? > > > > *From:* FreeSWITCH-users *On > Behalf Of *Sean Devoy > *Sent:* Wednesday, May 15, 2019 11:57 AM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Answered the wrong question, sorry. I have now also set: > > > > > > *From:* FreeSWITCH-users *On > Behalf Of *Sean Devoy > *Sent:* Wednesday, May 15, 2019 11:49 AM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > Thank you Abaci. > > > > I have added: > > > > > > > > > > *From:* FreeSWITCH-users *On > Behalf Of *Abaci B > *Sent:* Wednesday, May 15, 2019 11:34 AM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] Shared Lines not working on 1.8 > > > > what do you have in your sip profile for "multiple-registrations" param? > > > > On Wed, May 15, 2019 at 11:25 AM Sean Devoy wrote: > > UPDATE: > > > > I just noticed that in “show registrations” the phone logged in to each > extension is switching back and forth. Perhaps there is something new > about allowing multiple phones login to the same extension? > > > > Sean > > > > *From:* FreeSWITCH-users *On > Behalf Of *Sean Devoy > *Sent:* Wednesday, May 15, 2019 10:41 AM > *To:* FreeSWITCH Users Help > *Subject:* [Freeswitch-users] Shared Lines not working on 1.8 > > > > Hi, > > > > I just switched a customer from our version 1.4 server to our 1.8 server. > They have 2 phones programmed with the same 3 shared extensions. The only > change made was the FQDN they login to. In show registrations, I only see > one login for each extension. The status on the phones all say > registered. When called, only one of the 2 phones rings. > > > > This customer is a restaurant whose employees can’t handle “transfer”, > they insist on only using “hold” and pick up. > > The phones are cisco, nat’ed and the server is not nat’ed. The phones are > configured for Shared lines as well. > > > > This is sort of urgent. Please help if you can. > > > > Many thanks, > > Sean > > > > Sample User Dir entry: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Mon May 20 22:16:18 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Mon, 20 May 2019 22:16:18 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> References: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> Message-ID: Thank you Mario. I tried that 2 years ago. The “parked” call does not flash a light on the phone so they “lost calls.” This customer is highly demanding and thinks his employees know nothing (and they may not). Think Koko the gorilla, except that would be rude to Koko. From: FreeSWITCH-users On Behalf Of mario_fs Sent: Monday, May 20, 2019 1:12 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 That’s exactly what I do here, but more info for Sean, you can do this two ways: Program a button to dial a code, in my case 6001. My Yealink phones can program separate pickup and park buttons, but I have both programed for 6001 for park and pickup, also use 6001 on iPads. Your customer can do this using the bridge to two extensions to ring at the same time using the “,” between extensions, for the record I use groups: The two phones ring, one person answers, than presses the park button (which acts like hold so they can pickup again if needed), yells to someone to pickup, that person presses pickup which auto answers. I use this on multiple phones and iPads so the call can be answered anywhere and picked up anywhere. This other thing you can do is have multiple pickup numbers, like 6001, 6002, etc. Cool if needed. I have this in default.xm, remember I use 6001 for park and pickupl: Other extensions you can look at in default.xml are park, unmark, you will see my valet_park is different from the supplied one. Hope this helps. Mario G On May 19, 2019, at 10:59 PM, John Covici > wrote: Why not just have two separate extensions and bridge with a , and then have them park the call and someone else can pick it up from park. On Sun, 19 May 2019 17:13:06 -0400, Sean Devoy wrote: [1 ] [1.1 ] [1.2 ] HI Mario, Thanks for the response. VM is not an issue here. This has been working for this customer for well over 2 years on FS version 1.2.22. This customer insists his employees are too stupid to learn to transfer a call. His requirements: 1 Both Phones must ring 2 Either phone can answer 3 They must be able to put the call on hold and yell for someone to “Pick line 1” on the other phone. It seems so simple, but he is beginning to think we can’t hit our a$$ regarding phone service. This is a deli that does lots of deliveries, so it is critical to his business. Thanks, Sean From: FreeSWITCH-users > On Behalf Of mario_fs Sent: Sunday, May 19, 2019 3:32 PM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox and MWI indicator and use separate extension numbers, no more problems. Mario G On May 15, 2019, at 9:22 AM, Sean Devoy > wrote: No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? Any other params? From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:57 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Answered the wrong question, sorry. I have now also set: From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:49 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Abaci. I have added: From: FreeSWITCH-users >On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com [2 ] _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici wb2una covici at ccs.covici.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Mon May 20 22:17:54 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Mon, 20 May 2019 22:17:54 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: Message-ID: Many people with this suggestion. Thanks. Parked calls have no flashing light on the phone preventing them from being forgotten. The customer found this unacceptable. Sean From: FreeSWITCH-users On Behalf Of Moshe Rosenberg Sent: Sunday, May 19, 2019 8:06 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Use call park for hold then every one can have a different ext. On Sun, May 19, 2019, 5:49 PM Sean Devoy > wrote: HI Mario, Thanks for the response. VM is not an issue here. This has been working for this customer for well over 2 years on FS version 1.2.22. This customer insists his employees are too stupid to learn to transfer a call. His requirements: 1. Both Phones must ring 2. Either phone can answer 3. They must be able to put the call on hold and yell for someone to “Pick line 1” on the other phone. It seems so simple, but he is beginning to think we can’t hit our a$$ regarding phone service. This is a deli that does lots of deliveries, so it is critical to his business. Thanks, Sean From: FreeSWITCH-users > On Behalf Of mario_fs Sent: Sunday, May 19, 2019 3:32 PM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox and MWI indicator and use separate extension numbers, no more problems. Mario G On May 15, 2019, at 9:22 AM, Sean Devoy > wrote: No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? Any other params? From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:57 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Answered the wrong question, sorry. I have now also set: From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:49 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Abaci. I have added: From: FreeSWITCH-users >On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Mon May 20 22:18:58 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Mon, 20 May 2019 22:18:58 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> Message-ID: Brian, I do not! I will add it, but will that change the fact that only one at a time shows up in SHOW REGISTRATIONS? From: FreeSWITCH-users On Behalf Of Brian West Sent: Monday, May 20, 2019 1:55 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 I'm guessing you're not setting the presence_id /b On Mon, May 20, 2019 at 12:43 PM mario_fs > wrote: That’s exactly what I do here, but more info for Sean, you can do this two ways: Program a button to dial a code, in my case 6001. My Yealink phones can program separate pickup and park buttons, but I have both programed for 6001 for park and pickup, also use 6001 on iPads. Your customer can do this using the bridge to two extensions to ring at the same time using the “,” between extensions, for the record I use groups: The two phones ring, one person answers, than presses the park button (which acts like hold so they can pickup again if needed), yells to someone to pickup, that person presses pickup which auto answers. I use this on multiple phones and iPads so the call can be answered anywhere and picked up anywhere. This other thing you can do is have multiple pickup numbers, like 6001, 6002, etc. Cool if needed. I have this in default.xm, remember I use 6001 for park and pickupl: Other extensions you can look at in default.xml are park, unmark, you will see my valet_park is different from the supplied one. Hope this helps. Mario G On May 19, 2019, at 10:59 PM, John Covici > wrote: Why not just have two separate extensions and bridge with a , and then have them park the call and someone else can pick it up from park. On Sun, 19 May 2019 17:13:06 -0400, Sean Devoy wrote: [1 ] [1.1 ] [1.2 ] HI Mario, Thanks for the response. VM is not an issue here. This has been working for this customer for well over 2 years on FS version 1.2.22. This customer insists his employees are too stupid to learn to transfer a call. His requirements: 1 Both Phones must ring 2 Either phone can answer 3 They must be able to put the call on hold and yell for someone to “Pick line 1” on the other phone. It seems so simple, but he is beginning to think we can’t hit our a$$ regarding phone service. This is a deli that does lots of deliveries, so it is critical to his business. Thanks, Sean From: FreeSWITCH-users > On Behalf Of mario_fs Sent: Sunday, May 19, 2019 3:32 PM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox and MWI indicator and use separate extension numbers, no more problems. Mario G On May 15, 2019, at 9:22 AM, Sean Devoy > wrote: No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? Any other params? From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:57 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Answered the wrong question, sorry. I have now also set: From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:49 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Abaci. I have added: From: FreeSWITCH-users >On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com [2 ] _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici wb2una covici at ccs.covici.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [https://www.facebook.com/signalwireinc?src=email][https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Mon May 20 22:22:07 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Mon, 20 May 2019 22:22:07 +0000 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: I had on profile internal. My phones are in a domain that is aliased to internal. I tried “contact”. No change, phones bounce back and forth as to who is registered. The bridge connects (somewhat randomly) to whichever is connected at that moment. Thank you all for your attempts to help. I am pulling my hair out. From: FreeSWITCH-users On Behalf Of Alexey Sibyakin Sent: Sunday, May 19, 2019 8:35 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 Hi, in the sip profile and in the dialplan should work. If not, please provide the log. Also, we have professional consulting. Please contact sales at signalwire.com for offerings. Regards, Alex Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, Palo Alto, CA 94303 Email: alex at freeswitch.com Website: https://www.signalwire.com On Mon, May 20, 2019 at 4:53 AM Sean Devoy > wrote: Hi All, I have tried everything I have been advised to as well as anything I could find on the web. I cannot get multiple logins to work on the current release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but that does not seem to be relevant. I have cloned my server to a test environment. I am offering $100U.S. via PayPal for someone to use the test system and fix the problem. Of course, you will need to inform me what you did so I can apply it to the production system. I need this fixed ASAP so I don’t get billed for 2 servers for another month. I will share a putty key (and password) with root access. If interested, please send me a private email. I will post here when the offer is taken. Thanks, Sean Devoy. _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From max at nysolutions.com Tue May 21 00:05:20 2019 From: max at nysolutions.com (Moishe Grunstein) Date: Tue, 21 May 2019 00:05:20 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> Message-ID: <3bff3c0efb0c41ad9f9a9fee13b9a834@nysolutions.com> Parked calls do have a light if use presence. You can also use Shared line appearance (SLA) however that is more of a pain. Thanks, Moishe Grunstein Tornado Computer Systems, Inc. 212.400.7650 888.IPPBX.US Service Request Email: support at nysolutions.com [cid:image001.jpg at 01C72F94.9EE45D60] Computer Networking * Managed Services * IP Video Surveillance * Network Assessments * Web Solutions * Voice over IP * Disaster Recovery * Network Security * Site Surveys * CMS From: FreeSWITCH-users On Behalf Of Sean Devoy Sent: Monday, May 20, 2019 6:16 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Mario. I tried that 2 years ago. The “parked” call does not flash a light on the phone so they “lost calls.” This customer is highly demanding and thinks his employees know nothing (and they may not). Think Koko the gorilla, except that would be rude to Koko. From: FreeSWITCH-users > On Behalf Of mario_fs Sent: Monday, May 20, 2019 1:12 PM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 That’s exactly what I do here, but more info for Sean, you can do this two ways: Program a button to dial a code, in my case 6001. My Yealink phones can program separate pickup and park buttons, but I have both programed for 6001 for park and pickup, also use 6001 on iPads. Your customer can do this using the bridge to two extensions to ring at the same time using the “,” between extensions, for the record I use groups: The two phones ring, one person answers, than presses the park button (which acts like hold so they can pickup again if needed), yells to someone to pickup, that person presses pickup which auto answers. I use this on multiple phones and iPads so the call can be answered anywhere and picked up anywhere. This other thing you can do is have multiple pickup numbers, like 6001, 6002, etc. Cool if needed. I have this in default.xm, remember I use 6001 for park and pickupl: Other extensions you can look at in default.xml are park, unmark, you will see my valet_park is different from the supplied one. Hope this helps. Mario G On May 19, 2019, at 10:59 PM, John Covici > wrote: Why not just have two separate extensions and bridge with a , and then have them park the call and someone else can pick it up from park. On Sun, 19 May 2019 17:13:06 -0400, Sean Devoy wrote: [1 ] [1.1 ] [1.2 ] HI Mario, Thanks for the response. VM is not an issue here. This has been working for this customer for well over 2 years on FS version 1.2.22. This customer insists his employees are too stupid to learn to transfer a call. His requirements: 1 Both Phones must ring 2 Either phone can answer 3 They must be able to put the call on hold and yell for someone to “Pick line 1” on the other phone. It seems so simple, but he is beginning to think we can’t hit our a$$ regarding phone service. This is a deli that does lots of deliveries, so it is critical to his business. Thanks, Sean From: FreeSWITCH-users > On Behalf Of mario_fs Sent: Sunday, May 19, 2019 3:32 PM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 When I set multiple-registrations for Bria push servers last year I found I had to restart FreeSwitch. BTW, when I used multiple registrations for actual phone years ago I had a lot of issues. I wound up simply using a shared VM mailbox and MWI indicator and use separate extension numbers, no more problems. Mario G On May 15, 2019, at 9:22 AM, Sean Devoy > wrote: No change. Is sofia profile internal rescan all that’s required or do I have to restart FS? Any other params? From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:57 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Answered the wrong question, sorry. I have now also set: From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 11:49 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 Thank you Abaci. I have added: From: FreeSWITCH-users >On Behalf Of Abaci B Sent: Wednesday, May 15, 2019 11:34 AM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] Shared Lines not working on 1.8 what do you have in your sip profile for "multiple-registrations" param? On Wed, May 15, 2019 at 11:25 AM Sean Devoy > wrote: UPDATE: I just noticed that in “show registrations” the phone logged in to each extension is switching back and forth. Perhaps there is something new about allowing multiple phones login to the same extension? Sean From: FreeSWITCH-users >On Behalf Of Sean Devoy Sent: Wednesday, May 15, 2019 10:41 AM To: FreeSWITCH Users Help > Subject: [Freeswitch-users] Shared Lines not working on 1.8 Hi, I just switched a customer from our version 1.4 server to our 1.8 server. They have 2 phones programmed with the same 3 shared extensions. The only change made was the FQDN they login to. In show registrations, I only see one login for each extension. The status on the phones all say registered. When called, only one of the 2 phones rings. This customer is a restaurant whose employees can’t handle “transfer”, they insist on only using “hold” and pick up. The phones are cisco, nat’ed and the server is not nat’ed. The phones are configured for Shared lines as well. This is sort of urgent. Please help if you can. Many thanks, Sean Sample User Dir entry: _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com [2 ] _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici wb2una covici at ccs.covici.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 2424 bytes Desc: image001.jpg URL: From abaci64 at gmail.com Tue May 21 02:00:55 2019 From: abaci64 at gmail.com (Abaci B) Date: Mon, 20 May 2019 22:00:55 -0400 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: did you also try call-id instead of contact and true? also did you check sip-allow-multiple-registrations user param? On Mon, May 20, 2019 at 7:14 PM Sean Devoy wrote: > I had on profile > internal. My phones are in a domain that is aliased to internal. > > > > I tried “contact”. No change, phones bounce back and forth as to who is > registered. The bridge connects (somewhat randomly) to whichever is > connected at that moment. > > > Thank you all for your attempts to help. I am pulling my hair out. > > > > *From:* FreeSWITCH-users *On > Behalf Of *Alexey Sibyakin > *Sent:* Sunday, May 19, 2019 8:35 PM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 > > > > Hi, > > > > > > in the sip profile and > > > > > > > in the dialplan should work. > > > > If not, please provide the log. > > > > Also, we have professional consulting. Please contact sales at signalwire.com > for offerings. > > > > Regards, > > > > Alex > > > > Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, > Palo Alto, CA 94303 Email: alex at freeswitch.com Website: > https://www.signalwire.com > > > > > > > > On Mon, May 20, 2019 at 4:53 AM Sean Devoy wrote: > > Hi All, > > > > I have tried everything I have been advised to as well as anything I could > find on the web. I cannot get multiple logins to work on the current > release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but > that does not seem to be relevant. > > > > I have cloned my server to a test environment. I am offering $100U.S. via > PayPal for someone to use the test system and fix the problem. Of course, > you will need to inform me what you did so I can apply it to the production > system. I need this fixed ASAP so I don’t get billed for 2 servers for > another month. > > > > I will share a putty key (and password) with root access. If interested, > please send me a private email. > > > > I will post here when the offer is taken. > > > > Thanks, > > Sean Devoy. > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From anthony.minessale at gmail.com Tue May 21 02:38:17 2019 From: anthony.minessale at gmail.com (Anthony Minessale) Date: Mon, 20 May 2019 21:38:17 -0500 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: Are you talking about normal multiple registrations or: You might want to just carefully examine what is happening by pointing 2 phones at the default profile and work up. It might not be parsing your alias or something like that or using a different profile than you think. Have you tried using the default config vs the old 1.4 one? On Mon, May 20, 2019 at 9:20 PM Abaci B wrote: > did you also try call-id instead of contact and true? > > > also did you check sip-allow-multiple-registrations user param? > > On Mon, May 20, 2019 at 7:14 PM Sean Devoy wrote: > >> I had on profile >> internal. My phones are in a domain that is aliased to internal. >> >> >> >> I tried “contact”. No change, phones bounce back and forth as to who is >> registered. The bridge connects (somewhat randomly) to whichever is >> connected at that moment. >> >> >> Thank you all for your attempts to help. I am pulling my hair out. >> >> >> >> *From:* FreeSWITCH-users *On >> Behalf Of *Alexey Sibyakin >> *Sent:* Sunday, May 19, 2019 8:35 PM >> *To:* FreeSWITCH Users Help >> *Subject:* Re: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 >> >> >> >> Hi, >> >> >> >> >> >> in the sip profile and >> >> >> > data="${sofia_contact(${dialed_extension})}"/> >> >> >> >> in the dialplan should work. >> >> >> >> If not, please provide the log. >> >> >> >> Also, we have professional consulting. Please contact >> sales at signalwire.com for offerings. >> >> >> >> Regards, >> >> >> >> Alex >> >> >> >> Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, >> Palo Alto, CA 94303 Email: alex at freeswitch.com Website: >> https://www.signalwire.com >> >> >> >> >> >> >> >> On Mon, May 20, 2019 at 4:53 AM Sean Devoy wrote: >> >> Hi All, >> >> >> >> I have tried everything I have been advised to as well as anything I >> could find on the web. I cannot get multiple logins to work on the current >> release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but >> that does not seem to be relevant. >> >> >> >> I have cloned my server to a test environment. I am offering $100U.S. >> via PayPal for someone to use the test system and fix the problem. Of >> course, you will need to inform me what you did so I can apply it to the >> production system. I need this fixed ASAP so I don’t get billed for 2 >> servers for another month. >> >> >> >> I will share a putty key (and password) with root access. If interested, >> please send me a private email. >> >> >> >> I will post here when the offer is taken. >> >> >> >> Thanks, >> >> Sean Devoy. >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Anthony Minessale II Founder, FreeSWITCH. http://freeswitch.com https://youtu.be/l_hOxzCt6X4 https://www.youtube.com/watch?v=oAxXgyx5jUw https://www.youtube.com/watch?v=9XXgW34t40s https://www.youtube.com/watch?v=NLaDpGQuZDA -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Tue May 21 02:52:42 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Tue, 21 May 2019 02:52:42 +0000 Subject: [Freeswitch-users] Shared Lines not working on 1.8 In-Reply-To: References: <1B4ACD60-FBBF-41A2-B839-04C78517C168@mgtech.com> Message-ID: And the winner is …. BRIAN WEST of course. presence_id before or in the bridge solved the multiple login issue. I was expecting the final solution to show multiple registrations in FS "show registrations", it does not. Thank you all for you help. I have been very stressed over this and your assistance is greatly appreciated. Brian - I looked for a wish list on Amazon, but there are 15 pages of Brian West wish lists. Can you help me narrow that down? Here is my review and current understanding for future reference. Some of this may be unnecessary or even wrong, but I got the functionality I need. I honestly can’t tell if or Makes a difference, but I have it set to contact. I have marked the directory extension with: (for my final solution for this nutjob customer) I have 2 Cisco SPA504G phones configured for SHARED LINE APPEARANCE. The status on the phones shows registered. However, fs_cli "show registrations" only shows 1 phone at a time and switches depending on which registered last. If you ignore that oddity and add presence_id to the dialplan (or in the bridge string) both phones ring. That solves the problem for multiple registrations and ringing multiple phones on a single registration. It is however, identical to having 2 private extensions with their own registrations (ext numbers) and just bridging to both in the dialplan. My problem was more complex. My customer wants the call to stay visible on both phones and pick it up from either phone if placed on hold. CISCO SPA500 PHONES TO THE RESCUE. (I suspect most brand phones can do this, but I know my CISCO's better than any other). Cisco phone's "line" buttons can be extension appearances or "function buttons" like Busy Lamp Field and Call Pickup. With these both enabled, the call appearance button on the 2nd phone always match the primary phone exactly. The second phone can "CP" call pickup the extension if the other phone placed it on hold. The CISCO function string looks like this: fnc=blf+cp;sub=200@$proxy where 200 is the extension to watch/pickup. One restriction is you cannot press that function button to get a dial-tone. My customer's just pickup and dial anyway, they do not select a line. My final solution is: Phone 1 with ext 201 on first button (label "Line 1") and fnc=blf+cp;sub=202@$proxy (label "Line 2") Phone 2 with ext 202 on first button (also label "Line 1") and fnc=blf+cp;sub=201@$proxy (also label "Line 2") I realize the Line 1 and Line 2 are swapped on the 2 phones, but they will not! Then I adjust the dialplan to ring both 201 and 202 for incoming calls. One oddity is both line buttons will flash on both phones for incoming calls. Thanks again to all who replied. Sean From chenxiemin at gmail.com Tue May 21 03:00:08 2019 From: chenxiemin at gmail.com (Xiemin Chen) Date: Tue, 21 May 2019 11:00:08 +0800 Subject: [Freeswitch-users] Fwd: Verto cluster / load balance In-Reply-To: References: Message-ID: Hi, anyway to achieve the Verto cluster / load balance so that the chat / conf manager features are still workable? -------------- next part -------------- An HTML attachment was scrubbed... URL: From josedavid at zennio.com Tue May 21 06:37:14 2019 From: josedavid at zennio.com (Jose David Jurado Alonso) Date: Tue, 21 May 2019 08:37:14 +0200 Subject: [Freeswitch-users] No video in some android phones (linphone-android client) Message-ID: Hi, On some Android phones the video does not work properly (not shown) when a video call is made. The used client is linphone-android (I have consulted his repository and I have not seen anything related). The problem has been presented in mobile phones such as Xiaomi MI6 and Samsung S8, phones that have android with own layers of personalization and try to integrate VoIP calls with telephone calls. However, in other phones of these brands works correctly. I have a similar issue in some iOS devices with the equivalent client. Has anyone had the same problem or knows what can be done? José David Jurado Alonso -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at freeswitch.com Tue May 21 06:46:16 2019 From: mike at freeswitch.com (Mike Jerris) Date: Tue, 21 May 2019 00:46:16 -0600 Subject: [Freeswitch-users] No video in some android phones (linphone-android client) In-Reply-To: References: Message-ID: i’ve heard similar reports specific to certain versions of specifically linphone. sounds like a linphone specific bug, but i haven’t dug into why at all. might want to reach out to them to see what the issue is. On Tue, May 21, 2019 at 12:38 AM Jose David Jurado Alonso < josedavid at zennio.com> wrote: > Hi, > > On some Android phones the video does not work properly (not shown) when a > video call is made. > > The used client is linphone-android (I have consulted his repository and I > have not seen anything related). > > The problem has been presented in mobile phones such as Xiaomi MI6 and > Samsung S8, phones that have android with own layers of personalization and > try to integrate VoIP calls with telephone calls. However, in other phones > of these brands works correctly. > > I have a similar issue in some iOS devices with the equivalent client. > > Has anyone had the same problem or knows what can be done? > > José David Jurado Alonso > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Tue May 21 13:17:41 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Tue, 21 May 2019 13:17:41 +0000 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: Hi Anthony, I have tried dozens of configurations. I am guessing most of the problem is my lack of understanding of the difference Multiple Registrations and SLA. Please explain if Multiple Registrations should function like this: More than 1 phone registered on same ext. All ring when bridged to that ext. Any phone answer it. PUT IT ON HOLD AND OTHER PHONE(s) SEE IT AS FLASHING BUTTON and Pick it up. Also, if multiple registration is working, should they all show up in “show registrations”? Thanks for the education. Sean From: FreeSWITCH-users On Behalf Of Anthony Minessale Sent: Monday, May 20, 2019 10:38 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 Are you talking about normal multiple registrations or: You might want to just carefully examine what is happening by pointing 2 phones at the default profile and work up. It might not be parsing your alias or something like that or using a different profile than you think. Have you tried using the default config vs the old 1.4 one? On Mon, May 20, 2019 at 9:20 PM Abaci B > wrote: did you also try call-id instead of contact and true? also did you check sip-allow-multiple-registrations user param? On Mon, May 20, 2019 at 7:14 PM Sean Devoy > wrote: I had on profile internal. My phones are in a domain that is aliased to internal. I tried “contact”. No change, phones bounce back and forth as to who is registered. The bridge connects (somewhat randomly) to whichever is connected at that moment. Thank you all for your attempts to help. I am pulling my hair out. From: FreeSWITCH-users > On Behalf Of Alexey Sibyakin Sent: Sunday, May 19, 2019 8:35 PM To: FreeSWITCH Users Help > Subject: Re: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 Hi, in the sip profile and in the dialplan should work. If not, please provide the log. Also, we have professional consulting. Please contact sales at signalwire.com for offerings. Regards, Alex Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, Palo Alto, CA 94303 Email: alex at freeswitch.com Website: https://www.signalwire.com On Mon, May 20, 2019 at 4:53 AM Sean Devoy > wrote: Hi All, I have tried everything I have been advised to as well as anything I could find on the web. I cannot get multiple logins to work on the current release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but that does not seem to be relevant. I have cloned my server to a test environment. I am offering $100U.S. via PayPal for someone to use the test system and fix the problem. Of course, you will need to inform me what you did so I can apply it to the production system. I need this fixed ASAP so I don’t get billed for 2 servers for another month. I will share a putty key (and password) with root access. If interested, please send me a private email. I will post here when the offer is taken. Thanks, Sean Devoy. _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Anthony Minessale II Founder, FreeSWITCH. http://freeswitch.com https://youtu.be/l_hOxzCt6X4 https://www.youtube.com/watch?v=oAxXgyx5jUw https://www.youtube.com/watch?v=9XXgW34t40s https://www.youtube.com/watch?v=NLaDpGQuZDA -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Tue May 21 13:49:57 2019 From: brian at freeswitch.com (Brian West) Date: Tue, 21 May 2019 08:49:57 -0500 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: slay won't work unless you set the presense_id variable i'm guessing you tweaked the dial-string from our defaults to something else? On Tue, May 21, 2019 at 8:18 AM Sean Devoy wrote: > Hi Anthony, > > > > I have tried dozens of configurations. I am guessing most of the problem > is my lack of understanding of the difference Multiple Registrations and > SLA. > > > > Please explain if Multiple Registrations should function like this: > > More than 1 phone registered on same ext. > > All ring when bridged to that ext. > > Any phone answer it. > > PUT IT ON HOLD AND OTHER PHONE(s) SEE IT AS FLASHING BUTTON and Pick it up. > > > > Also, if multiple registration is working, should they all show up in > “show registrations”? > > > > Thanks for the education. > > > > Sean > > > > *From:* FreeSWITCH-users *On > Behalf Of *Anthony Minessale > *Sent:* Monday, May 20, 2019 10:38 PM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 > > > > Are you talking about normal multiple registrations or: > > > > > > You might want to just carefully examine what is happening by pointing 2 > phones at the default profile and work up. > > It might not be parsing your alias or something like that or using a > different profile than you think. > > Have you tried using the default config vs the old 1.4 one? > > > > > > On Mon, May 20, 2019 at 9:20 PM Abaci B wrote: > > did you also try call-id instead of contact and true? > > > > > > also did you check sip-allow-multiple-registrations user param? > > > > On Mon, May 20, 2019 at 7:14 PM Sean Devoy wrote: > > I had on profile > internal. My phones are in a domain that is aliased to internal. > > > > I tried “contact”. No change, phones bounce back and forth as to who is > registered. The bridge connects (somewhat randomly) to whichever is > connected at that moment. > > > Thank you all for your attempts to help. I am pulling my hair out. > > > > *From:* FreeSWITCH-users *On > Behalf Of *Alexey Sibyakin > *Sent:* Sunday, May 19, 2019 8:35 PM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 > > > > Hi, > > > > > > in the sip profile and > > > > > > > in the dialplan should work. > > > > If not, please provide the log. > > > > Also, we have professional consulting. Please contact sales at signalwire.com > for offerings. > > > > Regards, > > > > Alex > > > > Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, > Palo Alto, CA 94303 Email: alex at freeswitch.com Website: > https://www.signalwire.com > > > > > > > > On Mon, May 20, 2019 at 4:53 AM Sean Devoy wrote: > > Hi All, > > > > I have tried everything I have been advised to as well as anything I could > find on the web. I cannot get multiple logins to work on the current > release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but > that does not seem to be relevant. > > > > I have cloned my server to a test environment. I am offering $100U.S. via > PayPal for someone to use the test system and fix the problem. Of course, > you will need to inform me what you did so I can apply it to the production > system. I need this fixed ASAP so I don’t get billed for 2 servers for > another month. > > > > I will share a putty key (and password) with root access. If interested, > please send me a private email. > > > > I will post here when the offer is taken. > > > > Thanks, > > Sean Devoy. > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > > > -- > > Anthony Minessale II > > Founder, FreeSWITCH. > > http://freeswitch.com > > > > > > https://youtu.be/l_hOxzCt6X4 > > https://www.youtube.com/watch?v=oAxXgyx5jUw > > https://www.youtube.com/watch?v=9XXgW34t40s > > https://www.youtube.com/watch?v=NLaDpGQuZDA > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From borik.internet at gmail.com Tue May 21 11:11:58 2019 From: borik.internet at gmail.com (Dmitriy Borisov) Date: Tue, 21 May 2019 14:11:58 +0300 Subject: [Freeswitch-users] Google MRCP sessions per FS node Message-ID: Hi, All! Is there anyone, who using Google Speach API via unimrcp in production? How many simultaneous recognise sessions per node running with percetage of error less then 1%? -- With best regards Dmitry Borisov -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Wed May 22 04:01:59 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Tue, 21 May 2019 22:01:59 -0600 Subject: [Freeswitch-users] Text display in a conference In-Reply-To: References: Message-ID: Repost. On Thu, May 16, 2019, 3:49 PM Ramesh Kandasamy wrote: > Hi all, > > I am looking for a way to send a text display from Freeswitch to all the > participants of a video conference. Though, I found a way to do this with > playing an image, is there any other way to send this display as text? > > Thanks > Ramesh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From franciscocarmona777 at gmail.com Wed May 22 07:58:13 2019 From: franciscocarmona777 at gmail.com (=?UTF-8?Q?Francisco_Carmona_Ram=C3=ADrez?=) Date: Wed, 22 May 2019 09:58:13 +0200 Subject: [Freeswitch-users] No calls recovery using postgresql in HA Message-ID: Hi all, I'm working in a HA in Freeswitch v1.8, but i found a lot of troubles for do that, i follow the guide that I found here https://freeswitch.org/confluence/display/FREESWITCH/High+Availability , but i can't solve my problem, following I will present my configuration I use keepalived to solve the problem with the floating IP, now the IP starts in master, when that goes down, the IP change to the slave, and when the master goes up, the IP comes other time to him, in that part I don't have problems. Then I use PostgreSQL for the database that i need to recover calls, in bot servers i have the same configuration of postgresql ---------------------------------------------------------------------------------------------------------- /var/lib/pgsql/data/postgresql.conf listen_addresses = '*' and in /var/lib/pgsql/data/pg_hba.conf # TYPE DATABASE USER ADDRESS METHOD # "local" is for Unix domain socket connections only local all all md5 # IPv4 local connections: host all all all md5 # IPv6 local connections: host all all ::1/128 md5 ---------------------------------------------------------------------------------------------------------------- Both databases are accessible both from freeswitch and from the other server Then that is my configuration in master -------------------------------------------------------------------------------------------------------------------- In /usr/local/freeswitch/conf/sip_profiles/internal.xml and in /usr/local/freeswitch/conf/sip_profiles/external.xml i have /usr/local/freeswitch/conf/autoload_configs/switch.conf.xml ---------------------------------------------------------------------------------- That is the configuration in slave In /usr/local/freeswitch/conf/sip_profiles/internal.xml and in /usr/local/freeswitch/conf/sip_profiles/external.xml i have /usr/local/freeswitch/conf/autoload_configs/switch.conf.xml -------------------------------------------------------------------------------------------------------------- When i make a call, i can see it in the local database of the server that perfors it, but no in the other when i goes to fs_cli and make a db_cache status i recieved that ------------------------------------------------------------------------------------------------------ freeswitch at freeswitch> db_cache status db="freeswitch",type="core_db" Type: CORE_DB Last used: 1 Total used: 5372 Flags: Unlocked, Detached(0) Creator: sofia_glue.c:2499 Last User: sofia_glue.c:2535 db="hostaddr= ip dbname=freeswitch user=postgres password=",type="odbc" Type: PGSQL Last used: 0 Total used: 6477 Flags: Unlocked, Detached(0) Creator: src/switch_console.c:255 Last User: src/switch_console.c:255 db="fifo",type="core_db" Type: CORE_DB Last used: 64648 Total used: 1 Flags: Locked, Attached(1) Creator: src/switch_core_sqldb.c:2058 Last User: db="freeswitch",type="core_db" Type: CORE_DB Last used: 64650 Total used: 2 Flags: Locked, Attached(1) Creator: sofia_glue.c:2268 Last User: src/switch_core_sqldb.c:2058 db="freeswitch",type="core_db" Type: CORE_DB Last used: 64650 Total used: 2 Flags: Locked, Attached(1) Creator: sofia_glue.c:2268 Last User: src/switch_core_sqldb.c:2058 db="hostaddr= ip dbname=freeswitch user=postgres password=",type="odbc" Type: PGSQL Last used: 64650 Total used: 2 Flags: Locked, Attached(1) Creator: src/switch_core_sqldb.c:3375 Last User: src/switch_core_sqldb.c:2058 6 total. 4 in use. --------------------------------------------------------------------------------------------------------- With this information, i think the problem is with the "core-recovery-db-dsn" but i can solve it, someone know how to solve this issue? -------------- next part -------------- An HTML attachment was scrubbed... URL: From seun104 at gmail.com Wed May 22 09:50:20 2019 From: seun104 at gmail.com (Seun Enioluwafe) Date: Wed, 22 May 2019 10:50:20 +0100 Subject: [Freeswitch-users] $$$ Reward $$$ Multiple Logins on v1.8 In-Reply-To: References: Message-ID: Hi, I would like to take your offer. Kindly share access to your test environment. On Sun, May 19, 2019 at 8:32 PM Sean Devoy wrote: > Hi All, > > > > I have tried everything I have been advised to as well as anything I could > find on the web. I cannot get multiple logins to work on the current > release of FS on DEBIAN. The phones in question are CISCP SPA504Gs, but > that does not seem to be relevant. > > > > I have cloned my server to a test environment. I am offering $100U.S. via > PayPal for someone to use the test system and fix the problem. Of course, > you will need to inform me what you did so I can apply it to the production > system. I need this fixed ASAP so I don’t get billed for 2 servers for > another month. > > > > I will share a putty key (and password) with root access. If interested, > please send me a private email. > > > > I will post here when the offer is taken. > > > > Thanks, > > Sean Devoy. > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Cheers +234(0)803-820-7883 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jprangi at didforsale.com Wed May 22 19:14:33 2019 From: jprangi at didforsale.com (Jai Rangi) Date: Wed, 22 May 2019 12:14:33 -0700 Subject: [Freeswitch-users] Issue with Enterprise originate and 487 "ORIGINATOR_CANCEL". Message-ID: All, Running into a small issue with group calling, when the original caller hang up, phones dont show that call as missed call, cause of wrong reason code from freeswitch. Scenario: - Caller -> FS (Groupcall) to 101 and 102 - Phones ring - Caller hangup - Phones should see missed calls, - But free-switch send cancel with Reason: SIP;cause=200;text="Call completed elsewhere", where is should send Reason: SIP;cause=487;text="ORIGINATOR_CANCEL". Here is what my bridge data. bridge({sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20 ]user/101 at 192.168.5.50:_:[ignore_early_media=true,leg_timeout=20 ]user/ 102 at 192.168.5.50) If I send bridge({sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20 ]user/101 at 192.168.5.50 Everything works fine. I see some old posts but no resolution. Freeswitch version on Debian 8.9 FreeSWITCH (Version 1.6.16 git 3da6bd0 2017-04-07 16:49:13Z 64bit) Any idea or suggestion for workaround? Jai -------------- next part -------------- An HTML attachment was scrubbed... URL: From joelists at tm.net.uk Wed May 22 20:31:36 2019 From: joelists at tm.net.uk (Joseph Waite) Date: Wed, 22 May 2019 21:31:36 +0100 Subject: [Freeswitch-users] No calls recovery using postgresql in HA In-Reply-To: References: Message-ID: <3799058B-2928-4AC2-8059-EA951363A91E@tm.net.uk> Have you setup replication in your databases?? You say that when you make a call on master you can see it in the database there but not on the other. This sounds like the databases are not replicated or something is wrong in the database replication. If the second server has no details of the call in the database then it can not recover. Regards Joe Waite > On 22 May 2019, at 08:58, Francisco Carmona Ramírez wrote: > > Hi all, > > I'm working in a HA in Freeswitch v1.8, but i found a lot of troubles for do that, i follow the guide that I found here https://freeswitch.org/confluence/display/FREESWITCH/High+Availability , but i can't solve my problem, following I will present my configuration > > I use keepalived to solve the problem with the floating IP, now the IP starts in master, when that goes down, the IP change to the slave, and when the master goes up, the IP comes other time to him, in that part I don't have problems. > > Then I use PostgreSQL for the database that i need to recover calls, in bot servers i have the same configuration of postgresql > > ---------------------------------------------------------------------------------------------------------- > /var/lib/pgsql/data/postgresql.conf > > listen_addresses = '*' > > and in > > /var/lib/pgsql/data/pg_hba.conf > > # TYPE DATABASE USER ADDRESS METHOD > > # "local" is for Unix domain socket connections only > local all all md5 > # IPv4 local connections: > host all all all md5 > # IPv6 local connections: > host all all ::1/128 md5 > > ---------------------------------------------------------------------------------------------------------------- > > Both databases are accessible both from freeswitch and from the other server > > > Then that is my configuration in master > -------------------------------------------------------------------------------------------------------------------- > In /usr/local/freeswitch/conf/sip_profiles/internal.xml and in /usr/local/freeswitch/conf/sip_profiles/external.xml i have > > > > > /usr/local/freeswitch/conf/autoload_configs/switch.conf.xml > > > > > ---------------------------------------------------------------------------------- > > That is the configuration in slave > In /usr/local/freeswitch/conf/sip_profiles/internal.xml and in /usr/local/freeswitch/conf/sip_profiles/external.xml i have > > > /usr/local/freeswitch/conf/autoload_configs/switch.conf.xml > > > > > -------------------------------------------------------------------------------------------------------------- > When i make a call, i can see it in the local database of the server that perfors it, but no in the other > > when i goes to fs_cli and make a db_cache status i recieved that > > ------------------------------------------------------------------------------------------------------ > > > freeswitch at freeswitch> db_cache status > db="freeswitch",type="core_db" > Type: CORE_DB > Last used: 1 > Total used: 5372 > Flags: Unlocked, Detached(0) > Creator: sofia_glue.c:2499 > Last User: sofia_glue.c:2535 > db="hostaddr= ip dbname=freeswitch user=postgres password=",type="odbc" > Type: PGSQL > Last used: 0 > Total used: 6477 > Flags: Unlocked, Detached(0) > Creator: src/switch_console.c:255 > Last User: src/switch_console.c:255 > db="fifo",type="core_db" > Type: CORE_DB > Last used: 64648 > Total used: 1 > Flags: Locked, Attached(1) > Creator: src/switch_core_sqldb.c:2058 > Last User: > db="freeswitch",type="core_db" > Type: CORE_DB > Last used: 64650 > Total used: 2 > Flags: Locked, Attached(1) > Creator: sofia_glue.c:2268 > Last User: src/switch_core_sqldb.c:2058 > db="freeswitch",type="core_db" > Type: CORE_DB > Last used: 64650 > Total used: 2 > Flags: Locked, Attached(1) > Creator: sofia_glue.c:2268 > Last User: src/switch_core_sqldb.c:2058 > db="hostaddr= ip dbname=freeswitch user=postgres password=",type="odbc" > Type: PGSQL > Last used: 64650 > Total used: 2 > Flags: Locked, Attached(1) > Creator: src/switch_core_sqldb.c:3375 > Last User: src/switch_core_sqldb.c:2058 > 6 total. 4 in use. > > > --------------------------------------------------------------------------------------------------------- > With this information, i think the problem is with the "core-recovery-db-dsn" but i can solve it, someone know how to solve this issue? > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramelcom at gmail.com Thu May 23 00:44:57 2019 From: ramelcom at gmail.com (Ramesh Kandasamy) Date: Wed, 22 May 2019 18:44:57 -0600 Subject: [Freeswitch-users] {full-screen=true} doesn't seem to work with conference play Message-ID: Hi all, I am trying to use conference play api as below to play an image/video to all the participants of a video conference. conference play {full-screen=true,png_ms=3000} I am expecting this image to be played to all pariticipants of the conference as full-screen for 3 seconds. But it plays as one of the screens besides the video screens of other participants for 3 seconds. What am I doing wrong? Thanks Ramesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From tomfieldingpersonal at gmail.com Thu May 23 07:59:01 2019 From: tomfieldingpersonal at gmail.com (Tom Fielding) Date: Thu, 23 May 2019 00:59:01 -0700 Subject: [Freeswitch-users] Cannot record audio played to channels Message-ID: Hi all, I have a bridged call is being recorded by a Lua script. api:executeString("uuid_setvar "..uuid.." RECORD_STEREO true"); api:executeString("uuid_setvar "..uuid.." RECORD_READ_ONLY false"); api:executeString("uuid_setvar "..uuid.." RECORD_WRITE_ONLY false"); api:executeString("uuid_record "..uuid.." start "..recfile); I'm then playing an audio disclosure, which can be heard correctly. api:executeString("uuid_displace ".. uuid..' start '..audioFile..' mux' ); However, I'd like the disclosure to be recorded into the recording file, but it isn't for some reason. Am I missing something? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From derkan at gmail.com Thu May 23 08:51:54 2019 From: derkan at gmail.com (=?UTF-8?Q?Erkan_Durmu=C5=9F?=) Date: Thu, 23 May 2019 11:51:54 +0300 Subject: [Freeswitch-users] Detecting if a call was a fax call after hangup Message-ID: Hi, I have an extension that should get fax calls only. I do not want to use `tone_detect` or `spandsp_start_fax_detect` apps as they not provide fax tone to caller while detecting, which doesn't let caller that it is a fax line. So directly `rx_fax` runs for these fax lines providing fax signal into call. Without pre-detection, when call fails, I want distinguish whether the remote caller was a user or a fax machine. Is it possible to check if call was really from a fax machine by reading some spandsp session variables, or other variables? So I'll be sure that that was a fax call and failed. (I've already compaired spandsp variables with a failed fax call and a user call but not helped) Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jprangi at gmail.com Thu May 23 21:17:11 2019 From: jprangi at gmail.com (Jai Rangi) Date: Thu, 23 May 2019 14:17:11 -0700 Subject: [Freeswitch-users] Corrupted core.db Message-ID: We are getting this error When we do show registration switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where hostname='freeswitch'] database disk image is malformed If there a way to fix this without restarting free-switch. Thank you -Jai -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Thu May 23 21:23:22 2019 From: brian at freeswitch.com (Brian West) Date: Thu, 23 May 2019 16:23:22 -0500 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: You could help narrow down the cause, its a known problem we've been tracking for a while now, but nobody has narrowed down the exact steps to replicate it. /b On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: > We are getting this error > When we do show registration > > switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where > hostname='freeswitch'] database disk image is malformed > > If there a way to fix this without restarting free-switch. > > Thank you > -Jai > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Thu May 23 21:46:25 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Thu, 23 May 2019 22:46:25 +0100 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: This is pretty random, at least for me. I need to stop fs, remove the files and start again. This happens on _all_ of my production fs. Which are spun up on aws from AMIs. On Thu, 23 May 2019 at 22:44, Brian West wrote: > You could help narrow down the cause, its a known problem we've been > tracking for a while now, but nobody has narrowed down the exact steps to > replicate it. > > /b > > > On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: > >> We are getting this error >> When we do show registration >> >> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >> hostname='freeswitch'] database disk image is malformed >> >> If there a way to fix this without restarting free-switch. >> >> Thank you >> -Jai >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Thu May 23 21:49:00 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Thu, 23 May 2019 22:49:00 +0100 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: And BTW doesn’t just happens on coredb, but on all the dB files. Random as to which. On Thu, 23 May 2019 at 22:46, David Villasmil < david.villasmil.work at gmail.com> wrote: > This is pretty random, at least for me. I need to stop fs, remove the > files and start again. This happens on _all_ of my production fs. Which are > spun up on aws from AMIs. > > On Thu, 23 May 2019 at 22:44, Brian West wrote: > >> You could help narrow down the cause, its a known problem we've been >> tracking for a while now, but nobody has narrowed down the exact steps to >> replicate it. >> >> /b >> >> >> On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: >> >>> We are getting this error >>> When we do show registration >>> >>> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >>> hostname='freeswitch'] database disk image is malformed >>> >>> If there a way to fix this without restarting free-switch. >>> >>> Thank you >>> -Jai >>> >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> >> Brian West | Co-founder and Developer >> >> Need Commercial support? email sales at freeswitch.com >> >> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >> >> >> Email: brian at freeswitch.com >> >> Mobile: 918-424-9378 >> >> Website: https://www.FreeSWITCH.com >> >> [image: https://www.facebook.com/signalwireinc?src=email] >> [image: >> https://twitter.com/freeswitch] >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From gregor at infomedia.si Thu May 23 21:55:21 2019 From: gregor at infomedia.si (Gregor Nanger) Date: Thu, 23 May 2019 23:55:21 +0200 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: I have same experience. Maybe it could be narrowed to version. This happens on little bit old version: 1.6.18 V V čet., 23. maj 2019 ob 23:49 je oseba David Villasmil < david.villasmil.work at gmail.com> napisala: > And BTW doesn’t just happens on coredb, but on all the dB files. Random as > to which. > > On Thu, 23 May 2019 at 22:46, David Villasmil < > david.villasmil.work at gmail.com> wrote: > >> This is pretty random, at least for me. I need to stop fs, remove the >> files and start again. This happens on _all_ of my production fs. Which are >> spun up on aws from AMIs. >> >> On Thu, 23 May 2019 at 22:44, Brian West wrote: >> >>> You could help narrow down the cause, its a known problem we've been >>> tracking for a while now, but nobody has narrowed down the exact steps to >>> replicate it. >>> >>> /b >>> >>> >>> On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: >>> >>>> We are getting this error >>>> When we do show registration >>>> >>>> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >>>> hostname='freeswitch'] database disk image is malformed >>>> >>>> If there a way to fix this without restarting free-switch. >>>> >>>> Thank you >>>> -Jai >>>> >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> >>> Brian West | Co-founder and Developer >>> >>> Need Commercial support? email sales at freeswitch.com >>> >>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>> >>> >>> Email: brian at freeswitch.com >>> >>> Mobile: 918-424-9378 >>> >>> Website: https://www.FreeSWITCH.com >>> >>> [image: https://www.facebook.com/signalwireinc?src=email] >>> [image: >>> https://twitter.com/freeswitch] >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> -- >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Gregor Nanger *CTO* t./f.: 00386 (0) 7 6000 308/309 • m:. 00386 (0)41 756485 • Infomedia d.o.o. • Jerebova 3, Novo mesto, Slovenia • www.infomedia.si -------------- next part -------------- An HTML attachment was scrubbed... URL: From max at nysolutions.com Thu May 23 22:21:48 2019 From: max at nysolutions.com (Moishe Grunstein) Date: Thu, 23 May 2019 22:21:48 +0000 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: <13af752e33d24e94a9ab412ee0a6bfa0@nysolutions.com> You should check your hard drive. Thanks, Moishe Grunstein Tornado Computer Systems, Inc. 212.400.7650 888.IPPBX.US Service Request Email: support at nysolutions.com [cid:image001.jpg at 01C72F94.9EE45D60] Computer Networking * Managed Services * IP Video Surveillance * Network Assessments * Web Solutions * Voice over IP * Disaster Recovery * Network Security * Site Surveys * CMS From: FreeSWITCH-users On Behalf Of David Villasmil Sent: Thursday, May 23, 2019 5:49 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Corrupted core.db And BTW doesn’t just happens on coredb, but on all the dB files. Random as to which. On Thu, 23 May 2019 at 22:46, David Villasmil > wrote: This is pretty random, at least for me. I need to stop fs, remove the files and start again. This happens on _all_ of my production fs. Which are spun up on aws from AMIs. On Thu, 23 May 2019 at 22:44, Brian West > wrote: You could help narrow down the cause, its a known problem we've been tracking for a while now, but nobody has narrowed down the exact steps to replicate it. /b On Thu, May 23, 2019 at 4:19 PM Jai Rangi > wrote: We are getting this error When we do show registration switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where hostname='freeswitch'] database disk image is malformed If there a way to fix this without restarting free-switch. Thank you -Jai _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [https://www.facebook.com/signalwireinc?src=email][https://twitter.com/freeswitch] _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 2424 bytes Desc: image001.jpg URL: From brian at freeswitch.com Thu May 23 22:24:45 2019 From: brian at freeswitch.com (Brian West) Date: Thu, 23 May 2019 17:24:45 -0500 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: The version probably won't matter, its something I suspect elsewhere that we need to find, we've yet to find the smoking gun on this one. I suspect a quirk in the system lib of SQLite, maybe we start a google doc and everyone can report their revs, os and system lib versions? /b On Thu, May 23, 2019 at 4:56 PM Gregor Nanger wrote: > I have same experience. Maybe it could be narrowed to version. This > happens on little bit old version: 1.6.18 > > V V čet., 23. maj 2019 ob 23:49 je oseba David Villasmil < > david.villasmil.work at gmail.com> napisala: > >> And BTW doesn’t just happens on coredb, but on all the dB files. Random >> as to which. >> >> On Thu, 23 May 2019 at 22:46, David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> This is pretty random, at least for me. I need to stop fs, remove the >>> files and start again. This happens on _all_ of my production fs. Which are >>> spun up on aws from AMIs. >>> >>> On Thu, 23 May 2019 at 22:44, Brian West wrote: >>> >>>> You could help narrow down the cause, its a known problem we've been >>>> tracking for a while now, but nobody has narrowed down the exact steps to >>>> replicate it. >>>> >>>> /b >>>> >>>> >>>> On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: >>>> >>>>> We are getting this error >>>>> When we do show registration >>>>> >>>>> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >>>>> hostname='freeswitch'] database disk image is malformed >>>>> >>>>> If there a way to fix this without restarting free-switch. >>>>> >>>>> Thank you >>>>> -Jai >>>>> >>>>> >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> >>>> Brian West | Co-founder and Developer >>>> >>>> Need Commercial support? email sales at freeswitch.com >>>> >>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>> >>>> >>>> Email: brian at freeswitch.com >>>> >>>> Mobile: 918-424-9378 >>>> >>>> Website: https://www.FreeSWITCH.com >>>> >>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>> [image: >>>> https://twitter.com/freeswitch] >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> -- >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> >> -- >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > Gregor Nanger > > *CTO* > t./f.: 00386 (0) 7 6000 308/309 • m:. 00386 (0)41 756485 > • Infomedia d.o.o. • Jerebova 3, Novo mesto, Slovenia > • www.infomedia.si > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Thu May 23 22:37:09 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Thu, 23 May 2019 23:37:09 +0100 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: Happens on 1.6.20 as well On Thu, 23 May 2019 at 23:22, Gregor Nanger wrote: > I have same experience. Maybe it could be narrowed to version. This > happens on little bit old version: 1.6.18 > > V V čet., 23. maj 2019 ob 23:49 je oseba David Villasmil < > david.villasmil.work at gmail.com> napisala: > >> And BTW doesn’t just happens on coredb, but on all the dB files. Random >> as to which. >> >> On Thu, 23 May 2019 at 22:46, David Villasmil < >> david.villasmil.work at gmail.com> wrote: >> >>> This is pretty random, at least for me. I need to stop fs, remove the >>> files and start again. This happens on _all_ of my production fs. Which are >>> spun up on aws from AMIs. >>> >>> On Thu, 23 May 2019 at 22:44, Brian West wrote: >>> >>>> You could help narrow down the cause, its a known problem we've been >>>> tracking for a while now, but nobody has narrowed down the exact steps to >>>> replicate it. >>>> >>>> /b >>>> >>>> >>>> On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: >>>> >>>>> We are getting this error >>>>> When we do show registration >>>>> >>>>> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >>>>> hostname='freeswitch'] database disk image is malformed >>>>> >>>>> If there a way to fix this without restarting free-switch. >>>>> >>>>> Thank you >>>>> -Jai >>>>> >>>>> >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> >>>> Brian West | Co-founder and Developer >>>> >>>> Need Commercial support? email sales at freeswitch.com >>>> >>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>> >>>> >>>> Email: brian at freeswitch.com >>>> >>>> Mobile: 918-424-9378 >>>> >>>> Website: https://www.FreeSWITCH.com >>>> >>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>> [image: >>>> https://twitter.com/freeswitch] >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> -- >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> >> -- >> Regards, >> >> David Villasmil >> email: david.villasmil.work at gmail.com >> phone: +34669448337 >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > Gregor Nanger > > *CTO* > t./f.: 00386 (0) 7 6000 308/309 • m:. 00386 (0)41 756485 > • Infomedia d.o.o. • Jerebova 3, Novo mesto, Slovenia > > • www.infomedia.si > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Thu May 23 23:54:19 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Fri, 24 May 2019 00:54:19 +0100 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: Sounds like a plan. On Fri, 24 May 2019 at 00:23, Brian West wrote: > The version probably won't matter, its something I suspect elsewhere that > we need to find, we've yet to find the smoking gun on this one. > > I suspect a quirk in the system lib of SQLite, maybe we start a google doc > and everyone can report their revs, os and system lib versions? > > > /b > > > On Thu, May 23, 2019 at 4:56 PM Gregor Nanger wrote: > >> I have same experience. Maybe it could be narrowed to version. This >> happens on little bit old version: 1.6.18 >> >> V V čet., 23. maj 2019 ob 23:49 je oseba David Villasmil < >> david.villasmil.work at gmail.com> napisala: >> >>> And BTW doesn’t just happens on coredb, but on all the dB files. Random >>> as to which. >>> >>> On Thu, 23 May 2019 at 22:46, David Villasmil < >>> david.villasmil.work at gmail.com> wrote: >>> >>>> This is pretty random, at least for me. I need to stop fs, remove the >>>> files and start again. This happens on _all_ of my production fs. Which are >>>> spun up on aws from AMIs. >>>> >>>> On Thu, 23 May 2019 at 22:44, Brian West wrote: >>>> >>>>> You could help narrow down the cause, its a known problem we've been >>>>> tracking for a while now, but nobody has narrowed down the exact steps to >>>>> replicate it. >>>>> >>>>> /b >>>>> >>>>> >>>>> On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: >>>>> >>>>>> We are getting this error >>>>>> When we do show registration >>>>>> >>>>>> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >>>>>> hostname='freeswitch'] database disk image is malformed >>>>>> >>>>>> If there a way to fix this without restarting free-switch. >>>>>> >>>>>> Thank you >>>>>> -Jai >>>>>> >>>>>> >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> >>>>> >>>>> -- >>>>> >>>>> Brian West | Co-founder and Developer >>>>> >>>>> Need Commercial support? email sales at freeswitch.com >>>>> >>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>> >>>>> >>>>> Email: brian at freeswitch.com >>>>> >>>>> Mobile: 918-424-9378 >>>>> >>>>> Website: https://www.FreeSWITCH.com >>>>> >>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>> [image: >>>>> https://twitter.com/freeswitch] >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> -- >>>> Regards, >>>> >>>> David Villasmil >>>> email: david.villasmil.work at gmail.com >>>> phone: +34669448337 >>>> >>> -- >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> Gregor Nanger >> >> *CTO* >> t./f.: 00386 (0) 7 6000 308/309 • m:. 00386 (0)41 756485 >> • Infomedia d.o.o. • Jerebova 3, Novo mesto, Slovenia >> >> • www.infomedia.si >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From asilva at wirelessmundi.com Thu May 23 22:58:24 2019 From: asilva at wirelessmundi.com (=?UTF-8?Q?Ant=c3=b3nio_Silva?=) Date: Fri, 24 May 2019 00:58:24 +0200 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: <5f1c0eb5-40ef-1b2a-e7eb-9ee28de2e069@wirelessmundi.com> This happen to me too, solve it by change to postgresql, and it was the same it affected core.db and other dbs used from other modules or from lua scripts. In my case, i found out that it happens only when i have sip endpoints with wss enabled using sipml5 js client, i still have some errors with droped connection with postgres but it doesn't corrupt the system. On 24/05/2019 00:37, David Villasmil wrote: > Happens on 1.6.20 as well > > On Thu, 23 May 2019 at 23:22, Gregor Nanger > wrote: > > I have same experience. Maybe it could be narrowed to version.  > This happens on little bit old version: 1.6.18 > > V V čet., 23. maj 2019 ob 23:49 je oseba David Villasmil > > napisala: > > And BTW doesn’t just happens on coredb, but on all the dB > files. Random as to which. > > On Thu, 23 May 2019 at 22:46, David Villasmil > > wrote: > > This is pretty random, at least for me. I need to stop fs, > remove the files and start again. This happens on _all_ of > my production fs. Which are spun up on aws from AMIs. > > On Thu, 23 May 2019 at 22:44, Brian West > > wrote: > > You could help narrow down the cause, its a known > problem we've been tracking for a while now, but > nobody has narrowed down the exact steps to replicate it. > > /b > > > On Thu, May 23, 2019 at 4:19 PM Jai Rangi > > wrote: > > We are getting this error > When we do show registration > > switch_core_sqldb.c:1197 SQL ERR: [select * from > registrations where hostname='freeswitch'] > database disk image is malformed > > If there a way to fix this without restarting > free-switch. > > Thank you > -Jai > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire > https://signalwire.com > Enhance your FreeSWITCH install with disruptive > priced SMS and PSTN services. > Build your next product on our scalable cloud > platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > > FreeSWITCH Solutions | 17345 Civic Drive #2531 > Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > > https://www.facebook.com/signalwireinc?src=email > > https://twitter.com/freeswitch > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire > https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced > SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > > phone: +34669448337 > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > > phone: +34669448337 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire > https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and > PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > > -- > Gregor Nanger > *CTO* > t./f.: 00386 (0) 7 6000 308/309 • m:. 00386 (0)41 756485 > • Infomedia d.o.o. • Jerebova 3, Novo mesto, Slovenia > > > • www.infomedia.si > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire > https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and > PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > > phone: +34669448337 > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Saludos / Regards / Cumprimentos António Silva -------------- next part -------------- An HTML attachment was scrubbed... URL: From jprangi at gmail.com Thu May 23 21:58:15 2019 From: jprangi at gmail.com (Jai Rangi) Date: Thu, 23 May 2019 14:58:15 -0700 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: My best assumption is it happens at startup. For me I restarted FS last night to free-up memory (trust me it has memory leak too, we use lots of LUA scripts if that makes a difference), this is first log I see (at-least in this case). | \ \ /\ / /\ \ /\ / /\ \ /\ / / | | | | | | |/ _ \ | / _ \| '_ \ / __/ _ \| '_ ` _ \ | | \ V V / \ V V / \ V V / _ | |___| | |_| | __/ |__| (_) | | | | _ | (_| (_) | | | | | | | | \_/\_/ \_/\_/ \_/\_/ (_) \____|_|\__,_|\___|\____\___/|_| |_| (_) \___\___/|_| |_| |_| | | | .=======================================================================================================. ^[[m 2019-05-22 23:44:33.327486 [INFO] switch_core.c:2435 FreeSWITCH Version 1.6.16+git~20170407T164913Z~3da6bd0108~64bit (git 3da6bd0 2017-04-07 16:49:13Z 64bit) FreeSWITCH Started Max Sessions [2000] Session Rate [500] SQL [Enabled] 2019-05-22 23:44:33.605347 [ALERT] sofia_presence.c:2909 sofia_presence_sub_callback: endpt is internal 2019-05-22 23:44:34.305393 [DEBUG] switch_core_file.c:334 File /usr/local/freeswitch/share/freeswitch/sounds/music/8000/one_day_amplify_reduced.wav sample rate 44100 doesn't match requested rate 8000 2019-05-22 23:44:34.305393 [WARNING] switch_core_file.c:352 File has 2 channels, muxing to 1 channel will occur. 2019-05-22 23:44:34.665410 [ERR] switch_core_sqldb.c:587 NATIVE SQL ERR [database disk image is malformed] I might be corrupted during shutdown, (we have almost 1000 users on this machine, so lots of registration requests), but I only notice it right after restart. Will gather more incidents and share. Best, -Jai On Thu, May 23, 2019 at 2:24 PM Brian West wrote: > You could help narrow down the cause, its a known problem we've been > tracking for a while now, but nobody has narrowed down the exact steps to > replicate it. > > /b > > > On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: > >> We are getting this error >> When we do show registration >> >> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >> hostname='freeswitch'] database disk image is malformed >> >> If there a way to fix this without restarting free-switch. >> >> Thank you >> -Jai >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Fri May 24 05:34:44 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Fri, 24 May 2019 06:34:44 +0100 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: That might be a point. I also have wss endpoints. The corruption in my case happens at any point, not startup. On Fri, 24 May 2019 at 03:13, António Silva via FreeSWITCH-users < freeswitch-users at lists.freeswitch.org> wrote: > > > > ---------- Forwarded message ---------- > From: "António Silva" > To: freeswitch-users at lists.freeswitch.org > Cc: > Bcc: > Date: Fri, 24 May 2019 00:58:24 +0200 > Subject: Re: [Freeswitch-users] Corrupted core.db > > This happen to me too, solve it by change to postgresql, and it was the > same it affected core.db and other dbs used from other modules or from lua > scripts. > > In my case, i found out that it happens only when i have sip endpoints > with wss enabled using sipml5 js client, i still have some errors with > droped connection with postgres but it doesn't corrupt the system. > > On 24/05/2019 00:37, David Villasmil wrote: > > Happens on 1.6.20 as well > > On Thu, 23 May 2019 at 23:22, Gregor Nanger wrote: > >> I have same experience. Maybe it could be narrowed to version. This >> happens on little bit old version: 1.6.18 >> >> V V čet., 23. maj 2019 ob 23:49 je oseba David Villasmil < >> david.villasmil.work at gmail.com> napisala: >> >>> And BTW doesn’t just happens on coredb, but on all the dB files. Random >>> as to which. >>> >>> On Thu, 23 May 2019 at 22:46, David Villasmil < >>> david.villasmil.work at gmail.com> wrote: >>> >>>> This is pretty random, at least for me. I need to stop fs, remove the >>>> files and start again. This happens on _all_ of my production fs. Which are >>>> spun up on aws from AMIs. >>>> >>>> On Thu, 23 May 2019 at 22:44, Brian West wrote: >>>> >>>>> You could help narrow down the cause, its a known problem we've been >>>>> tracking for a while now, but nobody has narrowed down the exact steps to >>>>> replicate it. >>>>> >>>>> /b >>>>> >>>>> >>>>> On Thu, May 23, 2019 at 4:19 PM Jai Rangi wrote: >>>>> >>>>>> We are getting this error >>>>>> When we do show registration >>>>>> >>>>>> switch_core_sqldb.c:1197 SQL ERR: [select * from registrations where >>>>>> hostname='freeswitch'] database disk image is malformed >>>>>> >>>>>> If there a way to fix this without restarting free-switch. >>>>>> >>>>>> Thank you >>>>>> -Jai >>>>>> >>>>>> >>>>>> >>>>>> _________________________________________________________________________ >>>>>> >>>>>> The FreeSWITCH project is sponsored by SignalWire >>>>>> https://signalwire.com >>>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>>> services. >>>>>> Build your next product on our scalable cloud platform. >>>>>> >>>>>> Join our online community to chat in real time >>>>>> https://signalwire.community >>>>>> >>>>>> Professional FreeSWITCH Services >>>>>> sales at freeswitch.com >>>>>> https://freeswitch.com >>>>>> >>>>>> Official FreeSWITCH Sites >>>>>> https://freeswitch.com/oss >>>>>> https://freeswitch.org/confluence >>>>>> https://cluecon.com >>>>>> >>>>>> FreeSWITCH-users mailing list >>>>>> FreeSWITCH-users at lists.freeswitch.org >>>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>>> UNSUBSCRIBE: >>>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>>> https://freeswitch.com >>>>> >>>>> >>>>> >>>>> -- >>>>> >>>>> Brian West | Co-founder and Developer >>>>> >>>>> Need Commercial support? email sales at freeswitch.com >>>>> >>>>> FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 >>>>> >>>>> >>>>> Email: brian at freeswitch.com >>>>> >>>>> Mobile: 918-424-9378 >>>>> >>>>> Website: https://www.FreeSWITCH.com >>>>> >>>>> [image: https://www.facebook.com/signalwireinc?src=email] >>>>> [image: >>>>> https://twitter.com/freeswitch] >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> -- >>>> Regards, >>>> >>>> David Villasmil >>>> email: david.villasmil.work at gmail.com >>>> phone: +34669448337 >>>> >>> -- >>> Regards, >>> >>> David Villasmil >>> email: david.villasmil.work at gmail.com >>> phone: +34669448337 >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> Gregor Nanger >> >> *CTO* >> t./f.: 00386 (0) 7 6000 308/309 • m:. 00386 (0)41 756485 >> • Infomedia d.o.o. • Jerebova 3, Novo mesto, Slovenia >> >> • www.infomedia.si >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- > Regards, > > David Villasmil > email: david.villasmil.work at gmail.com > phone: +34669448337 > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Servicessales at freeswitch.comhttps://freeswitch.com > > Official FreeSWITCH Siteshttps://freeswitch.com/osshttps://freeswitch.org/confluencehttps://cluecon.com > > FreeSWITCH-users mailing listFreeSWITCH-users at lists.freeswitch.orghttp://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-usershttps://freeswitch.com > > -- > Saludos / Regards / Cumprimentos > António Silva > > > > > ---------- Forwarded message ---------- > From: "António Silva via FreeSWITCH-users" < > freeswitch-users at lists.freeswitch.org> > To: freeswitch-users at lists.freeswitch.org > Cc: > Bcc: > Date: Thu, 23 May 2019 19:13:36 -0700 (PDT) > Subject: Re: [Freeswitch-users] Corrupted core.db > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From cong.wang.itsherpa at gmail.com Fri May 24 07:25:47 2019 From: cong.wang.itsherpa at gmail.com (=?utf-8?B?546L6IGh?=) Date: Fri, 24 May 2019 16:25:47 +0900 Subject: [Freeswitch-users] Registering a Gateway Message-ID: <3573CCAE-6725-466E-9FC6-85C378EC317A@gmail.com> Hey all, I’m trying to regist my freeswitch server to a sip provider to receive calls from my cellphone. In previous situation I connected the sip provider to asterisk, receive sip phone and transport to freeswitch. My sip provider is NTT Hikari from Japan, and I need to connect my server to NTT router directly (a separated net). In Asterisk, it could be registed simply by using only username, but freeswitch need a username and a password for regist, so I got a 403 Forbidden from NTT. Regist setting for Asterisk: register => 0901234567 at ntt/0901234567 [ntt] type=peer context=fromntt host=124.245.0.1 nat=never fromdomain=ntt-west.ne.jp canreinvite=no dtmfmode=inband session-timers=originate session-expires=3600 session-minse=300 session-refresher=uac Gateway setting for FreeSWITCH: And I got this error when I left password blanked: [ERR] sofia.c:3952 ERROR: password param is REQUIRED! Any suggestions for this situation? Regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Fri May 24 08:15:26 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Fri, 24 May 2019 09:15:26 +0100 Subject: [Freeswitch-users] Registering a Gateway In-Reply-To: <3573CCAE-6725-466E-9FC6-85C378EC317A@gmail.com> References: <3573CCAE-6725-466E-9FC6-85C378EC317A@gmail.com> Message-ID: You must set something even if it is not used On Fri, 24 May 2019 at 09:51, 王聡 wrote: > Hey all, > > I’m trying to regist my freeswitch server to a sip provider to receive > calls from my cellphone. In previous situation I connected the sip provider > to asterisk, receive sip phone and transport to freeswitch. > > My sip provider is NTT Hikari from Japan, and I need to connect my server > to NTT router directly (a separated net). > > In Asterisk, it could be registed simply by using only username, but > freeswitch need a username and a password for regist, so I got a 403 > Forbidden from NTT. > > Regist setting for Asterisk: > > register => 0901234567 at ntt/0901234567 > > [ntt] > type=peer > context=fromntt > host=124.245.0.1 > nat=never > fromdomain=ntt-west.ne.jp > canreinvite=no > dtmfmode=inband > session-timers=originate > session-expires=3600 > session-minse=300 > session-refresher=uac > > Gateway setting for FreeSWITCH: > > > > > > > > > > > > > > > > > And I got this error when I left password blanked: > > [ERR] sofia.c:3952 ERROR: password param is REQUIRED! > > Any suggestions for this situation? > > Regards. > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcel.haldemann at convercom.ch Fri May 24 09:04:49 2019 From: marcel.haldemann at convercom.ch (Marcel Haldemann) Date: Fri, 24 May 2019 09:04:49 +0000 Subject: [Freeswitch-users] Set RFC2833 PT on b-leg? Message-ID: Hi Guys, I'm Looking for a possibility to set the payload type for "DTMF via RFC2833" on the b-leg (bridge) per Call. Overwriting the "rfc2833-pt" setting from the Outbound profile. I can't find any variable doing this. I tried to export "rfc2833_pt" on a call, once with "rfc2833-pt" set to "101" in the profile and once without setting the "rfc2833-pt" parameter at all. If "rfc2833-pt" is not set in the profile FreeSwitch just defaults to 101 rather than taking it from the a-leg (what I was hoping for). A variable to instruct Freeswitch to take the same "RFC2833 Payload type" on the B-Leg (bridge) as on the a-leg would also be fine, as this is finally the goal. The reason I need this is: We found that if we use Bypass_media_after_brdige with bypass_media_after_bridge_oldscool and the a-leg uses RFC2833 DTMF with any other payload type than 101, DTMFs don't work after the reInvite. (we have to use oldscool as the not oldscool one isn't working, because the SoftSwitch isn't fetching the sdp and sending it to the end device and not all end-devices handle this properly) For tests we then changed the "rfc2833-pt" to always the value we knew the call will have as pt 96, 100, ... Then all worked fine. The best solution would be to have a variable doing: "useSamePayloadTypeForRfc2833OnBrdige" = "true". Is there any such variable ? The second best Solution would be to parse it out of the m_sdp variable and then have a variable "rfc2833_pt" = "xxx" (using the "export" application to set it on b-leg (bridge)). Is there any such variable ? The only current possible solution I could think is to make Outpundprofiles for all possible PaylaodTypes 96-127 and maybe call them "Outbound96" - "Outbound127", parse the PT from m_sdp and use the proper profile. But this is very ugly :o Any other solutions/suggestions ? Kindly -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at freeswitch.com Fri May 24 10:53:37 2019 From: alex at freeswitch.com (Alexey Sibyakin) Date: Fri, 24 May 2019 19:53:37 +0900 Subject: [Freeswitch-users] Set RFC2833 PT on b-leg? In-Reply-To: References: Message-ID: Hi, If I got you right, the example from vanilla dialplan should help you: but you may need to use export instead of set. Regards, Alex Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, Palo Alto, CA 94303 Email: alex at freeswitch.com Website: https://www.signalwire.com On Fri, May 24, 2019 at 6:25 PM Marcel Haldemann < marcel.haldemann at convercom.ch> wrote: > Hi Guys, > > > > I’m Looking for a possibility to set the payload type for “DTMF via > RFC2833” on the b-leg (bridge) per Call. > > Overwriting the “rfc2833-pt” setting from the Outbound profile. > > > > I can’t find any variable doing this. I tried to export “rfc2833_pt” on a > call, once with “rfc2833-pt” set to “101” in the profile and once without > setting the “rfc2833-pt” parameter at all. > > If “rfc2833-pt” is not set in the profile FreeSwitch just defaults to 101 > rather than taking it from the a-leg (what I was hoping for). > > > > A variable to instruct Freeswitch to take the same “RFC2833 Payload type” > on the B-Leg (bridge) as on the a-leg would also be fine, as this is > finally the goal. > > > > The reason I need this is: > > > > We found that if we use Bypass_media_after_brdige with > bypass_media_after_bridge_oldscool > > and the a-leg uses RFC2833 DTMF with any other payload type than 101, > DTMFs don’t work after the reInvite. (we have to use oldscool as the not > oldscool one isn’t working, because the SoftSwitch isn’t fetching the sdp > and sending it to the end device and not all end-devices handle this > properly) > > > > For tests we then changed the “rfc2833-pt” to always the value we knew the > call will have as pt 96, 100, … > > Then all worked fine. > > > > The best solution would be to have a variable doing: > “useSamePayloadTypeForRfc2833OnBrdige” = “true”. Is there any such variable > ? > > > > The second best Solution would be to parse it out of the m_sdp variable > and then have a variable “rfc2833_pt” = “xxx” (using the “export” > application to set it on b-leg (bridge)). Is there any such variable ? > > > > The only current possible solution I could think is to make > Outpundprofiles for all possible PaylaodTypes 96-127 and maybe call them > “Outbound96” – “Outbound127”, parse the PT from m_sdp and use the proper > profile. But this is very ugly :o > > > > Any other solutions/suggestions ? > > > > Kindly > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From callum.guy at x-on.co.uk Fri May 24 12:54:09 2019 From: callum.guy at x-on.co.uk (Callum Guy) Date: Fri, 24 May 2019 13:54:09 +0100 Subject: [Freeswitch-users] Late SDP causing switch to sendonly mode - one way calls (3PCC?) Message-ID: Hi All, In short I have an established bridged call out to a 3rd party SIP IVR - this IVR appears to be performing 3pcc meaning I am receiving RE-INVITEs w/o SDP as the call plays prompts, goes to queue and when it is answered. For each INVITE FreeSWITCH responds with 200 with SDP and we get an ACK back with SDP. During the queue phase the ACK SDP contains a=sendonly - all previous SDP have implied sendrecv on both sides. All is OK at this stage. When the call is finally answered we get an INVITE w/o SDP and FreeSWITCH responds with SDP including a=sendonly, to which the remote replies a=sendrecv. Hence we get one way audio at the time when the conversation should be starting. Can anyone help explain why FreeSWITCH would be switching to sendonly mode? I have enable_3pcc=true configured but otherwise this is a fairly standard/vanilla configuration. The behaviour I would expect is for FreeSWITCH to continue to omit the attribute and imply sendrecv. Are there specific variables which might allow me to manage the SDP attributes? Please find a trace log attached. Platform: FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit) Linux my.network 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64 GNU/Linux Let me know if I can offer any more details regarding the implementation, thanks, Callum -- *0333 332 0000  |  www.x-on.co.uk   |   **      * X-on is a trading name of Storacall Technology Ltd a limited company registered in England and Wales. Registered Office : Avaland House, 110 London Road, Apsley, Hemel Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. The information in this e-mail is confidential and for use by the addressee(s) only. If you are not the intended recipient, please notify X-on immediately on +44(0)333 332 0000 and delete the message from your computer. If you are not a named addressee you must not use, disclose, disseminate, distribute, copy, print or reply to this email. Views or opinions expressed by an individual within this email may not necessarily reflect the views of X-on or its associated companies. Although X-on routinely screens for viruses, addressees should scan this email and any attachments for viruses. X-on makes no representation or warranty as to the absence of viruses in this email or any attachments. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: sdp-sendonly.log Type: text/x-log Size: 137180 bytes Desc: not available URL: From mike at freeswitch.org Fri May 24 16:19:13 2019 From: mike at freeswitch.org (Mike Jerris) Date: Fri, 24 May 2019 12:19:13 -0400 Subject: [Freeswitch-users] Late SDP causing switch to sendonly mode - one way calls (3PCC?) In-Reply-To: References: Message-ID: <44F04756-DF52-47CE-B37E-739839980189@freeswitch.org> > On May 24, 2019, at 8:54 AM, Callum Guy wrote: > > Hi All, > > In short I have an established bridged call out to a 3rd party SIP IVR - this IVR appears to be performing 3pcc meaning I am receiving RE-INVITEs w/o SDP as the call plays prompts, goes to queue and when it is answered. For each INVITE FreeSWITCH responds with 200 with SDP and we get an ACK back with SDP. During the queue phase the ACK SDP contains a=sendonly - all previous SDP have implied sendrecv on both sides. All is OK at this stage. When the call is finally answered we get an INVITE w/o SDP and FreeSWITCH responds with SDP including a=sendonly, to which the remote replies a=sendrecv. Hence we get one way audio at the time when the conversation should be starting. > > Can anyone help explain why FreeSWITCH would be switching to sendonly mode? I have enable_3pcc=true configured but otherwise this is a fairly standard/vanilla configuration. The behaviour I would expect is for FreeSWITCH to continue to omit the attribute and imply sendrecv. > "During the queue phase the ACK SDP contains a=sendonly” Freeswitch is NOT switching it.. the other side is. > Are there specific variables which might allow me to manage the SDP attributes? > > Please find a trace log attached. > > Platform: > FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit) > Linux my.network 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64 GNU/Linux > > Let me know if I can offer any more details regarding the implementation, thanks, > > Callum > > > > > 0333 332 0000 | www.x-on.co.uk | > X-on is a trading name of Storacall Technology Ltd a limited company registered in England and Wales. > Registered Office : Avaland House, 110 London Road, Apsley, Hemel Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. > The information in this e-mail is confidential and for use by the addressee(s) only. If you are not the intended recipient, please notify X-on immediately on +44(0)333 332 0000 and delete the > message from your computer. If you are not a named addressee you must not use, disclose, disseminate, distribute, copy, print or reply to this email. Views or opinions expressed by an individual > within this email may not necessarily reflect the views of X-on or its associated companies. Although X-on routinely screens for viruses, addressees should scan this email and any attachments > for viruses. X-on makes no representation or warranty as to the absence of viruses in this email or any attachments. > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcel.haldemann at convercom.ch Fri May 24 16:53:55 2019 From: marcel.haldemann at convercom.ch (Marcel Haldemann) Date: Fri, 24 May 2019 16:53:55 +0000 Subject: [Freeswitch-users] Set RFC2833 PT on b-leg? In-Reply-To: References: Message-ID: Hi Alex, Thanks, but this just shows how to parse it, “rtp_payload_number” is just a user-defined variable and no freeswitch variable. At least I can’t find it in the sourceCode or docs somewhere (I also tested and it doesn’t work). What I expected to work is: But it doesn’t. the rfc2833 pt is still 101 on the b-leg. kindly Von: FreeSWITCH-users Im Auftrag von Alexey Sibyakin Gesendet: Freitag, 24. Mai 2019 12:54 An: FreeSWITCH Users Help Betreff: Re: [Freeswitch-users] Set RFC2833 PT on b-leg? Hi, If I got you right, the example from vanilla dialplan should help you: but you may need to use export instead of set. Regards, Alex Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, Palo Alto, CA 94303 Email: alex at freeswitch.com Website: https://www.signalwire.com On Fri, May 24, 2019 at 6:25 PM Marcel Haldemann > wrote: Hi Guys, I’m Looking for a possibility to set the payload type for “DTMF via RFC2833” on the b-leg (bridge) per Call. Overwriting the “rfc2833-pt” setting from the Outbound profile. I can’t find any variable doing this. I tried to export “rfc2833_pt” on a call, once with “rfc2833-pt” set to “101” in the profile and once without setting the “rfc2833-pt” parameter at all. If “rfc2833-pt” is not set in the profile FreeSwitch just defaults to 101 rather than taking it from the a-leg (what I was hoping for). A variable to instruct Freeswitch to take the same “RFC2833 Payload type” on the B-Leg (bridge) as on the a-leg would also be fine, as this is finally the goal. The reason I need this is: We found that if we use Bypass_media_after_brdige with bypass_media_after_bridge_oldscool and the a-leg uses RFC2833 DTMF with any other payload type than 101, DTMFs don’t work after the reInvite. (we have to use oldscool as the not oldscool one isn’t working, because the SoftSwitch isn’t fetching the sdp and sending it to the end device and not all end-devices handle this properly) For tests we then changed the “rfc2833-pt” to always the value we knew the call will have as pt 96, 100, … Then all worked fine. The best solution would be to have a variable doing: “useSamePayloadTypeForRfc2833OnBrdige” = “true”. Is there any such variable ? The second best Solution would be to parse it out of the m_sdp variable and then have a variable “rfc2833_pt” = “xxx” (using the “export” application to set it on b-leg (bridge)). Is there any such variable ? The only current possible solution I could think is to make Outpundprofiles for all possible PaylaodTypes 96-127 and maybe call them “Outbound96” – “Outbound127”, parse the PT from m_sdp and use the proper profile. But this is very ugly :o Any other solutions/suggestions ? Kindly _________________________________________________________________________ The FreeSWITCH project is sponsored by SignalWire https://signalwire.com Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. Build your next product on our scalable cloud platform. Join our online community to chat in real time https://signalwire.community Professional FreeSWITCH Services sales at freeswitch.com https://freeswitch.com Official FreeSWITCH Sites https://freeswitch.com/oss https://freeswitch.org/confluence https://cluecon.com FreeSWITCH-users mailing list FreeSWITCH-users at lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Fri May 24 17:08:47 2019 From: brian at freeswitch.com (Brian West) Date: Fri, 24 May 2019 12:08:47 -0500 Subject: [Freeswitch-users] Set RFC2833 PT on b-leg? In-Reply-To: References: Message-ID: You shouldn't use export for this, and that is a made up variable name. There is no way to specify it. /b On Fri, May 24, 2019 at 11:54 AM Marcel Haldemann < marcel.haldemann at convercom.ch> wrote: > Hi Alex, > > > > Thanks, but this just shows how to parse it, “rtp_payload_number” is just > a user-defined variable and no freeswitch variable. At least I can’t find > it in the sourceCode or docs somewhere (I also tested and it doesn’t work). > > > > What I expected to work is: > > > > expression="a=rtpmap:(\d+)\stelephone-event/8000" break="never"> > > > > > > But it doesn’t. the rfc2833 pt is still 101 on the b-leg. > > > > kindly > > > > > > *Von:* FreeSWITCH-users *Im > Auftrag von *Alexey Sibyakin > *Gesendet:* Freitag, 24. Mai 2019 12:54 > *An:* FreeSWITCH Users Help > *Betreff:* Re: [Freeswitch-users] Set RFC2833 PT on b-leg? > > > > Hi, > > > > If I got you right, the example from vanilla dialplan should help you: > > > > expression="a=rtpmap:(\d+)\stelephone-event/8000" break="never"> > > > > > > > but you may need to use export instead of set. > > > > Regards, > > > > Alex > > Alex Sibyakin | Support Engineer SignalWire | 228 Hamilton Ave 3rd Floor, > Palo Alto, CA 94303 Email: alex at freeswitch.com Website: > https://www.signalwire.com > > > > > > > > On Fri, May 24, 2019 at 6:25 PM Marcel Haldemann < > marcel.haldemann at convercom.ch> wrote: > > Hi Guys, > > > > I’m Looking for a possibility to set the payload type for “DTMF via > RFC2833” on the b-leg (bridge) per Call. > > Overwriting the “rfc2833-pt” setting from the Outbound profile. > > > > I can’t find any variable doing this. I tried to export “rfc2833_pt” on a > call, once with “rfc2833-pt” set to “101” in the profile and once without > setting the “rfc2833-pt” parameter at all. > > If “rfc2833-pt” is not set in the profile FreeSwitch just defaults to 101 > rather than taking it from the a-leg (what I was hoping for). > > > > A variable to instruct Freeswitch to take the same “RFC2833 Payload type” > on the B-Leg (bridge) as on the a-leg would also be fine, as this is > finally the goal. > > > > The reason I need this is: > > > > We found that if we use Bypass_media_after_brdige with > bypass_media_after_bridge_oldscool > > and the a-leg uses RFC2833 DTMF with any other payload type than 101, > DTMFs don’t work after the reInvite. (we have to use oldscool as the not > oldscool one isn’t working, because the SoftSwitch isn’t fetching the sdp > and sending it to the end device and not all end-devices handle this > properly) > > > > For tests we then changed the “rfc2833-pt” to always the value we knew the > call will have as pt 96, 100, … > > Then all worked fine. > > > > The best solution would be to have a variable doing: > “useSamePayloadTypeForRfc2833OnBrdige” = “true”. Is there any such variable > ? > > > > The second best Solution would be to parse it out of the m_sdp variable > and then have a variable “rfc2833_pt” = “xxx” (using the “export” > application to set it on b-leg (bridge)). Is there any such variable ? > > > > The only current possible solution I could think is to make > Outpundprofiles for all possible PaylaodTypes 96-127 and maybe call them > “Outbound96” – “Outbound127”, parse the PT from m_sdp and use the proper > profile. But this is very ugly :o > > > > Any other solutions/suggestions ? > > > > Kindly > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From sagarmalam at gmail.com Sat May 25 05:55:32 2019 From: sagarmalam at gmail.com (sagar malam) Date: Sat, 25 May 2019 11:25:32 +0530 Subject: [Freeswitch-users] Late SDP causing switch to sendonly mode - one way calls (3PCC?) In-Reply-To: <44F04756-DF52-47CE-B37E-739839980189@freeswitch.org> References: <44F04756-DF52-47CE-B37E-739839980189@freeswitch.org> Message-ID: I think your issue is similar to this one : https://freeswitch.org/jira/browse/FS-8573 I am also facing it but with different scenario. On Fri, May 24, 2019 at 10:26 PM Mike Jerris wrote: > > > On May 24, 2019, at 8:54 AM, Callum Guy wrote: > > Hi All, > > In short I have an established bridged call out to a 3rd party SIP IVR - > this IVR appears to be performing 3pcc meaning I am receiving RE-INVITEs > w/o SDP as the call plays prompts, goes to queue and when it is answered. > For each INVITE FreeSWITCH responds with 200 with SDP and we get an ACK > back with SDP. During the queue phase the ACK SDP contains a=sendonly - all > previous SDP have implied sendrecv on both sides. All is OK at this stage. > When the call is finally answered we get an INVITE w/o SDP and FreeSWITCH > responds with SDP including a=sendonly, to which the remote replies > a=sendrecv. Hence we get one way audio at the time when the conversation > should be starting. > > Can anyone help explain why FreeSWITCH would be switching to sendonly > mode? I have enable_3pcc=true configured but otherwise this is a fairly > standard/vanilla configuration. The behaviour I would expect is for > FreeSWITCH to continue to omit the attribute and imply sendrecv. > > > "During the queue phase the ACK SDP contains a=sendonly” > > Freeswitch is NOT switching it.. the other side is. > > > Are there specific variables which might allow me to manage the SDP > attributes? > > Please find a trace log attached. > > Platform: > FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit) > Linux my.network 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) > x86_64 GNU/Linux > > Let me know if I can offer any more details regarding the implementation, > thanks, > > Callum > > > > *0333 332 0000 | www.x-on.co.uk | ** > > * > > X-on is a trading name of Storacall Technology Ltd a limited company > registered in England and Wales. > Registered Office : Avaland House, 110 London Road, Apsley, Hemel > Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. > The information in this e-mail is confidential and for use by the > addressee(s) only. If you are not the intended recipient, please notify > X-on immediately on +44(0)333 332 0000 and delete the > message from your computer. If you are not a named addressee you must not > use, disclose, disseminate, distribute, copy, print or reply to this email. Views > or opinions expressed by an individual > within this email may not necessarily reflect the views of X-on or its > associated companies. Although X-on routinely screens for viruses, > addressees should scan this email and any attachments > for viruses. X-on makes no representation or warranty as to the absence of > viruses in this email or any attachments. > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Thanks, Sagar -------------- next part -------------- An HTML attachment was scrubbed... URL: From euan at ensemblepourladifference.org Mon May 27 08:43:30 2019 From: euan at ensemblepourladifference.org (Euan Millar) Date: Mon, 27 May 2019 09:43:30 +0100 Subject: [Freeswitch-users] Music on hold still plays after answering a call by ESL Inbound from external Node script Message-ID: Hello kind Freeswitch mailing group! I am using ESL to control my calls entirely from a Node application. I am using the 'modesl ' package to create an ESL connection and listen to the FS events and then answer a call if the number matches a dialplan I want to control using the mod_command "uuid_answer." However, when my script answers a call, the music on hold plays in the background, even if I control the channel and am able to play other IVR audio in the call. As soon as my desired IVR commands complete, the music on hold returns in between, and it is quite annoying to hear small snippets of music. Eventually the call hangs up. I am thinking that maybe the call has not actually been answered properly and that FS thinks that it is in fact on hold, and eventually hangs up on it, even though my script appears to have "answered" the call. Can anyone shed any light on this? I think that I am doing something wrong. I had tried to get an Outbound connection to my Node script but it was receiving no events so didn't know when to answer. The only way I could detect and answer the call was by using the Inbound approach to listen to events. I would be very grateful if anyone could give me some advice on this if you recognise my issue. Kind regards, Euan -------------- next part -------------- An HTML attachment was scrubbed... URL: From euan at ensemblepourladifference.org Mon May 27 09:12:25 2019 From: euan at ensemblepourladifference.org (Euan Millar) Date: Mon, 27 May 2019 10:12:25 +0100 Subject: [Freeswitch-users] Music on hold still plays after answering a call by ESL Inbound from external Node script In-Reply-To: References: Message-ID: Ha ha! As soon as I ask for help, I figured it out. The answer was here: https://freeswitch.org/confluence/display/FREESWITCH/mod_event_socket "If you would like to handle incoming calls using inbound mode, you should add the *park* command to your dialplan. Otherwise the dialplan might complete executing before your client can send commands to the event socket. " Thanks anyway and sorry to bother you. All the best, Euan On Mon, May 27, 2019 at 9:43 AM Euan Millar < euan at ensemblepourladifference.org> wrote: > Hello kind Freeswitch mailing group! > > I am using ESL to control my calls entirely from a Node application. > > I am using the 'modesl ' package to > create an ESL connection and listen to the FS events > and > then answer a call if the number matches a dialplan I want to control using > the mod_command "uuid_answer." > > However, when my script answers a call, the music on hold plays in the > background, even if I control the channel and am able to play other IVR > audio in the call. As soon as my desired IVR commands complete, the music > on hold returns in between, and it is quite annoying to hear small snippets > of music. Eventually the call hangs up. > > I am thinking that maybe the call has not actually been answered properly > and that FS thinks that it is in fact on hold, and eventually hangs up on > it, even though my script appears to have "answered" the call. > > Can anyone shed any light on this? I think that I am doing > something wrong. I had tried to get an Outbound > > connection to my Node script but it was receiving no events so didn't know > when to answer. The only way I could detect and answer the call was by > using the Inbound approach to listen to events. > > I would be very grateful if anyone could give me some advice on this if > you recognise my issue. > > Kind regards, > > Euan > > > -- Euan Millar Ensemble Pour La Difference c/o Mindspace 4th Floor 114 Whitechapel High Street London E1 7PT United Kingdom Mobile: +44 (0)7557 394986 -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Mon May 27 09:33:30 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Mon, 27 May 2019 11:33:30 +0200 Subject: [Freeswitch-users] Music on hold still plays after answering a call by ESL Inbound from external Node script In-Reply-To: References: Message-ID: You may want to share you code and commands you call one by one. On Mon, 27 May 2019 at 11:13, Euan Millar wrote: > Hello kind Freeswitch mailing group! > > I am using ESL to control my calls entirely from a Node application. > > I am using the 'modesl ' package to > create an ESL connection and listen to the FS events > and > then answer a call if the number matches a dialplan I want to control using > the mod_command "uuid_answer." > > However, when my script answers a call, the music on hold plays in the > background, even if I control the channel and am able to play other IVR > audio in the call. As soon as my desired IVR commands complete, the music > on hold returns in between, and it is quite annoying to hear small snippets > of music. Eventually the call hangs up. > > I am thinking that maybe the call has not actually been answered properly > and that FS thinks that it is in fact on hold, and eventually hangs up on > it, even though my script appears to have "answered" the call. > > Can anyone shed any light on this? I think that I am doing > something wrong. I had tried to get an Outbound > > connection to my Node script but it was receiving no events so didn't know > when to answer. The only way I could detect and answer the call was by > using the Inbound approach to listen to events. > > I would be very grateful if anyone could give me some advice on this if > you recognise my issue. > > Kind regards, > > Euan > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Mon May 27 10:19:52 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Mon, 27 May 2019 12:19:52 +0200 Subject: [Freeswitch-users] Music on hold still plays after answering a call by ESL Inbound from external Node script In-Reply-To: References: Message-ID: Glad we could “help” by being a sound board :) On Mon, 27 May 2019 at 11:48, Euan Millar wrote: > Ha ha! As soon as I ask for help, I figured it out. The answer was here: > > https://freeswitch.org/confluence/display/FREESWITCH/mod_event_socket > > "If you would like to handle incoming calls using inbound mode, you > should add the *park* command to your dialplan. Otherwise the dialplan > might complete executing before your client can send commands to the event > socket." > > Thanks anyway and sorry to bother you. > > All the best, > > Euan > > On Mon, May 27, 2019 at 9:43 AM Euan Millar < > euan at ensemblepourladifference.org> wrote: > >> Hello kind Freeswitch mailing group! >> >> I am using ESL to control my calls entirely from a Node application. >> >> I am using the 'modesl ' package >> to create an ESL connection and listen to the FS events >> and >> then answer a call if the number matches a dialplan I want to control using >> the mod_command "uuid_answer." >> >> However, when my script answers a call, the music on hold plays in the >> background, even if I control the channel and am able to play other IVR >> audio in the call. As soon as my desired IVR commands complete, the music >> on hold returns in between, and it is quite annoying to hear small snippets >> of music. Eventually the call hangs up. >> >> I am thinking that maybe the call has not actually been answered properly >> and that FS thinks that it is in fact on hold, and eventually hangs up on >> it, even though my script appears to have "answered" the call. >> >> Can anyone shed any light on this? I think that I am doing >> something wrong. I had tried to get an Outbound >> >> connection to my Node script but it was receiving no events so didn't know >> when to answer. The only way I could detect and answer the call was by >> using the Inbound approach to listen to events. >> >> I would be very grateful if anyone could give me some advice on this if >> you recognise my issue. >> >> Kind regards, >> >> Euan >> >> >> > > -- > Euan Millar > > Ensemble Pour La Difference > c/o Mindspace 4th Floor > 114 Whitechapel High Street > > London > > E1 7PT > > United Kingdom > > Mobile: +44 (0)7557 394986 > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From euan at ensemblepourladifference.org Mon May 27 14:47:59 2019 From: euan at ensemblepourladifference.org (Euan Millar) Date: Mon, 27 May 2019 15:47:59 +0100 Subject: [Freeswitch-users] DTMF not working in my installation Message-ID: Hello again, kind Freeswitch group. I am using ESL to control my calls entirely from a Node application. I am using the 'modesl ' package to create an ESL connection and listen to the FS events and then answer a call if the number matches a dialplan I want to control using the mod_command "uuid_answer." I have gotten as far as attempting to recognise DTMF events, but I am getting no DTMF events through. So, I tested my Freeswitch installation using the IVR demo, and it looks like DTMF is not being received by Freeswitch at all. I monitored fs_cli and I can see that the demo is just waiting for digits, even though I can hear them being pressed in my softphone. Is there any particular modules that I need to ensure are installed, or configuration I need to make in order to enable DTMF? In a previous email to this list, I saw a message advising to set the following in sofia.conf. I can see that the property is loaded inside sip_profiles > internal.xml But changing this has had no effect. I still do not get any DTMF events being recognised in fs_cli Many thanks for any help or advice you can provide. Kind regards, Euan -------------- next part -------------- An HTML attachment was scrubbed... URL: From mrjoli021 at gmail.com Tue May 28 00:25:11 2019 From: mrjoli021 at gmail.com (Joli Martinez) Date: Mon, 27 May 2019 20:25:11 -0400 Subject: [Freeswitch-users] wait_for_silence Message-ID: My Dialplan calls an IVR once the IVR picks up it dials the extension. At this point it gets transferred to a Lua script and after the answer() the Lua script waits for silence. session:execute("wait_for_silence", "300 25 10 50000") The problem is that after about 1-2 seconds it detects audio automatically without anyone picking up the phone. I am looking at the cli and the script is paused waiting without anything else executing, then all of a sudden. "2019-05-27 17:05:17.298768 [ERR] switch_ivr_play_say.c:2108 switch_ivr_wait_for_silence: SILENCE DETECTED". Any ideas why this is happening? or what would the correct settings be to make it wait until someone picks up? thanks, -------------- next part -------------- An HTML attachment was scrubbed... URL: From callum.guy at x-on.co.uk Tue May 28 09:20:13 2019 From: callum.guy at x-on.co.uk (Callum Guy) Date: Tue, 28 May 2019 10:20:13 +0100 Subject: [Freeswitch-users] Late SDP causing switch to sendonly mode - one way calls (3PCC?) In-Reply-To: References: <44F04756-DF52-47CE-B37E-739839980189@freeswitch.org> Message-ID: Mike, Sagar, Thanks for your responses. I've understood from this that the consensus is that I am dealing with a misbehaving remote device and as such should not be looking to change anything on my FreeSWITCH setup to resolve. RFC3264 (6.1) suggests that the initial behaviour is acceptable and valid - FreeSWITCH is sending sendrecv but the remote is responding sendonly. f this is triggering the state change in FreeSWITCH would it not be to a state of recvonly as the remote has informed us it will only be sending at this time? If anything I would have thought that the subsequent transaction would result in FreeSWITCH reporting that it is in recvonly mode rather than sendonly? Having said that I can see that with this scenario I am dealing with where all RE-INVITE transactions are late SDP I don't see how we would overcome this configuration FreeSWITCH side. Unfortunately I am have no communication path with the remote provider at this time. On that basis I will have to look at intercepting on our SIP proxy and manipulating the SDP manually to handle this scenario - I'm sure if I prevent the sendonly from coming through then the issue will not surface. I am a little concerned about a blanket change which prevents sendonly on all late SDP requests however I can't immediately see a scenario (i.e. normal call hold) where this would be useful as hold actions should be sent on the RE-INVITE itself. If anyone is aware of a scenario where sendonly on late SDP would be necessary please let me know! Thanks, Callum On Sat, 25 May 2019 at 07:20, sagar malam wrote: > I think your issue is similar to this one : > https://freeswitch.org/jira/browse/FS-8573 > > I am also facing it but with different scenario. > > On Fri, May 24, 2019 at 10:26 PM Mike Jerris wrote: > >> >> >> On May 24, 2019, at 8:54 AM, Callum Guy wrote: >> >> Hi All, >> >> In short I have an established bridged call out to a 3rd party SIP IVR - >> this IVR appears to be performing 3pcc meaning I am receiving RE-INVITEs >> w/o SDP as the call plays prompts, goes to queue and when it is answered. >> For each INVITE FreeSWITCH responds with 200 with SDP and we get an ACK >> back with SDP. During the queue phase the ACK SDP contains a=sendonly - all >> previous SDP have implied sendrecv on both sides. All is OK at this stage. >> When the call is finally answered we get an INVITE w/o SDP and FreeSWITCH >> responds with SDP including a=sendonly, to which the remote replies >> a=sendrecv. Hence we get one way audio at the time when the conversation >> should be starting. >> >> Can anyone help explain why FreeSWITCH would be switching to sendonly >> mode? I have enable_3pcc=true configured but otherwise this is a fairly >> standard/vanilla configuration. The behaviour I would expect is for >> FreeSWITCH to continue to omit the attribute and imply sendrecv. >> >> >> "During the queue phase the ACK SDP contains a=sendonly” >> >> Freeswitch is NOT switching it.. the other side is. >> >> >> Are there specific variables which might allow me to manage the SDP >> attributes? >> >> Please find a trace log attached. >> >> Platform: >> FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit) >> Linux my.network 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) >> x86_64 GNU/Linux >> >> Let me know if I can offer any more details regarding the implementation, >> thanks, >> >> Callum >> >> >> >> *0333 332 0000 | www.x-on.co.uk | ** >> >> * >> >> X-on is a trading name of Storacall Technology Ltd a limited company >> registered in England and Wales. >> Registered Office : Avaland House, 110 London Road, Apsley, Hemel >> Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. >> The information in this e-mail is confidential and for use by the >> addressee(s) only. If you are not the intended recipient, please notify >> X-on immediately on +44(0)333 332 0000 and delete the >> message from your computer. If you are not a named addressee you must not >> use, disclose, disseminate, distribute, copy, print or reply to this email. Views >> or opinions expressed by an individual >> within this email may not necessarily reflect the views of X-on or its >> associated companies. Although X-on routinely screens for viruses, >> addressees should scan this email and any attachments >> for viruses. X-on makes no representation or warranty as to the absence >> of viruses in this email or any attachments. >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > Thanks, > > Sagar > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- *0333 332 0000  |  www.x-on.co.uk   |   **      * X-on is a trading name of Storacall Technology Ltd a limited company registered in England and Wales. Registered Office : Avaland House, 110 London Road, Apsley, Hemel Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. The information in this e-mail is confidential and for use by the addressee(s) only. If you are not the intended recipient, please notify X-on immediately on +44(0)333 332 0000 and delete the message from your computer. If you are not a named addressee you must not use, disclose, disseminate, distribute, copy, print or reply to this email. Views or opinions expressed by an individual within this email may not necessarily reflect the views of X-on or its associated companies. Although X-on routinely screens for viruses, addressees should scan this email and any attachments for viruses. X-on makes no representation or warranty as to the absence of viruses in this email or any attachments. -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at nevian.org Tue May 28 10:10:40 2019 From: me at nevian.org (Serge S. Yuriev) Date: Tue, 28 May 2019 13:10:40 +0300 Subject: [Freeswitch-users] Late SDP causing switch to sendonly mode - one way calls (3PCC?) In-Reply-To: References: <44F04756-DF52-47CE-B37E-739839980189@freeswitch.org> Message-ID: <5023e95c-4e21-ee0b-18f0-7d4d1c5252f0@nevian.org> Hi, I think you have to use something like this towards IVR On 28/05/2019 12:20, Callum Guy wrote: > Mike, Sagar, > > Thanks for your responses. > > I've understood from this that the consensus is that I am dealing with a > misbehaving remote device and as such should not be looking to change > anything on my FreeSWITCH setup to resolve. > > RFC3264 (6.1) suggests that the > initial behaviour is acceptable and valid - FreeSWITCH is sending > sendrecv but the remote is responding sendonly. f this is triggering the > state change in FreeSWITCH would it not be to a state of recvonly as the > remote has informed us it will only be sending at this time? If anything > I would have thought that the subsequent transaction would result in > FreeSWITCH reporting that it is in recvonly mode rather than sendonly? > Having said that I can see that with this scenario I am dealing with > where all RE-INVITE transactions are late SDP I don't see how we would > overcome this configuration FreeSWITCH side. > > Unfortunately I am have no communication path with the remote provider > at this time. On that basis I will have to look at intercepting on our > SIP proxy and manipulating the SDP manually to handle this scenario - > I'm sure if I prevent the sendonly from coming through then the issue > will not surface. I am a little concerned about a blanket change which > prevents sendonly on all late SDP requests however I can't immediately > see a scenario (i.e. normal call hold) where this would be useful as > hold actions should be sent on the RE-INVITE itself. If anyone is aware > of a scenario where sendonly on late SDP would be necessary please let > me know! > > Thanks, > > Callum > > > On Sat, 25 May 2019 at 07:20, sagar malam > wrote: > > I think your issue is similar to this one : > https://freeswitch.org/jira/browse/FS-8573 > > I am also facing it but with different scenario. > > On Fri, May 24, 2019 at 10:26 PM Mike Jerris > wrote: > > > >> On May 24, 2019, at 8:54 AM, Callum Guy > > wrote: >> >> Hi All, >> >> In short I have an established bridged call out to a 3rd party >> SIP IVR - this IVR appears to be performing 3pcc meaning I am >> receiving RE-INVITEs w/o SDP as the call plays prompts, goes >> to queue and when it is answered. For each INVITE FreeSWITCH >> responds with 200 with SDP and we get an ACK back with SDP. >> During the queue phase the ACK SDP contains a=sendonly - all >> previous SDP have implied sendrecv on both sides. All is OK at >> this stage. When the call is finally answered we get an INVITE >> w/o SDP and FreeSWITCH responds with SDP including a=sendonly, >> to which the remote replies a=sendrecv. Hence we get one way >> audio at the time when the conversation should be starting. >> >> Can anyone help explain why FreeSWITCH would be switching to >> sendonly mode? I have enable_3pcc=true configured but >> otherwise this is a fairly standard/vanilla configuration. The >> behaviour I would expect is for FreeSWITCH to continue to omit >> the attribute and imply sendrecv. >> > > "During the queue phase the ACK SDP contains a=sendonly” > > Freeswitch is NOT switching it.. the other side is. > > >> Are there specific variables which might allow me to manage >> the SDP attributes? >> >> Please find a trace log attached. >> >> Platform: >> FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit) >> Linux my.network 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 >> (2019-02-19) x86_64 GNU/Linux >> >> Let me know if I can offer any more details regarding the >> implementation, thanks, >> >> Callum >> >> >> >> *^0333 332 0000  | www.x-on.co.uk   | >> _**_^ >> * >> >> X-on is a trading name of Storacall Technology Ltd a limited >> company registered in England and Wales. >> Registered Office : Avaland House, 110 London Road, Apsley, >> Hemel Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. >> The information in this e-mail is confidential and for use by >> the addressee(s) only. If you are not the intended recipient, >> please notify X-on immediately on +44(0)333 332 0000 and >> delete the >> message from your computer. If you are not a named addressee >> you must not use, disclose, disseminate, distribute, copy, >> print or reply to this email. Views or opinions expressed by >> an individual >> within this email may not necessarily reflect the views of >> X-on or its associated companies. Although X-on routinely >> screens for viruses, addressees should scan this email and any >> attachments >> for viruses. X-on makes no representation or warranty as to >> the absence of viruses in this email or any attachments. >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire >> https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and >> PSTN services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire > https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and > PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > > -- > Thanks, > > Sagar > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > > *^0333 332 0000  | www.x-on.co.uk   | > _**_^ > * > > X-on is a trading name of Storacall Technology Ltd a limited company > registered in England and Wales. > Registered Office : Avaland House, 110 London Road, Apsley, Hemel > Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. > The information in this e-mail is confidential and for use by the > addressee(s) only. If you are not the intended recipient, please notify > X-on immediately on +44(0)333 332 0000 and delete the > message from your computer. If you are not a named addressee you must > not use, disclose, disseminate, distribute, copy, print or reply to this > email. Views or opinions expressed by an individual > within this email may not necessarily reflect the views of X-on or its > associated companies. Although X-on routinely screens for viruses, > addressees should scan this email and any attachments > for viruses. X-on makes no representation or warranty as to the absence > of viruses in this email or any attachments. > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > -- Serge S. Yuriev Senior VoIP engineer From callum.guy at x-on.co.uk Tue May 28 16:05:09 2019 From: callum.guy at x-on.co.uk (Callum Guy) Date: Tue, 28 May 2019 17:05:09 +0100 Subject: [Freeswitch-users] Late SDP causing switch to sendonly mode - one way calls (3PCC?) In-Reply-To: <5023e95c-4e21-ee0b-18f0-7d4d1c5252f0@nevian.org> References: <44F04756-DF52-47CE-B37E-739839980189@freeswitch.org> <5023e95c-4e21-ee0b-18f0-7d4d1c5252f0@nevian.org> Message-ID: Thanks Serge, I'll give this a whirl and see if it works as a temporary solution - really appreciate you pointing out that option On Tue, 28 May 2019 at 12:38, Serge S. Yuriev wrote: > Hi, > > I think you have to use something like this towards IVR > > > > On 28/05/2019 12:20, Callum Guy wrote: > > Mike, Sagar, > > > > Thanks for your responses. > > > > I've understood from this that the consensus is that I am dealing with a > > misbehaving remote device and as such should not be looking to change > > anything on my FreeSWITCH setup to resolve. > > > > RFC3264 (6.1) suggests that the > > initial behaviour is acceptable and valid - FreeSWITCH is sending > > sendrecv but the remote is responding sendonly. f this is triggering the > > state change in FreeSWITCH would it not be to a state of recvonly as the > > remote has informed us it will only be sending at this time? If anything > > I would have thought that the subsequent transaction would result in > > FreeSWITCH reporting that it is in recvonly mode rather than sendonly? > > Having said that I can see that with this scenario I am dealing with > > where all RE-INVITE transactions are late SDP I don't see how we would > > overcome this configuration FreeSWITCH side. > > > > Unfortunately I am have no communication path with the remote provider > > at this time. On that basis I will have to look at intercepting on our > > SIP proxy and manipulating the SDP manually to handle this scenario - > > I'm sure if I prevent the sendonly from coming through then the issue > > will not surface. I am a little concerned about a blanket change which > > prevents sendonly on all late SDP requests however I can't immediately > > see a scenario (i.e. normal call hold) where this would be useful as > > hold actions should be sent on the RE-INVITE itself. If anyone is aware > > of a scenario where sendonly on late SDP would be necessary please let > > me know! > > > > Thanks, > > > > Callum > > > > > > On Sat, 25 May 2019 at 07:20, sagar malam > > wrote: > > > > I think your issue is similar to this one : > > https://freeswitch.org/jira/browse/FS-8573 > > > > I am also facing it but with different scenario. > > > > On Fri, May 24, 2019 at 10:26 PM Mike Jerris > > wrote: > > > > > > > >> On May 24, 2019, at 8:54 AM, Callum Guy >> > wrote: > >> > >> Hi All, > >> > >> In short I have an established bridged call out to a 3rd party > >> SIP IVR - this IVR appears to be performing 3pcc meaning I am > >> receiving RE-INVITEs w/o SDP as the call plays prompts, goes > >> to queue and when it is answered. For each INVITE FreeSWITCH > >> responds with 200 with SDP and we get an ACK back with SDP. > >> During the queue phase the ACK SDP contains a=sendonly - all > >> previous SDP have implied sendrecv on both sides. All is OK at > >> this stage. When the call is finally answered we get an INVITE > >> w/o SDP and FreeSWITCH responds with SDP including a=sendonly, > >> to which the remote replies a=sendrecv. Hence we get one way > >> audio at the time when the conversation should be starting. > >> > >> Can anyone help explain why FreeSWITCH would be switching to > >> sendonly mode? I have enable_3pcc=true configured but > >> otherwise this is a fairly standard/vanilla configuration. The > >> behaviour I would expect is for FreeSWITCH to continue to omit > >> the attribute and imply sendrecv. > >> > > > > "During the queue phase the ACK SDP contains a=sendonly” > > > > Freeswitch is NOT switching it.. the other side is. > > > > > >> Are there specific variables which might allow me to manage > >> the SDP attributes? > >> > >> Please find a trace log attached. > >> > >> Platform: > >> FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 > 64bit) > >> Linux my.network 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 > >> (2019-02-19) x86_64 GNU/Linux > >> > >> Let me know if I can offer any more details regarding the > >> implementation, thanks, > >> > >> Callum > >> > >> > >> > >> *^0333 332 0000 | www.x-on.co.uk | > >> _**_^ > >> * > >> > >> X-on is a trading name of Storacall Technology Ltd a limited > >> company registered in England and Wales. > >> Registered Office : Avaland House, 110 London Road, Apsley, > >> Hemel Hempstead, Herts, HP3 9SD. Company Registration No. > 2578478. > >> The information in this e-mail is confidential and for use by > >> the addressee(s) only. If you are not the intended recipient, > >> please notify X-on immediately on +44(0)333 332 0000 and > >> delete the > >> message from your computer. If you are not a named addressee > >> you must not use, disclose, disseminate, distribute, copy, > >> print or reply to this email. Views or opinions expressed by > >> an individual > >> within this email may not necessarily reflect the views of > >> X-on or its associated companies. Although X-on routinely > >> screens for viruses, addressees should scan this email and any > >> attachments > >> for viruses. X-on makes no representation or warranty as to > >> the absence of viruses in this email or any attachments. > >> > >> > >> > _________________________________________________________________________ > >> > >> The FreeSWITCH project is sponsored by SignalWire > >> https://signalwire.com > >> Enhance your FreeSWITCH install with disruptive priced SMS and > >> PSTN services. > >> Build your next product on our scalable cloud platform. > >> > >> Join our online community to chat in real time > >> https://signalwire.community > >> > >> Professional FreeSWITCH Services > >> sales at freeswitch.com > >> https://freeswitch.com > >> > >> Official FreeSWITCH Sites > >> https://freeswitch.com/oss > >> https://freeswitch.org/confluence > >> https://cluecon.com > >> > >> FreeSWITCH-users mailing list > >> FreeSWITCH-users at lists.freeswitch.org > >> > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > >> UNSUBSCRIBE: > http://lists.freeswitch.org/mailman/options/freeswitch-users > >> https://freeswitch.com > > > > > _________________________________________________________________________ > > > > The FreeSWITCH project is sponsored by SignalWire > > https://signalwire.com > > Enhance your FreeSWITCH install with disruptive priced SMS and > > PSTN services. > > Build your next product on our scalable cloud platform. > > > > Join our online community to chat in real time > > https://signalwire.community > > > > Professional FreeSWITCH Services > > sales at freeswitch.com > > https://freeswitch.com > > > > Official FreeSWITCH Sites > > https://freeswitch.com/oss > > https://freeswitch.org/confluence > > https://cluecon.com > > > > FreeSWITCH-users mailing list > > FreeSWITCH-users at lists.freeswitch.org > > > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > > UNSUBSCRIBE: > http://lists.freeswitch.org/mailman/options/freeswitch-users > > https://freeswitch.com > > > > > > > > -- > > Thanks, > > > > Sagar > > > _________________________________________________________________________ > > > > The FreeSWITCH project is sponsored by SignalWire > https://signalwire.com > > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > > services. > > Build your next product on our scalable cloud platform. > > > > Join our online community to chat in real time > > https://signalwire.community > > > > Professional FreeSWITCH Services > > sales at freeswitch.com > > https://freeswitch.com > > > > Official FreeSWITCH Sites > > https://freeswitch.com/oss > > https://freeswitch.org/confluence > > https://cluecon.com > > > > FreeSWITCH-users mailing list > > FreeSWITCH-users at lists.freeswitch.org > > > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > > UNSUBSCRIBE: > http://lists.freeswitch.org/mailman/options/freeswitch-users > > https://freeswitch.com > > > > > > > > *^0333 332 0000 | www.x-on.co.uk | > > _**_^ > > * > > > > X-on is a trading name of Storacall Technology Ltd a limited company > > registered in England and Wales. > > Registered Office : Avaland House, 110 London Road, Apsley, Hemel > > Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. > > The information in this e-mail is confidential and for use by the > > addressee(s) only. If you are not the intended recipient, please notify > > X-on immediately on +44(0)333 332 0000 and delete the > > message from your computer. If you are not a named addressee you must > > not use, disclose, disseminate, distribute, copy, print or reply to this > > email. Views or opinions expressed by an individual > > within this email may not necessarily reflect the views of X-on or its > > associated companies. Although X-on routinely screens for viruses, > > addressees should scan this email and any attachments > > for viruses. X-on makes no representation or warranty as to the absence > > of viruses in this email or any attachments. > > > > > > _________________________________________________________________________ > > > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > > Build your next product on our scalable cloud platform. > > > > Join our online community to chat in real time > https://signalwire.community > > > > Professional FreeSWITCH Services > > sales at freeswitch.com > > https://freeswitch.com > > > > Official FreeSWITCH Sites > > https://freeswitch.com/oss > > https://freeswitch.org/confluence > > https://cluecon.com > > > > FreeSWITCH-users mailing list > > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > > https://freeswitch.com > > > > -- > Serge S. Yuriev > Senior VoIP engineer > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- *0333 332 0000  |  www.x-on.co.uk   |   **      * X-on is a trading name of Storacall Technology Ltd a limited company registered in England and Wales. Registered Office : Avaland House, 110 London Road, Apsley, Hemel Hempstead, Herts, HP3 9SD. Company Registration No. 2578478. The information in this e-mail is confidential and for use by the addressee(s) only. If you are not the intended recipient, please notify X-on immediately on +44(0)333 332 0000 and delete the message from your computer. If you are not a named addressee you must not use, disclose, disseminate, distribute, copy, print or reply to this email. Views or opinions expressed by an individual within this email may not necessarily reflect the views of X-on or its associated companies. Although X-on routinely screens for viruses, addressees should scan this email and any attachments for viruses. X-on makes no representation or warranty as to the absence of viruses in this email or any attachments. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Tue May 28 18:16:40 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Tue, 28 May 2019 18:16:40 +0000 Subject: [Freeswitch-users] Can't install FS 1.8 on Debian 9.27 Message-ID: I just created a droplet Debian 9.27 (64 bit). Logged in as root and followed the confluence install page: https://freeswitch.org/confluence/display/FREESWITCH/Debian+8+Jessie Which fails: root at debian-fs-test:~# wget -O - https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc | apt-key add - --2019-05-28 18:09:13-- https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc Resolving files.freeswitch.org (files.freeswitch.org)... 190.102.98.174, 2803:d000:fffe::174 Connecting to files.freeswitch.org (files.freeswitch.org)|190.102.98.174|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 3155 (3.1K) [text/plain] Saving to: 'STDOUT' - 100%[===========================================================================================================>] 3.08K --.-KB/s in 0s 2019-05-28 18:09:13 (71.7 MB/s) - written to stdout [3155/3155] OK root at debian-fs-test:~# echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" > /etc/apt/sources.list.d/freeswitch.list root at debian-fs-test:~# echo "deb-src http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" >> /etc/apt/sources.list.d/freeswitch.list root at debian-fs-test:~# root at debian-fs-test:~# root at debian-fs-test:~# apt-get update && apt-get install -y freeswitch-meta-all Get:1 http://security.debian.org stretch/updates InRelease [94.3 kB] Ign:2 http://mirrors.digitalocean.com/debian stretch InRelease Get:3 http://mirrors.digitalocean.com/debian stretch-updates InRelease [91.0 kB] Get:4 http://files.freeswitch.org/repo/deb/freeswitch-1.8 jessie InRelease [3,212 B] Get:5 http://mirrors.digitalocean.com/debian stretch Release [118 kB] Get:6 http://security.debian.org stretch/updates/contrib Sources [1,384 B] Get:7 http://mirrors.digitalocean.com/debian stretch Release.gpg [2,434 B] Get:8 http://security.debian.org stretch/updates/non-free Sources [1,216 B] Get:9 http://security.debian.org stretch/updates/main Sources [205 kB] Get:10 http://security.debian.org stretch/updates/main amd64 Packages [492 kB] Get:11 http://security.debian.org stretch/updates/main Translation-en [219 kB] Get:12 http://security.debian.org stretch/updates/contrib amd64 Packages [1,760 B] Get:13 http://security.debian.org stretch/updates/contrib Translation-en [1,759 B] Get:14 http://security.debian.org stretch/updates/non-free amd64 Packages [1,600 B] Get:15 http://security.debian.org stretch/updates/non-free Translation-en [691 B] Get:16 http://files.freeswitch.org/repo/deb/freeswitch-1.8 jessie/main Sources [4,161 B] Get:17 http://files.freeswitch.org/repo/deb/freeswitch-1.8 jessie/main amd64 Packages [56.9 kB] Get:18 http://mirrors.digitalocean.com/debian stretch-updates/main Sources [13.1 kB] Get:19 http://mirrors.digitalocean.com/debian stretch-updates/main amd64 Packages [27.2 kB] Get:20 http://mirrors.digitalocean.com/debian stretch-updates/main Translation-en [11.2 kB] Get:21 http://mirrors.digitalocean.com/debian stretch/non-free Sources [79.4 kB] Get:22 http://mirrors.digitalocean.com/debian stretch/main Sources [6,745 kB] Get:23 http://mirrors.digitalocean.com/debian stretch/contrib Sources [44.7 kB] Get:24 http://mirrors.digitalocean.com/debian stretch/main amd64 Packages [7,082 kB] Get:25 http://mirrors.digitalocean.com/debian stretch/main Translation-en [5,384 kB] Get:26 http://mirrors.digitalocean.com/debian stretch/contrib amd64 Packages [50.9 kB] Get:27 http://mirrors.digitalocean.com/debian stretch/contrib Translation-en [45.9 kB] Get:28 http://mirrors.digitalocean.com/debian stretch/non-free amd64 Packages [78.3 kB] Get:29 http://mirrors.digitalocean.com/debian stretch/non-free Translation-en [80.3 kB] Fetched 20.9 MB in 5s (3,700 kB/s) Reading package lists... Done Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: freeswitch-meta-all : Depends: freeswitch (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed Depends: freeswitch-meta-codecs (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed Depends: freeswitch-meta-mod-say (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed Depends: freeswitch-mod-abstraction (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed Depends: freeswitch-mod-avmd (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed Depends: freeswitch-mod-av (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed [and many many more] Depends: freeswitch-mod-xml-rpc (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed Depends: freeswitch-mod-xml-scgi (= 1.8.5~6~31281a0~jessie-1~jessie+1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. What am I missing? Thanks, Sean -------------- next part -------------- An HTML attachment was scrubbed... URL: From joel at textplus.com Tue May 28 18:25:58 2019 From: joel at textplus.com (Joel Serrano) Date: Tue, 28 May 2019 11:25:58 -0700 Subject: [Freeswitch-users] Can't install FS 1.8 on Debian 9.27 In-Reply-To: References: Message-ID: On Tue, May 28, 2019 at 11:17 AM Sean Devoy wrote: > I just created a droplet Debian 9.27 (64 bit). > > > > Logged in as root and followed the confluence install page: > https://freeswitch.org/confluence/display/FREESWITCH/Debian+8+Jessie > > > > Which fails: > > > > root at debian-fs-test:~# wget -O - > https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc > | apt-key add - > > --2019-05-28 18:09:13-- > https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc > > Resolving files.freeswitch.org (files.freeswitch.org)... 190.102.98.174, > 2803:d000:fffe::174 > > Connecting to files.freeswitch.org (files.freeswitch.org)|190.102.98.174|:443... > connected. > > HTTP request sent, awaiting response... 200 OK > > Length: 3155 (3.1K) [text/plain] > > Saving to: ‘STDOUT’ > > > > - > 100%[===========================================================================================================>] > 3.08K --.-KB/s in 0s > > > > 2019-05-28 18:09:13 (71.7 MB/s) - written to stdout [3155/3155] > > > > OK > > root at debian-fs-test:~# echo "deb > http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" > > /etc/apt/sources.list.d/freeswitch.list > > root at debian-fs-test:~# echo "deb-src > http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" >> > /etc/apt/sources.list.d/freeswitch.list > Try changing "jessie" for "stretch" in your /etc/apt/sources.list.d/freeswitch.list file and try again. You have to mismatched the version of the OS with the repository. Debian 8 --> jessie Debian 9 --> stretch Right now you are trying to install Debian8-Freeswitch-Packages on Debian9. Cheers, Joel. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdevoy at bizfocused.com Tue May 28 18:32:20 2019 From: sdevoy at bizfocused.com (Sean Devoy) Date: Tue, 28 May 2019 18:32:20 +0000 Subject: [Freeswitch-users] Can't install FS 1.8 on Debian 9.27 In-Reply-To: References: Message-ID: Thanks Joel. I see you updated Confluence already too! From: FreeSWITCH-users On Behalf Of Joel Serrano Sent: Tuesday, May 28, 2019 2:26 PM To: FreeSWITCH Users Help Subject: Re: [Freeswitch-users] Can't install FS 1.8 on Debian 9.27 On Tue, May 28, 2019 at 11:17 AM Sean Devoy > wrote: I just created a droplet Debian 9.27 (64 bit). Logged in as root and followed the confluence install page: https://freeswitch.org/confluence/display/FREESWITCH/Debian+8+Jessie Which fails: root at debian-fs-test:~# wget -O - https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc | apt-key add - --2019-05-28 18:09:13-- https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc Resolving files.freeswitch.org (files.freeswitch.org)... 190.102.98.174, 2803:d000:fffe::174 Connecting to files.freeswitch.org (files.freeswitch.org)|190.102.98.174|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 3155 (3.1K) [text/plain] Saving to: ‘STDOUT’ - 100%[===========================================================================================================>] 3.08K --.-KB/s in 0s 2019-05-28 18:09:13 (71.7 MB/s) - written to stdout [3155/3155] OK root at debian-fs-test:~# echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" > /etc/apt/sources.list.d/freeswitch.list root at debian-fs-test:~# echo "deb-src http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" >> /etc/apt/sources.list.d/freeswitch.list Try changing "jessie" for "stretch" in your /etc/apt/sources.list.d/freeswitch.list file and try again. You have to mismatched the version of the OS with the repository. Debian 8 --> jessie Debian 9 --> stretch Right now you are trying to install Debian8-Freeswitch-Packages on Debian9. Cheers, Joel. -------------- next part -------------- An HTML attachment was scrubbed... URL: From joel at textplus.com Tue May 28 19:22:47 2019 From: joel at textplus.com (Joel Serrano) Date: Tue, 28 May 2019 12:22:47 -0700 Subject: [Freeswitch-users] Can't install FS 1.8 on Debian 9.27 In-Reply-To: References: Message-ID: Actually, I didn't need to, I believe you should be following instead: https://freeswitch.org/confluence/display/FREESWITCH/Debian+9+Stretch On Tue, May 28, 2019 at 11:33 AM Sean Devoy wrote: > Thanks Joel. > > I see you updated Confluence already too! > > > > *From:* FreeSWITCH-users *On > Behalf Of *Joel Serrano > *Sent:* Tuesday, May 28, 2019 2:26 PM > *To:* FreeSWITCH Users Help > *Subject:* Re: [Freeswitch-users] Can't install FS 1.8 on Debian 9.27 > > > > > > > > On Tue, May 28, 2019 at 11:17 AM Sean Devoy wrote: > > I just created a droplet Debian 9.27 (64 bit). > > > > Logged in as root and followed the confluence install page: > https://freeswitch.org/confluence/display/FREESWITCH/Debian+8+Jessie > > > > Which fails: > > > > root at debian-fs-test:~# wget -O - > https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc > | apt-key add - > > --2019-05-28 18:09:13-- > https://files.freeswitch.org/repo/deb/freeswitch-1.8/fsstretch-archive-keyring.asc > > Resolving files.freeswitch.org (files.freeswitch.org)... 190.102.98.174, > 2803:d000:fffe::174 > > Connecting to files.freeswitch.org (files.freeswitch.org)|190.102.98.174|:443... > connected. > > HTTP request sent, awaiting response... 200 OK > > Length: 3155 (3.1K) [text/plain] > > Saving to: ‘STDOUT’ > > > > - > 100%[===========================================================================================================>] > 3.08K --.-KB/s in 0s > > > > 2019-05-28 18:09:13 (71.7 MB/s) - written to stdout [3155/3155] > > > > OK > > root at debian-fs-test:~# echo "deb > http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" > > /etc/apt/sources.list.d/freeswitch.list > > root at debian-fs-test:~# echo "deb-src > http://files.freeswitch.org/repo/deb/freeswitch-1.8/ jessie main" >> > /etc/apt/sources.list.d/freeswitch.list > > > > Try changing "jessie" for "stretch" in your > /etc/apt/sources.list.d/freeswitch.list file and try again. You have to > mismatched the version of the OS with the repository. > > > > Debian 8 --> jessie > > Debian 9 --> stretch > > > > Right now you are trying to install Debian8-Freeswitch-Packages on Debian9. > > > > Cheers, > > Joel. > > > > > > > > > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Tue May 28 19:25:18 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Tue, 28 May 2019 20:25:18 +0100 Subject: [Freeswitch-users] DNS querying Message-ID: Hello, I've been running tests on FS with SRV and A records. It seems to me FS doesn't honor the TTL set on any of those, SRV or A (balanced to multiple records (AWS)). I need some way of FS to use the currently available list of proxies available and i can't find a way of making FS refresh the cache DNS records. Help is appreciated. Thanks! David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From shivalichalke at gmail.com Fri May 24 12:13:25 2019 From: shivalichalke at gmail.com (shivali chalke) Date: Fri, 24 May 2019 05:13:25 -0700 (MST) Subject: [Freeswitch-users] How to load access control list from redis server of freeswitch? Message-ID: <1558700005205-0.post@n2.nabble.com> Hi guys, I am trying to find the solution to load the access control list from redis server. I tried to connect to redis server and execute commands to load ACL as well as with hiredis_raw command but didn't get any success. Can anyone help me on this? -- Sent from: http://freeswitch-users.2379917.n2.nabble.com/ From shivalichalke at gmail.com Fri May 24 12:17:01 2019 From: shivalichalke at gmail.com (shivali chalke) Date: Fri, 24 May 2019 17:47:01 +0530 Subject: [Freeswitch-users] How to load access control list from redis server of freeswitch? Message-ID: Hi guys, I am trying to find the solution to load the access control list from redis server. I tried to connect to redis server and execute commands to load ACL as well as with hiredis_raw command but didn't get any success. Can anyone help me on this? Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: From hiatt8 at gmail.com Fri May 24 12:56:38 2019 From: hiatt8 at gmail.com (jesse hiatt) Date: Fri, 24 May 2019 05:56:38 -0700 Subject: [Freeswitch-users] Issue | Shared Line Message-ID: We have multiple sites that use call groups with the same configuration however, only one site is experiencing any issues. I'm relatively new to FreeSWITCH, so please let me know if there is additional information I can provide. Thanks in advance for any advice. The sites are using FreeSWITCH version 1.2.14 The Polycom phones are using version 3.3.5 Here is the issue I see in the PCAP: [image: Screen Shot 2019-05-24 at 5.55.56 AM.png] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen Shot 2019-05-24 at 5.55.56 AM.png Type: image/png Size: 356457 bytes Desc: not available URL: From amit.k.chaudhuri at gmail.com Tue May 28 10:49:40 2019 From: amit.k.chaudhuri at gmail.com (Amit Chaudhuri) Date: Tue, 28 May 2019 11:49:40 +0100 Subject: [Freeswitch-users] creating conferences Message-ID: Hi, I am trying to create a conference using the fs_cli in order to experiment with the conferencing capabilities. I can issue a 'conference list' command and get (as expected) a message confirming I have no active conferences. I can also issue 'conference xml_list', 'conference commands', 'conference help' and get sensible answers. When I try 'conference dial sofia/3001 12345 test' for example, I get a message: "Conference dial not found". Is it possible to create a conference from the cli? In particular, is it possible to create an empty conference that users can dial into at a later point in time? I've not found any examples which help me, although I have seen an unresolved bug report - FS11133 - that might imply one cannot create empty conferences. Any help appreciated. Regards, Amit From alex.bejan at necam.com Fri May 24 15:00:30 2019 From: alex.bejan at necam.com (Bejan, Alex) Date: Fri, 24 May 2019 15:00:30 +0000 Subject: [Freeswitch-users] [BULK] FreeSWITCH-users Digest, Vol 155, Issue 85 In-Reply-To: References: Message-ID: Try using the following in your profile Worked for me in FS 1.6 along with 3pcc. The message that was previously closely associate to the issue occurrence “Auto Changing port from xxx.xxx.xxx.xxxx:yyyyy to xxx.xxx.xxx.xxxx:yyyyy” was not present anymore after workaround was applied. You may also need rtp_manual_rtp_bugs=accept_any_packets There was a wiki page listing all the rtp workarounds against peer bugs in a single concise document - however seems hard to find now. ---------------------------------------------------------------------- Message: 1 Date: Fri, 24 May 2019 13:54:09 +0100 From: Callum Guy To: FreeSWITCH Users Help Subject: [Freeswitch-users] Late SDP causing switch to sendonly mode - one way calls (3PCC?) Message-ID: Content-Type: text/plain; charset="utf-8" Hi All, In short I have an established bridged call out to a 3rd party SIP IVR - this IVR appears to be performing 3pcc meaning I am receiving RE-INVITEs w/o SDP as the call plays prompts, goes to queue and when it is answered. For each INVITE FreeSWITCH responds with 200 with SDP and we get an ACK back with SDP. During the queue phase the ACK SDP contains a=sendonly - all previous SDP have implied sendrecv on both sides. All is OK at this stage. When the call is finally answered we get an INVITE w/o SDP and FreeSWITCH responds with SDP including a=sendonly, to which the remote replies a=sendrecv. Hence we get one way audio at the time when the conversation should be starting. Can anyone help explain why FreeSWITCH would be switching to sendonly mode? I have enable_3pcc=true configured but otherwise this is a fairly standard/vanilla configuration. The behaviour I would expect is for FreeSWITCH to continue to omit the attribute and imply sendrecv. Are there specific variables which might allow me to manage the SDP attributes? Please find a trace log attached. Platform: FreeSWITCH Version 1.8.5-6-31281a0bf1~64bit (-6-31281a0bf1 64bit) Linux my.network 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64 GNU/Linux Let me know if I can offer any more details regarding the implementation, thanks, Callum -- From frederick at targointernet.com Tue May 28 14:48:05 2019 From: frederick at targointernet.com (=?UTF-8?Q?Fr=c3=a9d=c3=a9rick_Pruneau?=) Date: Tue, 28 May 2019 10:48:05 -0400 Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database In-Reply-To: References: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> Message-ID: <89caf856-79df-46b3-0d35-e0d1af78f2a6@targointernet.com> Thanks for your help. I have found this to remove DDL locks and it works. I don't know if it is a good way: SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE datname = 'freeswitch'; ALTER ROLE $db_user SET bdr.permit_ddl_locking = false; I will check to disable schema management features. Le 19-05-10 à 16 h 26, Mike Jerris a écrit : > If you are using shared db you should be disabling the features for > managing the schema.  The issue is you will need to manually maintain > your schema.  Almost always we manage schema it a way that is > backwards compatible so you can do staged upgrades if you manually add > to the tables. > >> On May 10, 2019, at 5:45 AM, Praveen Chourasia >> > > wrote: >> >> Hi Frédérick, >> >> PostgreSQL BDR uses 'Master-Master' replication and requires locking >> if any of the PostgreSQL BDR nodes (that are in replication cluster)  >> executes DDL SQL queries. It causes the whole cluster to lock as far >> as I remember. >> >> The reason you may be experiencing the database getting locked when >> you restart one of the FreeSWITCH nodes is that FreeSWITCH upon its >> start/restart executes DDL queries. >> >> FreeSWITCH AFAIK unconditionally executes 'DROP TABLE/VIEW...' and >> 'CREATE TABLE/VIEW ...' for tables like 'channels', 'calls', >> 'interfaces', 'tasks' (TABLES) & 'detailed_calls', 'basic_calls' >> (VIEWS) that ultimately leads to PostgreSQL BDR getting locked. >> >> -- >> *Praveen Chourasia* >> >> ------------------------------------------------------------------------ >> *From:*FreeSWITCH-users >> > > on behalf of >> Frédérick Pruneau > > >> *Sent:*Monday, May 6, 2019 7:38 PM >> *To:*freeswitch-users at lists.freeswitch.org >> >> *Subject:*[Freeswitch-users] FS can't reconnect to PostgreSQL database >> Hi guys, >> >> I have an issue with FS unable to reconnect to postgresql database. Here >> is the setup: 2 FreeSWITCH servers with 2 postgresql servers. Each >> freeswitch is connected to 1 postgresql server. DB servers are synced >> with BDR. It was working very well until I restarted freeswitch service >> on one of the servers. Then, I got theses errors showing up on >> freeswitch console: >> >> switch_pgsql.c:384 Query X took too long to complete or database not >> responding. >> >> database is locked against ddl by another node >> >> I followed some guides to remove locks with these commands: >> >> SELECT * FROM pg_stat_activity; >> SELECT pg_terminate_backend(${pid}); >> >> But the issue is still there. Do you have an idea how to fix this issue? >> >> Thanks. >> > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- *Frédérick Pruneau *| Spécialiste VoIP *T * 514.448.0773 * #* 121 *E * frederick at targointernet.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From nneul at mst.edu Fri May 24 01:32:20 2019 From: nneul at mst.edu (Nathan Neulinger) Date: Thu, 23 May 2019 20:32:20 -0500 Subject: [Freeswitch-users] Corrupted core.db In-Reply-To: References: Message-ID: <9de97f6c-e01f-f5ac-eb8d-146fba2d08f5@mst.edu> An HTML attachment was scrubbed... URL: From sandro.bordacchini at nems.it Tue May 28 16:39:52 2019 From: sandro.bordacchini at nems.it (Sandro Bordacchini) Date: Tue, 28 May 2019 18:39:52 +0200 Subject: [Freeswitch-users] refusing t38 in outgoing fax server transmission Message-ID: Hello everyone. I am have a few FS installations interconnected with a voip provider; during outbound fax server transmissions, they told us that we need *to refuse T38 even if offered by the network*. The sdp offer/answer negotiation varies depending on the called number, probably due to a different routing in the voip provider's network. I experience some dropped calls (even before the fax transmission kicks in) using both FS versions 1.4.9 and 1.6.16. This is a successful sdp negotiation (after call is estabilished) First reinvite: REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445856 IN IP4 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: 0..a=X-cap: 1 image udptl t38.. LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069428 IN IP4 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - -..a=ptime:20.. Then, a second reinvite happens: REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445857 IN IP4 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 0 RTP/AVP 0..c=IN IP4 10.198.1.230..m=image 12834 udptl t38..a=X-sqn: 0..a=X-cap: 1 image udptl t38.. LOCAL 488 Then, the last reinvite: REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445858 IN IP4 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: 0..a=X-cap: 1 image udptl t38..m=image 0 udptl t38..c=IN IP4 10.198.1.230.. LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069429 IN IP4 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - -..a=ptime:20..m=image 0 udptl t38.. And the fax is transmitted correctly This is an unsuccessful sdp negotiation: First reinvite REMOTE INVITE with SDP: v=0..o=LucentPCSF 579041281 579041282 IN IP4 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 13302 RTP/AVP 8 96..a=rtpmap:96 telephone-event/8000..a=ptime:10..a=ecan:fb on -..a=Fax..m=image 17522 udptl t38..a=T38FaxVersion:0..a=T38MaxBitRate:14400..a=T38FaxRateManagement:transferredTCF..a=T38FaxMaxBuffer:1800..a=T38FaxMaxDatagram:260..a=T38FaxUdpEC:t38UDPRedundancy..a=ecan:fb on -.. LOCAL 488 and the remote hangs up. My point is that, in case of unsuccessful negotiation, FS receives a reinvite with two "m=" in the sdp, one G711A (port 13302) and one T38 (port 17522). Is it ok for FS to refuse "all the sdp" with 488 just because it has to refuse T38 or it should be configured to refuse only the T38 media? Should remote endpoint send another reinvite with only G711 or only T38 before hanging up? Thanks in advance to whoever read till here :-) Any hints? S. P.s.: This is what i get in the log in the unsuccessful case during the reinvite (1.4.9 code): [...] 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3476 Audio Codec Compare [PCMA:8:8000:10:64000:1]/[PCMA:8:8000:10:64000:1] 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3531 Audio Codec Compare [PCMA:8:8000:10:64000:1] ++++ is saved as a match 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3397 Set telephone-event payload to 96 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3713 Set 2833 dtmf send payload to 96 2019-05-17 11:22:57.498389 [ERR] sofia.c:7065 Reinvite Codec Error! 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send signal sofia/external/ [BREAK] 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send signal sofia/external/ [BREAK] 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:2280 Already using PCMA 2019-05-17 11:22:57.498389 [DEBUG] sofia.c:6444 Channel sofia/external/ entering state [ready][488] 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1053 Send signal sofia/external/ [BREAK] 2019-05-17 11:22:57.638443 [NOTICE] sofia.c:952 Hangup sofia/external/ [CS_EXECUTE] [NORMAL_CLEARING] 2019-05-17 11:22:57.638443 [DEBUG] switch_channel.c:3222 Send signal sofia/external/ [KILL] 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1388 Send signal sofia/external/ [BREAK] 2019-05-17 11:22:57.638443 [DEBUG] mod_spandsp_fax.c:293 FLOW T.30 Status changing to 'The call dropped prematurely' This are the most relevant settings on api originate: [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] [DEBUG] switch_event.c:1688 Parsing variable [absolute_codec_string]=[PCMA at 10i] [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38_request]=[false] [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] and on the external profile t38-passthru is set to false. -- Ing. Sandro Bordacchini / System Engineering and Product Management sandro.bordacchini at nems.it -------------- next part -------------- An HTML attachment was scrubbed... URL: From covici at ccs.covici.com Wed May 29 05:58:06 2019 From: covici at ccs.covici.com (John Covici) Date: Wed, 29 May 2019 01:58:06 -0400 Subject: [Freeswitch-users] having problems configuring source of master Message-ID: Hi. I am having a problem configuring freeswitch master. I have libvpx-1.7.0 but I get the following complaint when running ./configure checking for v8-6.1_static >= 6.1.298... checking for v8fs_static >= 6.1.298... checking for v8 >= 6.1.298... configure: error: You need to either install libv8-6.1-dev (>= 6.1.298), libv8fs-dev (>= 6.1.298) or disable mod_v8 in modules.conf Since I have 7.0 should not this work? Where is it looking for these files? I do have a pc file for this, but its called vpx.pc and had the information for libvpx package, so what am I missing? Thanks in advance for any suggestions. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici wb2una covici at ccs.covici.com From gmaruzz at gmail.com Wed May 29 06:49:35 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Wed, 29 May 2019 08:49:35 +0200 Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database In-Reply-To: <89caf856-79df-46b3-0d35-e0d1af78f2a6@targointernet.com> References: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> <89caf856-79df-46b3-0d35-e0d1af78f2a6@targointernet.com> Message-ID: Fredrick, no, that is a very bad idea. Mike was rwferring to disable the freeswitch feature that manage the db schema (eg, drop and create tables) at startup. This can be configured in vars.conf.xml or in some other xml config file, near where you config the dsn to access the db. So, freeswitch will not emit ddl commands. On Wed, May 29, 2019, 06:54 Frédérick Pruneau wrote: > Thanks for your help. > > I have found this to remove DDL locks and it works. I don't know if it is > a good way: > > SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE datname = > 'freeswitch'; > > ALTER ROLE $db_user SET bdr.permit_ddl_locking = false; > > I will check to disable schema management features. > Le 19-05-10 à 16 h 26, Mike Jerris a écrit : > > If you are using shared db you should be disabling the features for > managing the schema. The issue is you will need to manually maintain your > schema. Almost always we manage schema it a way that is backwards > compatible so you can do staged upgrades if you manually add to the tables. > > On May 10, 2019, at 5:45 AM, Praveen Chourasia < > praveen.chourasia at outlook.com> wrote: > > Hi Frédérick, > > PostgreSQL BDR uses 'Master-Master' replication and requires locking if > any of the PostgreSQL BDR nodes (that are in replication cluster) executes > DDL SQL queries. It causes the whole cluster to lock as far as I remember. > > The reason you may be experiencing the database getting locked when you > restart one of the FreeSWITCH nodes is that FreeSWITCH upon its > start/restart executes DDL queries. > > FreeSWITCH AFAIK unconditionally executes 'DROP TABLE/VIEW...' and 'CREATE > TABLE/VIEW ...' for tables like 'channels', 'calls', 'interfaces', 'tasks' > (TABLES) & 'detailed_calls', 'basic_calls' (VIEWS) that ultimately leads to > PostgreSQL BDR getting locked. > > -- > *Praveen Chourasia* > > ------------------------------ > *From:* FreeSWITCH-users > on behalf of Frédérick Pruneau > *Sent:* Monday, May 6, 2019 7:38 PM > *To:* freeswitch-users at lists.freeswitch.org > *Subject:* [Freeswitch-users] FS can't reconnect to PostgreSQL database > > Hi guys, > > I have an issue with FS unable to reconnect to postgresql database. Here > is the setup: 2 FreeSWITCH servers with 2 postgresql servers. Each > freeswitch is connected to 1 postgresql server. DB servers are synced > with BDR. It was working very well until I restarted freeswitch service > on one of the servers. Then, I got theses errors showing up on > freeswitch console: > > switch_pgsql.c:384 Query X took too long to complete or database not > responding. > > database is locked against ddl by another node > > I followed some guides to remove locks with these commands: > > SELECT * FROM pg_stat_activity; > SELECT pg_terminate_backend(${pid}); > > But the issue is still there. Do you have an idea how to fix this issue? > > Thanks. > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Servicessales at freeswitch.comhttps://freeswitch.com > > Official FreeSWITCH Siteshttps://freeswitch.com/osshttps://freeswitch.org/confluencehttps://cluecon.com > > FreeSWITCH-users mailing listFreeSWITCH-users at lists.freeswitch.orghttp://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-usershttps://freeswitch.com > > -- > *Frédérick Pruneau *| Spécialiste VoIP > > *T * 514.448.0773 * #* 121 > *E * frederick at targointernet.com > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Wed May 29 07:30:47 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Wed, 29 May 2019 09:30:47 +0200 Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database In-Reply-To: References: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> <89caf856-79df-46b3-0d35-e0d1af78f2a6@targointernet.com> Message-ID: actually the parameter is in switch.conf.xml: You will need to uncomment it, andd set it to false -giovanni On Wed, May 29, 2019 at 8:49 AM Giovanni Maruzzelli wrote: > Fredrick, no, that is a very bad idea. > > Mike was rwferring to disable the freeswitch feature that manage the db > schema (eg, drop and create tables) at startup. > > This can be configured in vars.conf.xml or in some other xml config file, > near where you config the dsn to access the db. > > So, freeswitch will not emit ddl commands. > > > > > On Wed, May 29, 2019, 06:54 Frédérick Pruneau > wrote: > >> Thanks for your help. >> >> I have found this to remove DDL locks and it works. I don't know if it is >> a good way: >> >> SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE datname = >> 'freeswitch'; >> >> ALTER ROLE $db_user SET bdr.permit_ddl_locking = false; >> >> I will check to disable schema management features. >> Le 19-05-10 à 16 h 26, Mike Jerris a écrit : >> >> If you are using shared db you should be disabling the features for >> managing the schema. The issue is you will need to manually maintain your >> schema. Almost always we manage schema it a way that is backwards >> compatible so you can do staged upgrades if you manually add to the tables. >> >> On May 10, 2019, at 5:45 AM, Praveen Chourasia < >> praveen.chourasia at outlook.com> wrote: >> >> Hi Frédérick, >> >> PostgreSQL BDR uses 'Master-Master' replication and requires locking if >> any of the PostgreSQL BDR nodes (that are in replication cluster) executes >> DDL SQL queries. It causes the whole cluster to lock as far as I remember. >> >> The reason you may be experiencing the database getting locked when you >> restart one of the FreeSWITCH nodes is that FreeSWITCH upon its >> start/restart executes DDL queries. >> >> FreeSWITCH AFAIK unconditionally executes 'DROP TABLE/VIEW...' and >> 'CREATE TABLE/VIEW ...' for tables like 'channels', 'calls', 'interfaces', >> 'tasks' (TABLES) & 'detailed_calls', 'basic_calls' (VIEWS) that ultimately >> leads to PostgreSQL BDR getting locked. >> >> -- >> *Praveen Chourasia* >> >> ------------------------------ >> *From:* FreeSWITCH-users >> on behalf of Frédérick Pruneau >> *Sent:* Monday, May 6, 2019 7:38 PM >> *To:* freeswitch-users at lists.freeswitch.org >> *Subject:* [Freeswitch-users] FS can't reconnect to PostgreSQL database >> >> Hi guys, >> >> I have an issue with FS unable to reconnect to postgresql database. Here >> is the setup: 2 FreeSWITCH servers with 2 postgresql servers. Each >> freeswitch is connected to 1 postgresql server. DB servers are synced >> with BDR. It was working very well until I restarted freeswitch service >> on one of the servers. Then, I got theses errors showing up on >> freeswitch console: >> >> switch_pgsql.c:384 Query X took too long to complete or database not >> responding. >> >> database is locked against ddl by another node >> >> I followed some guides to remove locks with these commands: >> >> SELECT * FROM pg_stat_activity; >> SELECT pg_terminate_backend(${pid}); >> >> But the issue is still there. Do you have an idea how to fix this issue? >> >> Thanks. >> >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time https://signalwire.community >> >> Professional FreeSWITCH Servicessales at freeswitch.comhttps://freeswitch.com >> >> Official FreeSWITCH Siteshttps://freeswitch.com/osshttps://freeswitch.org/confluencehttps://cluecon.com >> >> FreeSWITCH-users mailing listFreeSWITCH-users at lists.freeswitch.orghttp://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-usershttps://freeswitch.com >> >> -- >> *Frédérick Pruneau *| Spécialiste VoIP >> >> *T * 514.448.0773 * #* 121 >> *E * frederick at targointernet.com >> >> >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > -- Sincerely, Giovanni Maruzzelli OpenTelecom.IT cell: +39 347 266 56 18 -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Wed May 29 08:20:01 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Wed, 29 May 2019 10:20:01 +0200 Subject: [Freeswitch-users] refusing t38 in outgoing fax server transmission In-Reply-To: References: Message-ID: Hello Sandro, so, they want you to send out faxes with T30 in g711? That will be *very* unreliable, you *want* to use T38. Anyway, you want to use PCMA with normal packet size (eg, not 10 ms). You just specify PCMA as absolute_codec string. You do not have to refuse explicitly the call (no 488), you just do not accept t38 fax transmission. So, disable t38 everywhere, and do the fax over g711 (eg, over pcma). That will be very unreliable. T38 has been created to solve that unreliability. If you happen to find a FreeSWITCH book, there is a chapter about faxes. Hope this help, -giovanni On Wed, May 29, 2019 at 6:51 AM Sandro Bordacchini < sandro.bordacchini at nems.it> wrote: > Hello everyone. > > I am have a few FS installations interconnected with a voip provider; > during outbound fax server transmissions, they told us that we need *to > refuse T38 even if offered by the network*. > The sdp offer/answer negotiation varies depending on the called number, > probably due to a different routing in the voip provider's network. > I experience some dropped calls (even before the fax transmission kicks > in) using both FS versions 1.4.9 and 1.6.16. > > This is a successful sdp negotiation (after call is estabilished) > First reinvite: > REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445856 IN IP4 > 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 > 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: > 0..a=X-cap: 1 image udptl t38.. > LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069428 IN IP4 > 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 > RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 > telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - > -..a=ptime:20.. > Then, a second reinvite happens: > REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445857 IN IP4 > 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 0 RTP/AVP 0..c=IN > IP4 10.198.1.230..m=image 12834 udptl t38..a=X-sqn: 0..a=X-cap: 1 image > udptl t38.. > LOCAL 488 > Then, the last reinvite: > REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445858 IN IP4 > 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 > 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: > 0..a=X-cap: 1 image udptl t38..m=image 0 udptl t38..c=IN IP4 10.198.1.230.. > LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069429 IN IP4 > 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 > RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 > telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - > -..a=ptime:20..m=image 0 udptl t38.. > And the fax is transmitted correctly > > This is an unsuccessful sdp negotiation: > First reinvite > REMOTE INVITE with SDP: v=0..o=LucentPCSF 579041281 579041282 IN IP4 > 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 13302 RTP/AVP 8 > 96..a=rtpmap:96 telephone-event/8000..a=ptime:10..a=ecan:fb on > -..a=Fax..m=image 17522 udptl > t38..a=T38FaxVersion:0..a=T38MaxBitRate:14400..a=T38FaxRateManagement:transferredTCF..a=T38FaxMaxBuffer:1800..a=T38FaxMaxDatagram:260..a=T38FaxUdpEC:t38UDPRedundancy..a=ecan:fb > on -.. > LOCAL 488 > and the remote hangs up. > > My point is that, in case of unsuccessful negotiation, FS receives a > reinvite with two "m=" in the sdp, one G711A (port 13302) and one T38 (port > 17522). > Is it ok for FS to refuse "all the sdp" with 488 just because it has to > refuse T38 or it should be configured to refuse only the T38 media? > Should remote endpoint send another reinvite with only G711 or only T38 > before hanging up? > > Thanks in advance to whoever read till here :-) > Any hints? > > S. > > P.s.: > This is what i get in the log in the unsuccessful case during the reinvite > (1.4.9 code): > [...] > 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3476 Audio Codec > Compare [PCMA:8:8000:10:64000:1]/[PCMA:8:8000:10:64000:1] > 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3531 Audio Codec > Compare [PCMA:8:8000:10:64000:1] ++++ is saved as a match > 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3397 Set > telephone-event payload to 96 > 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3713 Set 2833 dtmf > send payload to 96 > 2019-05-17 11:22:57.498389 [ERR] sofia.c:7065 Reinvite Codec Error! > 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send signal > sofia/external/ [BREAK] > 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send signal > sofia/external/ [BREAK] > 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:2280 Already using > PCMA > 2019-05-17 11:22:57.498389 [DEBUG] sofia.c:6444 Channel > sofia/external/ entering state [ready][488] > 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1053 Send signal > sofia/external/ [BREAK] > 2019-05-17 11:22:57.638443 [NOTICE] sofia.c:952 Hangup > sofia/external/ [CS_EXECUTE] [NORMAL_CLEARING] > 2019-05-17 11:22:57.638443 [DEBUG] switch_channel.c:3222 Send signal > sofia/external/ [KILL] > 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1388 Send signal > sofia/external/ [BREAK] > 2019-05-17 11:22:57.638443 [DEBUG] mod_spandsp_fax.c:293 FLOW T.30 Status > changing to 'The call dropped prematurely' > > This are the most relevant settings on api originate: > [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] > [DEBUG] switch_event.c:1688 Parsing variable > [absolute_codec_string]=[PCMA at 10i] > [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] > [DEBUG] switch_event.c:1688 Parsing variable > [fax_enable_t38_request]=[false] > [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] > and on the external profile t38-passthru is set to false. > > > > > -- > > Ing. Sandro Bordacchini / System Engineering and Product Management > sandro.bordacchini at nems.it > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Sincerely, Giovanni Maruzzelli OpenTelecom.IT cell: +39 347 266 56 18 -------------- next part -------------- An HTML attachment was scrubbed... URL: From kaduww at gmail.com Wed May 29 12:37:05 2019 From: kaduww at gmail.com (Carlos Eduardo) Date: Wed, 29 May 2019 09:37:05 -0300 Subject: [Freeswitch-users] How to load access control list from redis server of freeswitch? In-Reply-To: References: Message-ID: Hello Shivali, You can use LUA to read from you redis server and serve the ACL configuration to Freeswitch. https://freeswitch.org/confluence/display/FREESWITCH/Lua+API+Reference Em qua, 29 de mai de 2019 às 00:35, shivali chalke escreveu: > Hi guys, > > I am trying to find the solution to load the access control list from > redis server. I tried to connect to redis server and execute commands to > load ACL as well as with hiredis_raw command but didn't get any success. > Can anyone help me on this? > > > Thanks in advance. > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- *Carlos E. Wagner* *Tecnólogo em Telecomunicações, OCP, dCAA* *E-mail:* *kaduww at gmail.com * *Fone:* +55 48 9981-0894 *Skype:* carlos.e.wagner www.blogdovoip.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From abaci64 at gmail.com Wed May 29 13:02:28 2019 From: abaci64 at gmail.com (Abaci B) Date: Wed, 29 May 2019 09:02:28 -0400 Subject: [Freeswitch-users] creating conferences In-Reply-To: References: Message-ID: You can make a call using originate api with &conference so that it would originate the call and connect it to the conference On Wed, May 29, 2019 at 12:27 AM Amit Chaudhuri wrote: > Hi, > > I am trying to create a conference using the fs_cli in order to > experiment with the conferencing capabilities. I can issue a > 'conference list' command and get (as expected) a message confirming I > have no active conferences. > > I can also issue 'conference xml_list', 'conference commands', > 'conference help' and get sensible answers. > > When I try 'conference dial sofia/3001 12345 test' for example, I get > a message: > > "Conference dial not found". > > Is it possible to create a conference from the cli? > > In particular, is it possible to create an empty conference that users > can dial into at a later point in time? > > I've not found any examples which help me, although I have seen an > unresolved bug report - FS11133 - that might imply one cannot create > empty conferences. > > Any help appreciated. > > Regards, > > Amit > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcel.haldemann at convercom.ch Wed May 29 14:24:49 2019 From: marcel.haldemann at convercom.ch (Marcel Haldemann) Date: Wed, 29 May 2019 14:24:49 +0000 Subject: [Freeswitch-users] EVS Codec module for FreeSwitch ? Message-ID: Hi guys, Is there any change to get an EVS-Codec (https://www.iis.fraunhofer.de/en/ff/amm/communication/evs.html) implementation in FreeSwitch ? EVS is the successor of AMR-WB and As far as I understand it's royalty free for Network Devices (only mobile phone and table manufacturers got to license it, at least for now, and if it changes it can be centrally licensed at mpegla.com), Quote: "EVS Network Devices o Royalties waived during the initial term" from: https://www.mpegla.com/wp-content/uploads/EVSWeb.pdf General Info: https://www.mpegla.com/programs/evs/ Some info from other sources: https://www.businesswire.com/news/home/20170627006588/en/MPEG-LA-Introduces-License-EVS regards, Marcel -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.villasmil.work at gmail.com Wed May 29 19:35:07 2019 From: david.villasmil.work at gmail.com (David Villasmil) Date: Wed, 29 May 2019 20:35:07 +0100 Subject: [Freeswitch-users] creating conferences In-Reply-To: References: Message-ID: Something like (assuming you have a gateway named gw) bgapi originate sofia/gateways/gw/SOME-PHONE-NUMBER &conference(CONFERENCE-NUMBER) Will call that number and put it on that conference. You can do this for multiple numbers to the same conference... On Wed, 29 May 2019 at 14:14, Abaci B wrote: > You can make a call using originate api with &conference so that it would > originate the call and connect it to the conference > > On Wed, May 29, 2019 at 12:27 AM Amit Chaudhuri < > amit.k.chaudhuri at gmail.com> wrote: > >> Hi, >> >> I am trying to create a conference using the fs_cli in order to >> experiment with the conferencing capabilities. I can issue a >> 'conference list' command and get (as expected) a message confirming I >> have no active conferences. >> >> I can also issue 'conference xml_list', 'conference commands', >> 'conference help' and get sensible answers. >> >> When I try 'conference dial sofia/3001 12345 test' for example, I get >> a message: >> >> "Conference dial not found". >> >> Is it possible to create a conference from the cli? >> >> In particular, is it possible to create an empty conference that users >> can dial into at a later point in time? >> >> I've not found any examples which help me, although I have seen an >> unresolved bug report - FS11133 - that might imply one cannot create >> empty conferences. >> >> Any help appreciated. >> >> Regards, >> >> Amit >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Regards, David Villasmil email: david.villasmil.work at gmail.com phone: +34669448337 -------------- next part -------------- An HTML attachment was scrubbed... URL: From frederick at targointernet.com Wed May 29 12:50:57 2019 From: frederick at targointernet.com (=?UTF-8?Q?Fr=c3=a9d=c3=a9rick_Pruneau?=) Date: Wed, 29 May 2019 08:50:57 -0400 Subject: [Freeswitch-users] FS can't reconnect to PostgreSQL database In-Reply-To: References: <838a9cb8-6184-b1b4-3902-36f24ee7141b@targointernet.com> <89caf856-79df-46b3-0d35-e0d1af78f2a6@targointernet.com> Message-ID: Thanks Giovanni, I will fix this ASAP. Thanks all for your support! Le 19-05-29 à 03 h 30, Giovanni Maruzzelli a écrit : > actually the parameter is in switch.conf.xml: > > >     > > You will need to uncomment it, andd set it to false > > -giovanni > > On Wed, May 29, 2019 at 8:49 AM Giovanni Maruzzelli > wrote: > > Fredrick, no, that is a very bad idea. > > Mike was rwferring to disable the freeswitch feature that manage > the db schema (eg, drop and create tables) at startup. > > This can be configured in vars.conf.xml or in some other xml > config file, near where you config the dsn to access the db. > > So, freeswitch will not emit ddl commands. > > > > > On Wed, May 29, 2019, 06:54 Frédérick Pruneau > > > wrote: > > Thanks for your help. > > I have found this to remove DDL locks and it works. I don't > know if it is a good way: > > SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE > datname = 'freeswitch'; > > ALTER ROLE $db_user SET bdr.permit_ddl_locking = false; > > I will check to disable schema management features. > > Le 19-05-10 à 16 h 26, Mike Jerris a écrit : >> If you are using shared db you should be disabling the >> features for managing the schema.  The issue is you will need >> to manually maintain your schema.  Almost always we manage >> schema it a way that is backwards compatible so you can do >> staged upgrades if you manually add to the tables. >> >>> On May 10, 2019, at 5:45 AM, Praveen Chourasia >>> >> > wrote: >>> >>> Hi Frédérick, >>> >>> PostgreSQL BDR uses 'Master-Master' replication and requires >>> locking if any of the PostgreSQL BDR nodes (that are in >>> replication cluster) executes DDL SQL queries. It causes the >>> whole cluster to lock as far as I remember. >>> >>> The reason you may be experiencing the database getting >>> locked when you restart one of the FreeSWITCH nodes is that >>> FreeSWITCH upon its start/restart executes DDL queries. >>> >>> FreeSWITCH AFAIK unconditionally executes 'DROP >>> TABLE/VIEW...' and 'CREATE TABLE/VIEW ...' for tables like >>> 'channels', 'calls', 'interfaces', 'tasks' (TABLES) & >>> 'detailed_calls', 'basic_calls' (VIEWS) that ultimately >>> leads to PostgreSQL BDR getting locked. >>> >>> -- >>> *Praveen Chourasia* >>> >>> ------------------------------------------------------------------------ >>> *From:*FreeSWITCH-users >>> >> > on >>> behalf of Frédérick Pruneau >> > >>> *Sent:*Monday, May 6, 2019 7:38 PM >>> *To:*freeswitch-users at lists.freeswitch.org >>> >>> *Subject:*[Freeswitch-users] FS can't reconnect to >>> PostgreSQL database >>> Hi guys, >>> >>> I have an issue with FS unable to reconnect to postgresql >>> database. Here >>> is the setup: 2 FreeSWITCH servers with 2 postgresql >>> servers. Each >>> freeswitch is connected to 1 postgresql server. DB servers >>> are synced >>> with BDR. It was working very well until I restarted >>> freeswitch service >>> on one of the servers. Then, I got theses errors showing up on >>> freeswitch console: >>> >>> switch_pgsql.c:384 Query X took too long to complete or >>> database not >>> responding. >>> >>> database is locked against ddl by another node >>> >>> I followed some guides to remove locks with these commands: >>> >>> SELECT * FROM pg_stat_activity; >>> SELECT pg_terminate_backend(${pid}); >>> >>> But the issue is still there. Do you have an idea how to fix >>> this issue? >>> >>> Thanks. >>> >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWirehttps://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real timehttps://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > -- > *Frédérick Pruneau *| Spécialiste VoIP > > *T * 514.448.0773 * #* 121 > *E * frederick at targointernet.com > > > > > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire > https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and > PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com > > > > -- > Sincerely, > > Giovanni Maruzzelli > OpenTelecom.IT > cell: +39 347 266 56 18 > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- *Frédérick Pruneau *| Spécialiste VoIP *T * 514.448.0773 * #* 121 *E * frederick at targointernet.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandro.bordacchini at nems.it Wed May 29 09:07:33 2019 From: sandro.bordacchini at nems.it (Sandro Bordacchini) Date: Wed, 29 May 2019 11:07:33 +0200 Subject: [Freeswitch-users] refusing t38 in outgoing fax server transmission In-Reply-To: References: Message-ID: Hi Giovanni. Thanks for your reply. Yes, I know T38 is the way to go with faxes :-) Unfortunately, interconnection specs with this provider are not negotiable. I already have set absolute_codec_string as PCMA (i also tried as PCMA at 10i because the remote reinvite i am receiving has a ptime of 10), i get the same result. As you can see at the bottom of my previous email, i also have set t38 off. I am just wondering if it's possible to configure FS to accept the G711 media and "turn off" the T38 media that have been received in the same sdp (refer to reinvite in the unsuccessful case). That would be really helpful for me but i wasnt able to get that kind of behaviour. Am I missing something? Thanks a lot. S Il giorno mer 29 mag 2019 alle ore 10:20 Giovanni Maruzzelli < gmaruzz at gmail.com> ha scritto: > Hello Sandro, > > so, they want you to send out faxes with T30 in g711? That will be *very* > unreliable, you *want* to use T38. > > Anyway, you want to use PCMA with normal packet size (eg, not 10 ms). You > just specify PCMA as absolute_codec string. > > You do not have to refuse explicitly the call (no 488), you just do not > accept t38 fax transmission. > > So, disable t38 everywhere, and do the fax over g711 (eg, over pcma). > > That will be very unreliable. T38 has been created to solve that > unreliability. > > If you happen to find a FreeSWITCH book, there is a chapter about faxes. > > > Hope this help, > -giovanni > > > On Wed, May 29, 2019 at 6:51 AM Sandro Bordacchini < > sandro.bordacchini at nems.it> wrote: > >> Hello everyone. >> >> I am have a few FS installations interconnected with a voip provider; >> during outbound fax server transmissions, they told us that we need *to >> refuse T38 even if offered by the network*. >> The sdp offer/answer negotiation varies depending on the called number, >> probably due to a different routing in the voip provider's network. >> I experience some dropped calls (even before the fax transmission kicks >> in) using both FS versions 1.4.9 and 1.6.16. >> >> This is a successful sdp negotiation (after call is estabilished) >> First reinvite: >> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445856 IN IP4 >> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >> 0..a=X-cap: 1 image udptl t38.. >> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069428 IN IP4 >> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >> -..a=ptime:20.. >> Then, a second reinvite happens: >> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445857 IN IP4 >> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 0 RTP/AVP 0..c=IN >> IP4 10.198.1.230..m=image 12834 udptl t38..a=X-sqn: 0..a=X-cap: 1 image >> udptl t38.. >> LOCAL 488 >> Then, the last reinvite: >> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445858 IN IP4 >> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >> 0..a=X-cap: 1 image udptl t38..m=image 0 udptl t38..c=IN IP4 10.198.1.230.. >> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069429 IN IP4 >> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >> -..a=ptime:20..m=image 0 udptl t38.. >> And the fax is transmitted correctly >> >> This is an unsuccessful sdp negotiation: >> First reinvite >> REMOTE INVITE with SDP: v=0..o=LucentPCSF 579041281 579041282 IN IP4 >> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 13302 RTP/AVP 8 >> 96..a=rtpmap:96 telephone-event/8000..a=ptime:10..a=ecan:fb on >> -..a=Fax..m=image 17522 udptl >> t38..a=T38FaxVersion:0..a=T38MaxBitRate:14400..a=T38FaxRateManagement:transferredTCF..a=T38FaxMaxBuffer:1800..a=T38FaxMaxDatagram:260..a=T38FaxUdpEC:t38UDPRedundancy..a=ecan:fb >> on -.. >> LOCAL 488 >> and the remote hangs up. >> >> My point is that, in case of unsuccessful negotiation, FS receives a >> reinvite with two "m=" in the sdp, one G711A (port 13302) and one T38 (port >> 17522). >> Is it ok for FS to refuse "all the sdp" with 488 just because it has to >> refuse T38 or it should be configured to refuse only the T38 media? >> Should remote endpoint send another reinvite with only G711 or only T38 >> before hanging up? >> >> Thanks in advance to whoever read till here :-) >> Any hints? >> >> S. >> >> P.s.: >> This is what i get in the log in the unsuccessful case during the >> reinvite (1.4.9 code): >> [...] >> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3476 Audio Codec >> Compare [PCMA:8:8000:10:64000:1]/[PCMA:8:8000:10:64000:1] >> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3531 Audio Codec >> Compare [PCMA:8:8000:10:64000:1] ++++ is saved as a match >> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3397 Set >> telephone-event payload to 96 >> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3713 Set 2833 dtmf >> send payload to 96 >> 2019-05-17 11:22:57.498389 [ERR] sofia.c:7065 Reinvite Codec Error! >> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send signal >> sofia/external/ [BREAK] >> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send signal >> sofia/external/ [BREAK] >> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:2280 Already using >> PCMA >> 2019-05-17 11:22:57.498389 [DEBUG] sofia.c:6444 Channel >> sofia/external/ entering state [ready][488] >> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1053 Send signal >> sofia/external/ [BREAK] >> 2019-05-17 11:22:57.638443 [NOTICE] sofia.c:952 Hangup >> sofia/external/ [CS_EXECUTE] [NORMAL_CLEARING] >> 2019-05-17 11:22:57.638443 [DEBUG] switch_channel.c:3222 Send signal >> sofia/external/ [KILL] >> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1388 Send signal >> sofia/external/ [BREAK] >> 2019-05-17 11:22:57.638443 [DEBUG] mod_spandsp_fax.c:293 FLOW T.30 Status >> changing to 'The call dropped prematurely' >> >> This are the most relevant settings on api originate: >> [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] >> [DEBUG] switch_event.c:1688 Parsing variable >> [absolute_codec_string]=[PCMA at 10i] >> [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] >> [DEBUG] switch_event.c:1688 Parsing variable >> [fax_enable_t38_request]=[false] >> [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] >> and on the external profile t38-passthru is set to false. >> >> >> >> >> -- >> >> Ing. Sandro Bordacchini / System Engineering and Product Management >> sandro.bordacchini at nems.it >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > Sincerely, > > Giovanni Maruzzelli > OpenTelecom.IT > cell: +39 347 266 56 18 > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandro.bordacchini at nems.it Wed May 29 09:08:37 2019 From: sandro.bordacchini at nems.it (Sandro Bordacchini) Date: Wed, 29 May 2019 11:08:37 +0200 Subject: [Freeswitch-users] DTMF not working in my installation In-Reply-To: References: Message-ID: Hi Euan. I think you should probably check how your softphone sends DTMF (usually could be in-band, rfc2833 or SIP Info, and you have set FS to work with rfc2833 dtmf). Setting liberal-dtmf parameter could be of some help sometimes https://freeswitch.org/confluence/display/FREESWITCH/Sofia+Configuration+Files#SofiaConfigurationFiles-liberal-dtmf Hope it helps. SB Il giorno lun 27 mag 2019 alle ore 16:47 Euan Millar < euan at ensemblepourladifference.org> ha scritto: > Hello again, kind Freeswitch group. > > I am using ESL to control my calls entirely from a Node application. I am > using the 'modesl ' package to > create an ESL connection and listen to the FS events > and > then answer a call if the number matches a dialplan I want to control using > the mod_command "uuid_answer." > > I have gotten as far as attempting to recognise DTMF events, but I am > getting no DTMF events through. > > So, I tested my Freeswitch installation using the IVR demo, and it looks > like DTMF is not being received by Freeswitch at all. > I monitored fs_cli and I can see that the demo is just waiting for digits, > even though I can hear them being pressed in my softphone. > > Is there any particular modules that I need to ensure are installed, or > configuration I need to make in order to enable DTMF? > > In a previous email to this list, I saw a message advising to set the > following in sofia.conf. > > > > I can see that the property is loaded inside sip_profiles > internal.xml > > But changing this has had no effect. I still do not get any DTMF events > being recognised in fs_cli > > Many thanks for any help or advice you can provide. > > Kind regards, > > Euan > > > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gmaruzz at gmail.com Wed May 29 23:51:20 2019 From: gmaruzz at gmail.com (Giovanni Maruzzelli) Date: Thu, 30 May 2019 01:51:20 +0200 Subject: [Freeswitch-users] refusing t38 in outgoing fax server transmission In-Reply-To: References: Message-ID: On Thu, May 30, 2019 at 12:46 AM Sandro Bordacchini < sandro.bordacchini at nems.it> wrote: > I am just wondering if it's possible to configure FS to accept the G711 > media and "turn off" the T38 media that have been received in the same sdp > (refer to reinvite in the unsuccessful case). > That would be really helpful for me but i wasnt able to get that kind of > behaviour. > Am I missing something? > Maybe I do not understand what you want to achieve. If you do not act on T38, then also if you are offered it, you will not take it in consideration, and just process the call as a call without T38 If you are "proxying" T38 (eg inbound T38 outbound plain g711), then there are specific settings for it Check both of the links: https://freeswitch.org/confluence/display/FREESWITCH/T.38#T.38-Sofiaprofileparameters https://freeswitch.org/confluence/display/FREESWITCH/mod_spandsp -giovanni > Thanks a lot. > S > > Il giorno mer 29 mag 2019 alle ore 10:20 Giovanni Maruzzelli < > gmaruzz at gmail.com> ha scritto: > >> Hello Sandro, >> >> so, they want you to send out faxes with T30 in g711? That will be *very* >> unreliable, you *want* to use T38. >> >> Anyway, you want to use PCMA with normal packet size (eg, not 10 ms). You >> just specify PCMA as absolute_codec string. >> >> You do not have to refuse explicitly the call (no 488), you just do not >> accept t38 fax transmission. >> >> So, disable t38 everywhere, and do the fax over g711 (eg, over pcma). >> >> That will be very unreliable. T38 has been created to solve that >> unreliability. >> >> If you happen to find a FreeSWITCH book, there is a chapter about faxes. >> >> >> Hope this help, >> -giovanni >> >> >> On Wed, May 29, 2019 at 6:51 AM Sandro Bordacchini < >> sandro.bordacchini at nems.it> wrote: >> >>> Hello everyone. >>> >>> I am have a few FS installations interconnected with a voip provider; >>> during outbound fax server transmissions, they told us that we need *to >>> refuse T38 even if offered by the network*. >>> The sdp offer/answer negotiation varies depending on the called number, >>> probably due to a different routing in the voip provider's network. >>> I experience some dropped calls (even before the fax transmission kicks >>> in) using both FS versions 1.4.9 and 1.6.16. >>> >>> This is a successful sdp negotiation (after call is estabilished) >>> First reinvite: >>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445856 IN IP4 >>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>> 0..a=X-cap: 1 image udptl t38.. >>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069428 IN IP4 >>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>> -..a=ptime:20.. >>> Then, a second reinvite happens: >>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445857 IN IP4 >>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 0 RTP/AVP 0..c=IN >>> IP4 10.198.1.230..m=image 12834 udptl t38..a=X-sqn: 0..a=X-cap: 1 image >>> udptl t38.. >>> LOCAL 488 >>> Then, the last reinvite: >>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445858 IN IP4 >>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>> 0..a=X-cap: 1 image udptl t38..m=image 0 udptl t38..c=IN IP4 10.198.1.230.. >>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069429 IN IP4 >>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>> -..a=ptime:20..m=image 0 udptl t38.. >>> And the fax is transmitted correctly >>> >>> This is an unsuccessful sdp negotiation: >>> First reinvite >>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 579041281 579041282 IN IP4 >>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 13302 RTP/AVP 8 >>> 96..a=rtpmap:96 telephone-event/8000..a=ptime:10..a=ecan:fb on >>> -..a=Fax..m=image 17522 udptl >>> t38..a=T38FaxVersion:0..a=T38MaxBitRate:14400..a=T38FaxRateManagement:transferredTCF..a=T38FaxMaxBuffer:1800..a=T38FaxMaxDatagram:260..a=T38FaxUdpEC:t38UDPRedundancy..a=ecan:fb >>> on -.. >>> LOCAL 488 >>> and the remote hangs up. >>> >>> My point is that, in case of unsuccessful negotiation, FS receives a >>> reinvite with two "m=" in the sdp, one G711A (port 13302) and one T38 (port >>> 17522). >>> Is it ok for FS to refuse "all the sdp" with 488 just because it has to >>> refuse T38 or it should be configured to refuse only the T38 media? >>> Should remote endpoint send another reinvite with only G711 or only T38 >>> before hanging up? >>> >>> Thanks in advance to whoever read till here :-) >>> Any hints? >>> >>> S. >>> >>> P.s.: >>> This is what i get in the log in the unsuccessful case during the >>> reinvite (1.4.9 code): >>> [...] >>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3476 Audio Codec >>> Compare [PCMA:8:8000:10:64000:1]/[PCMA:8:8000:10:64000:1] >>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3531 Audio Codec >>> Compare [PCMA:8:8000:10:64000:1] ++++ is saved as a match >>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3397 Set >>> telephone-event payload to 96 >>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3713 Set 2833 >>> dtmf send payload to 96 >>> 2019-05-17 11:22:57.498389 [ERR] sofia.c:7065 Reinvite Codec Error! >>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>> signal sofia/external/ [BREAK] >>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>> signal sofia/external/ [BREAK] >>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:2280 Already >>> using PCMA >>> 2019-05-17 11:22:57.498389 [DEBUG] sofia.c:6444 Channel >>> sofia/external/ entering state [ready][488] >>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1053 Send >>> signal sofia/external/ [BREAK] >>> 2019-05-17 11:22:57.638443 [NOTICE] sofia.c:952 Hangup >>> sofia/external/ [CS_EXECUTE] [NORMAL_CLEARING] >>> 2019-05-17 11:22:57.638443 [DEBUG] switch_channel.c:3222 Send signal >>> sofia/external/ [KILL] >>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1388 Send >>> signal sofia/external/ [BREAK] >>> 2019-05-17 11:22:57.638443 [DEBUG] mod_spandsp_fax.c:293 FLOW T.30 >>> Status changing to 'The call dropped prematurely' >>> >>> This are the most relevant settings on api originate: >>> [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] >>> [DEBUG] switch_event.c:1688 Parsing variable >>> [absolute_codec_string]=[PCMA at 10i] >>> [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] >>> [DEBUG] switch_event.c:1688 Parsing variable >>> [fax_enable_t38_request]=[false] >>> [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] >>> and on the external profile t38-passthru is set to false. >>> >>> >>> >>> >>> -- >>> >>> Ing. Sandro Bordacchini / System Engineering and Product Management >>> sandro.bordacchini at nems.it >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> Sincerely, >> >> Giovanni Maruzzelli >> OpenTelecom.IT >> cell: +39 347 266 56 18 >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Sincerely, Giovanni Maruzzelli OpenTelecom.IT cell: +39 347 266 56 18 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at freeswitch.com Wed May 29 23:58:02 2019 From: brian at freeswitch.com (Brian West) Date: Wed, 29 May 2019 18:58:02 -0500 Subject: [Freeswitch-users] refusing t38 in outgoing fax server transmission In-Reply-To: References: Message-ID: Update, this has been fixed for quite a while. On Wed, May 29, 2019 at 6:52 PM Giovanni Maruzzelli wrote: > On Thu, May 30, 2019 at 12:46 AM Sandro Bordacchini < > sandro.bordacchini at nems.it> wrote: > >> I am just wondering if it's possible to configure FS to accept the G711 >> media and "turn off" the T38 media that have been received in the same sdp >> (refer to reinvite in the unsuccessful case). >> That would be really helpful for me but i wasnt able to get that kind of >> behaviour. >> Am I missing something? >> > > Maybe I do not understand what you want to achieve. If you do not act on > T38, then also if you are offered it, you will not take it in > consideration, and just process the call as a call without T38 > > If you are "proxying" T38 (eg inbound T38 outbound plain g711), then there > are specific settings for it > > Check both of the links: > > > https://freeswitch.org/confluence/display/FREESWITCH/T.38#T.38-Sofiaprofileparameters > > https://freeswitch.org/confluence/display/FREESWITCH/mod_spandsp > > -giovanni > > >> Thanks a lot. >> S >> >> Il giorno mer 29 mag 2019 alle ore 10:20 Giovanni Maruzzelli < >> gmaruzz at gmail.com> ha scritto: >> >>> Hello Sandro, >>> >>> so, they want you to send out faxes with T30 in g711? That will be >>> *very* unreliable, you *want* to use T38. >>> >>> Anyway, you want to use PCMA with normal packet size (eg, not 10 ms). >>> You just specify PCMA as absolute_codec string. >>> >>> You do not have to refuse explicitly the call (no 488), you just do not >>> accept t38 fax transmission. >>> >>> So, disable t38 everywhere, and do the fax over g711 (eg, over pcma). >>> >>> That will be very unreliable. T38 has been created to solve that >>> unreliability. >>> >>> If you happen to find a FreeSWITCH book, there is a chapter about faxes. >>> >>> >>> Hope this help, >>> -giovanni >>> >>> >>> On Wed, May 29, 2019 at 6:51 AM Sandro Bordacchini < >>> sandro.bordacchini at nems.it> wrote: >>> >>>> Hello everyone. >>>> >>>> I am have a few FS installations interconnected with a voip provider; >>>> during outbound fax server transmissions, they told us that we need *to >>>> refuse T38 even if offered by the network*. >>>> The sdp offer/answer negotiation varies depending on the called number, >>>> probably due to a different routing in the voip provider's network. >>>> I experience some dropped calls (even before the fax transmission kicks >>>> in) using both FS versions 1.4.9 and 1.6.16. >>>> >>>> This is a successful sdp negotiation (after call is estabilished) >>>> First reinvite: >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445856 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>>> 0..a=X-cap: 1 image udptl t38.. >>>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069428 IN IP4 >>>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>>> -..a=ptime:20.. >>>> Then, a second reinvite happens: >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445857 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 0 RTP/AVP 0..c=IN >>>> IP4 10.198.1.230..m=image 12834 udptl t38..a=X-sqn: 0..a=X-cap: 1 image >>>> udptl t38.. >>>> LOCAL 488 >>>> Then, the last reinvite: >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445858 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>>> 0..a=X-cap: 1 image udptl t38..m=image 0 udptl t38..c=IN IP4 10.198.1.230.. >>>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069429 IN IP4 >>>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>>> -..a=ptime:20..m=image 0 udptl t38.. >>>> And the fax is transmitted correctly >>>> >>>> This is an unsuccessful sdp negotiation: >>>> First reinvite >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 579041281 579041282 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 13302 RTP/AVP 8 >>>> 96..a=rtpmap:96 telephone-event/8000..a=ptime:10..a=ecan:fb on >>>> -..a=Fax..m=image 17522 udptl >>>> t38..a=T38FaxVersion:0..a=T38MaxBitRate:14400..a=T38FaxRateManagement:transferredTCF..a=T38FaxMaxBuffer:1800..a=T38FaxMaxDatagram:260..a=T38FaxUdpEC:t38UDPRedundancy..a=ecan:fb >>>> on -.. >>>> LOCAL 488 >>>> and the remote hangs up. >>>> >>>> My point is that, in case of unsuccessful negotiation, FS receives a >>>> reinvite with two "m=" in the sdp, one G711A (port 13302) and one T38 (port >>>> 17522). >>>> Is it ok for FS to refuse "all the sdp" with 488 just because it has to >>>> refuse T38 or it should be configured to refuse only the T38 media? >>>> Should remote endpoint send another reinvite with only G711 or only T38 >>>> before hanging up? >>>> >>>> Thanks in advance to whoever read till here :-) >>>> Any hints? >>>> >>>> S. >>>> >>>> P.s.: >>>> This is what i get in the log in the unsuccessful case during the >>>> reinvite (1.4.9 code): >>>> [...] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3476 Audio Codec >>>> Compare [PCMA:8:8000:10:64000:1]/[PCMA:8:8000:10:64000:1] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3531 Audio Codec >>>> Compare [PCMA:8:8000:10:64000:1] ++++ is saved as a match >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3397 Set >>>> telephone-event payload to 96 >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3713 Set 2833 >>>> dtmf send payload to 96 >>>> 2019-05-17 11:22:57.498389 [ERR] sofia.c:7065 Reinvite Codec Error! >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:2280 Already >>>> using PCMA >>>> 2019-05-17 11:22:57.498389 [DEBUG] sofia.c:6444 Channel >>>> sofia/external/ entering state [ready][488] >>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1053 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.638443 [NOTICE] sofia.c:952 Hangup >>>> sofia/external/ [CS_EXECUTE] [NORMAL_CLEARING] >>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_channel.c:3222 Send signal >>>> sofia/external/ [KILL] >>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1388 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.638443 [DEBUG] mod_spandsp_fax.c:293 FLOW T.30 >>>> Status changing to 'The call dropped prematurely' >>>> >>>> This are the most relevant settings on api originate: >>>> [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] >>>> [DEBUG] switch_event.c:1688 Parsing variable >>>> [absolute_codec_string]=[PCMA at 10i] >>>> [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] >>>> [DEBUG] switch_event.c:1688 Parsing variable >>>> [fax_enable_t38_request]=[false] >>>> [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] >>>> and on the external profile t38-passthru is set to false. >>>> >>>> >>>> >>>> >>>> -- >>>> >>>> Ing. Sandro Bordacchini / System Engineering and Product Management >>>> sandro.bordacchini at nems.it >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> Sincerely, >>> >>> Giovanni Maruzzelli >>> OpenTelecom.IT >>> cell: +39 347 266 56 18 >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > Sincerely, > > Giovanni Maruzzelli > OpenTelecom.IT > cell: +39 347 266 56 18 > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- Brian West | Co-founder and Developer Need Commercial support? email sales at freeswitch.com FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 Email: brian at freeswitch.com Mobile: 918-424-9378 Website: https://www.FreeSWITCH.com [image: https://www.facebook.com/signalwireinc?src=email] [image: https://twitter.com/freeswitch] -------------- next part -------------- An HTML attachment was scrubbed... URL: From akaccr at gmail.com Wed May 29 22:03:23 2019 From: akaccr at gmail.com (Shishir Pokharel) Date: Wed, 29 May 2019 15:03:23 -0700 Subject: [Freeswitch-users] creating conferences In-Reply-To: References: Message-ID: Do you have a corresponding dialplan configured for that context? to send the call to specified conference profile? /Shishir On Tue, May 28, 2019 at 8:35 PM Amit Chaudhuri wrote: > Hi, > > I am trying to create a conference using the fs_cli in order to > experiment with the conferencing capabilities. I can issue a > 'conference list' command and get (as expected) a message confirming I > have no active conferences. > > I can also issue 'conference xml_list', 'conference commands', > 'conference help' and get sensible answers. > > When I try 'conference dial sofia/3001 12345 test' for example, I get > a message: > > "Conference dial not found". > > Is it possible to create a conference from the cli? > > In particular, is it possible to create an empty conference that users > can dial into at a later point in time? > > I've not found any examples which help me, although I have seen an > unresolved bug report - FS11133 - that might imply one cannot create > empty conferences. > > Any help appreciated. > > Regards, > > Amit > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandro.bordacchini at nems.it Thu May 30 12:30:57 2019 From: sandro.bordacchini at nems.it (Sandro Bordacchini) Date: Thu, 30 May 2019 14:30:57 +0200 Subject: [Freeswitch-users] refusing t38 in outgoing fax server transmission In-Reply-To: References: Message-ID: Hello Brian, thanks for your reply. Can you point me out to the bug so i can check in which versions it has been fixed? Thanks a lot. S Il giorno gio 30 mag 2019 alle ore 01:58 Brian West ha scritto: > Update, this has been fixed for quite a while. > > On Wed, May 29, 2019 at 6:52 PM Giovanni Maruzzelli > wrote: > >> On Thu, May 30, 2019 at 12:46 AM Sandro Bordacchini < >> sandro.bordacchini at nems.it> wrote: >> >>> I am just wondering if it's possible to configure FS to accept the G711 >>> media and "turn off" the T38 media that have been received in the same sdp >>> (refer to reinvite in the unsuccessful case). >>> That would be really helpful for me but i wasnt able to get that kind of >>> behaviour. >>> Am I missing something? >>> >> >> Maybe I do not understand what you want to achieve. If you do not act on >> T38, then also if you are offered it, you will not take it in >> consideration, and just process the call as a call without T38 >> >> If you are "proxying" T38 (eg inbound T38 outbound plain g711), then >> there are specific settings for it >> >> Check both of the links: >> >> >> https://freeswitch.org/confluence/display/FREESWITCH/T.38#T.38-Sofiaprofileparameters >> >> https://freeswitch.org/confluence/display/FREESWITCH/mod_spandsp >> >> -giovanni >> >> >>> Thanks a lot. >>> S >>> >>> Il giorno mer 29 mag 2019 alle ore 10:20 Giovanni Maruzzelli < >>> gmaruzz at gmail.com> ha scritto: >>> >>>> Hello Sandro, >>>> >>>> so, they want you to send out faxes with T30 in g711? That will be >>>> *very* unreliable, you *want* to use T38. >>>> >>>> Anyway, you want to use PCMA with normal packet size (eg, not 10 ms). >>>> You just specify PCMA as absolute_codec string. >>>> >>>> You do not have to refuse explicitly the call (no 488), you just do not >>>> accept t38 fax transmission. >>>> >>>> So, disable t38 everywhere, and do the fax over g711 (eg, over pcma). >>>> >>>> That will be very unreliable. T38 has been created to solve that >>>> unreliability. >>>> >>>> If you happen to find a FreeSWITCH book, there is a chapter about faxes. >>>> >>>> >>>> Hope this help, >>>> -giovanni >>>> >>>> >>>> On Wed, May 29, 2019 at 6:51 AM Sandro Bordacchini < >>>> sandro.bordacchini at nems.it> wrote: >>>> >>>>> Hello everyone. >>>>> >>>>> I am have a few FS installations interconnected with a voip provider; >>>>> during outbound fax server transmissions, they told us that we need *to >>>>> refuse T38 even if offered by the network*. >>>>> The sdp offer/answer negotiation varies depending on the called >>>>> number, probably due to a different routing in the voip provider's network. >>>>> I experience some dropped calls (even before the fax transmission >>>>> kicks in) using both FS versions 1.4.9 and 1.6.16. >>>>> >>>>> This is a successful sdp negotiation (after call is estabilished) >>>>> First reinvite: >>>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445856 IN IP4 >>>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>>>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>>>> 0..a=X-cap: 1 image udptl t38.. >>>>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069428 IN IP4 >>>>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>>>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>>>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>>>> -..a=ptime:20.. >>>>> Then, a second reinvite happens: >>>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445857 IN IP4 >>>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 0 RTP/AVP 0..c=IN >>>>> IP4 10.198.1.230..m=image 12834 udptl t38..a=X-sqn: 0..a=X-cap: 1 image >>>>> udptl t38.. >>>>> LOCAL 488 >>>>> Then, the last reinvite: >>>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445858 IN IP4 >>>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>>>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>>>> 0..a=X-cap: 1 image udptl t38..m=image 0 udptl t38..c=IN IP4 10.198.1.230.. >>>>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069429 IN IP4 >>>>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>>>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>>>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>>>> -..a=ptime:20..m=image 0 udptl t38.. >>>>> And the fax is transmitted correctly >>>>> >>>>> This is an unsuccessful sdp negotiation: >>>>> First reinvite >>>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 579041281 579041282 IN IP4 >>>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 13302 RTP/AVP 8 >>>>> 96..a=rtpmap:96 telephone-event/8000..a=ptime:10..a=ecan:fb on >>>>> -..a=Fax..m=image 17522 udptl >>>>> t38..a=T38FaxVersion:0..a=T38MaxBitRate:14400..a=T38FaxRateManagement:transferredTCF..a=T38FaxMaxBuffer:1800..a=T38FaxMaxDatagram:260..a=T38FaxUdpEC:t38UDPRedundancy..a=ecan:fb >>>>> on -.. >>>>> LOCAL 488 >>>>> and the remote hangs up. >>>>> >>>>> My point is that, in case of unsuccessful negotiation, FS receives a >>>>> reinvite with two "m=" in the sdp, one G711A (port 13302) and one T38 (port >>>>> 17522). >>>>> Is it ok for FS to refuse "all the sdp" with 488 just because it has >>>>> to refuse T38 or it should be configured to refuse only the T38 media? >>>>> Should remote endpoint send another reinvite with only G711 or only >>>>> T38 before hanging up? >>>>> >>>>> Thanks in advance to whoever read till here :-) >>>>> Any hints? >>>>> >>>>> S. >>>>> >>>>> P.s.: >>>>> This is what i get in the log in the unsuccessful case during the >>>>> reinvite (1.4.9 code): >>>>> [...] >>>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3476 Audio >>>>> Codec Compare [PCMA:8:8000:10:64000:1]/[PCMA:8:8000:10:64000:1] >>>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3531 Audio >>>>> Codec Compare [PCMA:8:8000:10:64000:1] ++++ is saved as a match >>>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3397 Set >>>>> telephone-event payload to 96 >>>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3713 Set 2833 >>>>> dtmf send payload to 96 >>>>> 2019-05-17 11:22:57.498389 [ERR] sofia.c:7065 Reinvite Codec Error! >>>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>>>> signal sofia/external/ [BREAK] >>>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>>>> signal sofia/external/ [BREAK] >>>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:2280 Already >>>>> using PCMA >>>>> 2019-05-17 11:22:57.498389 [DEBUG] sofia.c:6444 Channel >>>>> sofia/external/ entering state [ready][488] >>>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1053 Send >>>>> signal sofia/external/ [BREAK] >>>>> 2019-05-17 11:22:57.638443 [NOTICE] sofia.c:952 Hangup >>>>> sofia/external/ [CS_EXECUTE] [NORMAL_CLEARING] >>>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_channel.c:3222 Send signal >>>>> sofia/external/ [KILL] >>>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1388 Send >>>>> signal sofia/external/ [BREAK] >>>>> 2019-05-17 11:22:57.638443 [DEBUG] mod_spandsp_fax.c:293 FLOW T.30 >>>>> Status changing to 'The call dropped prematurely' >>>>> >>>>> This are the most relevant settings on api originate: >>>>> [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] >>>>> [DEBUG] switch_event.c:1688 Parsing variable >>>>> [absolute_codec_string]=[PCMA at 10i] >>>>> [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] >>>>> [DEBUG] switch_event.c:1688 Parsing variable >>>>> [fax_enable_t38_request]=[false] >>>>> [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] >>>>> and on the external profile t38-passthru is set to false. >>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> >>>>> Ing. Sandro Bordacchini / System Engineering and Product Management >>>>> sandro.bordacchini at nems.it >>>>> >>>>> >>>>> _________________________________________________________________________ >>>>> >>>>> The FreeSWITCH project is sponsored by SignalWire >>>>> https://signalwire.com >>>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>>> services. >>>>> Build your next product on our scalable cloud platform. >>>>> >>>>> Join our online community to chat in real time >>>>> https://signalwire.community >>>>> >>>>> Professional FreeSWITCH Services >>>>> sales at freeswitch.com >>>>> https://freeswitch.com >>>>> >>>>> Official FreeSWITCH Sites >>>>> https://freeswitch.com/oss >>>>> https://freeswitch.org/confluence >>>>> https://cluecon.com >>>>> >>>>> FreeSWITCH-users mailing list >>>>> FreeSWITCH-users at lists.freeswitch.org >>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>>> UNSUBSCRIBE: >>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>>> https://freeswitch.com >>>> >>>> >>>> >>>> -- >>>> Sincerely, >>>> >>>> Giovanni Maruzzelli >>>> OpenTelecom.IT >>>> cell: +39 347 266 56 18 >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> >> -- >> Sincerely, >> >> Giovanni Maruzzelli >> OpenTelecom.IT >> cell: +39 347 266 56 18 >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > > Brian West | Co-founder and Developer > > Need Commercial support? email sales at freeswitch.com > > FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045 > > > Email: brian at freeswitch.com > > Mobile: 918-424-9378 > > Website: https://www.FreeSWITCH.com > > [image: https://www.facebook.com/signalwireinc?src=email] > [image: > https://twitter.com/freeswitch] > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- [image: NEMS S.r.l.] Ing. Sandro Bordacchini / System Engineering and Product Management (+39) 347 96 96 531 / sandro.bordacchini at nems.it NEMS S.r.l. Office: (+39) 0587 466957 ext 204 / Fax: (+39) 0587 829177 Via Squartini, 18 - 56121 Pisa (PI) Italy http://www.nems.it [image: Facebook] [image: Linkedin] [image: Twitter] [image: Google Plus] In ottemperanza con il nuovo Regolamento Europeo GDPR n. 679/2016, le informazioni contenute in questo messaggio sono riservate e confidenziali. Il loro utilizzo è consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora Lei non fosse la persona a cui il presente messaggio è destinato, La invitiamo ad eliminarlo dal Suo Sistema ed a distruggere le varie copie o stampe, dandocene gentilmente comunicazione. Ogni utilizzo improprio è contrario ai principi del nuovo Regolamento Europeo GDPR n. 679/2016. NEMS S.r.l. opera in conformità al nuovo Regolamento Europeo GDPR n. 679/2016. Per qualsiasi informazione a riguardo si prega di contattare l’indirizzo mail: info at nems.it -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandro.bordacchini at nems.it Thu May 30 13:05:51 2019 From: sandro.bordacchini at nems.it (Sandro Bordacchini) Date: Thu, 30 May 2019 15:05:51 +0200 Subject: [Freeswitch-users] refusing t38 in outgoing fax server transmission In-Reply-To: References: Message-ID: Hi Giovanni. The scenario is an outgoing fax transmission: FreeSWITCH is the transmitting *fax server*. I issue "api originate" command to create the call. These are the t38/g711 relevant settings: [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] [DEBUG] switch_event.c:1688 Parsing variable [absolute_codec_string]=[PCMA at 10i] [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38_request]=[false] [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] ... and on the external profile t38-passthru is set to false. When calling some recipients, i get from the remote party (a voip provider) a reINVITE with sdp containing a double media (a "m=g711a" and a "m=T38"). At the present FreeSWITCH answers with a "488 not acceptable here". And the voip provider hangs up. *What i want to achieve* is FreeSWITCH to accept the g711a media and deny the T38 media (putting t38 port=0? deleting the t38 media from the sdp answer? i don't know exactly). I haven't been able, so far, to find the parameters to pass to the api originate (or parameters to set on the external profile) to get that kind of behaviour. I hope I have been more clear this time :-) Thanks for your patience. SB Il giorno gio 30 mag 2019 alle ore 01:51 Giovanni Maruzzelli < gmaruzz at gmail.com> ha scritto: > On Thu, May 30, 2019 at 12:46 AM Sandro Bordacchini < > sandro.bordacchini at nems.it> wrote: > >> I am just wondering if it's possible to configure FS to accept the G711 >> media and "turn off" the T38 media that have been received in the same sdp >> (refer to reinvite in the unsuccessful case). >> That would be really helpful for me but i wasnt able to get that kind of >> behaviour. >> Am I missing something? >> > > Maybe I do not understand what you want to achieve. If you do not act on > T38, then also if you are offered it, you will not take it in > consideration, and just process the call as a call without T38 > > If you are "proxying" T38 (eg inbound T38 outbound plain g711), then there > are specific settings for it > > Check both of the links: > > > https://freeswitch.org/confluence/display/FREESWITCH/T.38#T.38-Sofiaprofileparameters > > https://freeswitch.org/confluence/display/FREESWITCH/mod_spandsp > > -giovanni > > >> Thanks a lot. >> S >> >> Il giorno mer 29 mag 2019 alle ore 10:20 Giovanni Maruzzelli < >> gmaruzz at gmail.com> ha scritto: >> >>> Hello Sandro, >>> >>> so, they want you to send out faxes with T30 in g711? That will be >>> *very* unreliable, you *want* to use T38. >>> >>> Anyway, you want to use PCMA with normal packet size (eg, not 10 ms). >>> You just specify PCMA as absolute_codec string. >>> >>> You do not have to refuse explicitly the call (no 488), you just do not >>> accept t38 fax transmission. >>> >>> So, disable t38 everywhere, and do the fax over g711 (eg, over pcma). >>> >>> That will be very unreliable. T38 has been created to solve that >>> unreliability. >>> >>> If you happen to find a FreeSWITCH book, there is a chapter about faxes. >>> >>> >>> Hope this help, >>> -giovanni >>> >>> >>> On Wed, May 29, 2019 at 6:51 AM Sandro Bordacchini < >>> sandro.bordacchini at nems.it> wrote: >>> >>>> Hello everyone. >>>> >>>> I am have a few FS installations interconnected with a voip provider; >>>> during outbound fax server transmissions, they told us that we need *to >>>> refuse T38 even if offered by the network*. >>>> The sdp offer/answer negotiation varies depending on the called number, >>>> probably due to a different routing in the voip provider's network. >>>> I experience some dropped calls (even before the fax transmission kicks >>>> in) using both FS versions 1.4.9 and 1.6.16. >>>> >>>> This is a successful sdp negotiation (after call is estabilished) >>>> First reinvite: >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445856 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>>> 0..a=X-cap: 1 image udptl t38.. >>>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069428 IN IP4 >>>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>>> -..a=ptime:20.. >>>> Then, a second reinvite happens: >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445857 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 0 RTP/AVP 0..c=IN >>>> IP4 10.198.1.230..m=image 12834 udptl t38..a=X-sqn: 0..a=X-cap: 1 image >>>> udptl t38.. >>>> LOCAL 488 >>>> Then, the last reinvite: >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 413445855 413445858 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 15756 RTP/AVP 8 96 >>>> 4..a=rtpmap:96 telephone-event/8000..a=fmtp:96 0-15..a=ptime:20..a=X-sqn: >>>> 0..a=X-cap: 1 image udptl t38..m=image 0 udptl t38..c=IN IP4 10.198.1.230.. >>>> LOCAL 200OK with SDP: v=0..o=FreeSWITCH 1558069426 1558069429 IN IP4 >>>> 10.197.98.6..s=FreeSWITCH..c=IN IP4 10.197.98.6..t=0 0..m=audio 30394 >>>> RTP/AVP 8 96..a=rtpmap:8 PCMA/8000..a=rtpmap:96 >>>> telephone-event/8000..a=fmtp:96 0-16..a=silenceSupp:off - - - >>>> -..a=ptime:20..m=image 0 udptl t38.. >>>> And the fax is transmitted correctly >>>> >>>> This is an unsuccessful sdp negotiation: >>>> First reinvite >>>> REMOTE INVITE with SDP: v=0..o=LucentPCSF 579041281 579041282 IN IP4 >>>> 10.198.1.230..s=-..c=IN IP4 10.198.1.230..t=0 0..m=audio 13302 RTP/AVP 8 >>>> 96..a=rtpmap:96 telephone-event/8000..a=ptime:10..a=ecan:fb on >>>> -..a=Fax..m=image 17522 udptl >>>> t38..a=T38FaxVersion:0..a=T38MaxBitRate:14400..a=T38FaxRateManagement:transferredTCF..a=T38FaxMaxBuffer:1800..a=T38FaxMaxDatagram:260..a=T38FaxUdpEC:t38UDPRedundancy..a=ecan:fb >>>> on -.. >>>> LOCAL 488 >>>> and the remote hangs up. >>>> >>>> My point is that, in case of unsuccessful negotiation, FS receives a >>>> reinvite with two "m=" in the sdp, one G711A (port 13302) and one T38 (port >>>> 17522). >>>> Is it ok for FS to refuse "all the sdp" with 488 just because it has to >>>> refuse T38 or it should be configured to refuse only the T38 media? >>>> Should remote endpoint send another reinvite with only G711 or only T38 >>>> before hanging up? >>>> >>>> Thanks in advance to whoever read till here :-) >>>> Any hints? >>>> >>>> S. >>>> >>>> P.s.: >>>> This is what i get in the log in the unsuccessful case during the >>>> reinvite (1.4.9 code): >>>> [...] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3476 Audio Codec >>>> Compare [PCMA:8:8000:10:64000:1]/[PCMA:8:8000:10:64000:1] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3531 Audio Codec >>>> Compare [PCMA:8:8000:10:64000:1] ++++ is saved as a match >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3397 Set >>>> telephone-event payload to 96 >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:3713 Set 2833 >>>> dtmf send payload to 96 >>>> 2019-05-17 11:22:57.498389 [ERR] sofia.c:7065 Reinvite Codec Error! >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_session.c:1053 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.498389 [DEBUG] switch_core_media.c:2280 Already >>>> using PCMA >>>> 2019-05-17 11:22:57.498389 [DEBUG] sofia.c:6444 Channel >>>> sofia/external/ entering state [ready][488] >>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1053 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.638443 [NOTICE] sofia.c:952 Hangup >>>> sofia/external/ [CS_EXECUTE] [NORMAL_CLEARING] >>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_channel.c:3222 Send signal >>>> sofia/external/ [KILL] >>>> 2019-05-17 11:22:57.638443 [DEBUG] switch_core_session.c:1388 Send >>>> signal sofia/external/ [BREAK] >>>> 2019-05-17 11:22:57.638443 [DEBUG] mod_spandsp_fax.c:293 FLOW T.30 >>>> Status changing to 'The call dropped prematurely' >>>> >>>> This are the most relevant settings on api originate: >>>> [DEBUG] switch_event.c:1688 Parsing variable [fax_use_ecm]=[off] >>>> [DEBUG] switch_event.c:1688 Parsing variable >>>> [absolute_codec_string]=[PCMA at 10i] >>>> [DEBUG] switch_event.c:1688 Parsing variable [fax_enable_t38]=[false] >>>> [DEBUG] switch_event.c:1688 Parsing variable >>>> [fax_enable_t38_request]=[false] >>>> [DEBUG] switch_event.c:1688 Parsing variable [refuse_t38]=[true] >>>> and on the external profile t38-passthru is set to false. >>>> >>>> >>>> >>>> >>>> -- >>>> >>>> Ing. Sandro Bordacchini / System Engineering and Product Management >>>> sandro.bordacchini at nems.it >>>> >>>> >>>> _________________________________________________________________________ >>>> >>>> The FreeSWITCH project is sponsored by SignalWire >>>> https://signalwire.com >>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>>> services. >>>> Build your next product on our scalable cloud platform. >>>> >>>> Join our online community to chat in real time >>>> https://signalwire.community >>>> >>>> Professional FreeSWITCH Services >>>> sales at freeswitch.com >>>> https://freeswitch.com >>>> >>>> Official FreeSWITCH Sites >>>> https://freeswitch.com/oss >>>> https://freeswitch.org/confluence >>>> https://cluecon.com >>>> >>>> FreeSWITCH-users mailing list >>>> FreeSWITCH-users at lists.freeswitch.org >>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>>> UNSUBSCRIBE: >>>> http://lists.freeswitch.org/mailman/options/freeswitch-users >>>> https://freeswitch.com >>> >>> >>> >>> -- >>> Sincerely, >>> >>> Giovanni Maruzzelli >>> OpenTelecom.IT >>> cell: +39 347 266 56 18 >>> >>> _________________________________________________________________________ >>> >>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >>> services. >>> Build your next product on our scalable cloud platform. >>> >>> Join our online community to chat in real time >>> https://signalwire.community >>> >>> Professional FreeSWITCH Services >>> sales at freeswitch.com >>> https://freeswitch.com >>> >>> Official FreeSWITCH Sites >>> https://freeswitch.com/oss >>> https://freeswitch.org/confluence >>> https://cluecon.com >>> >>> FreeSWITCH-users mailing list >>> FreeSWITCH-users at lists.freeswitch.org >>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >>> https://freeswitch.com >> >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > > > -- > Sincerely, > > Giovanni Maruzzelli > OpenTelecom.IT > cell: +39 347 266 56 18 > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -- [image: NEMS S.r.l.] Ing. Sandro Bordacchini / System Engineering and Product Management (+39) 347 96 96 531 / sandro.bordacchini at nems.it NEMS S.r.l. Office: (+39) 0587 466957 ext 204 / Fax: (+39) 0587 829177 Via Squartini, 18 - 56121 Pisa (PI) Italy http://www.nems.it [image: Facebook] [image: Linkedin] [image: Twitter] [image: Google Plus] In ottemperanza con il nuovo Regolamento Europeo GDPR n. 679/2016, le informazioni contenute in questo messaggio sono riservate e confidenziali. Il loro utilizzo è consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora Lei non fosse la persona a cui il presente messaggio è destinato, La invitiamo ad eliminarlo dal Suo Sistema ed a distruggere le varie copie o stampe, dandocene gentilmente comunicazione. Ogni utilizzo improprio è contrario ai principi del nuovo Regolamento Europeo GDPR n. 679/2016. NEMS S.r.l. opera in conformità al nuovo Regolamento Europeo GDPR n. 679/2016. Per qualsiasi informazione a riguardo si prega di contattare l’indirizzo mail: info at nems.it -------------- next part -------------- An HTML attachment was scrubbed... URL: From bipin at xbipin.com Fri May 31 08:07:02 2019 From: bipin at xbipin.com (Bipin Patel) Date: Fri, 31 May 2019 12:07:02 +0400 Subject: sched_api survive restarts Message-ID: hi, is it possible to make sched_api tasks persistent and survive restarts, i want to create a wakeup call scenario where the admin sets a time and all extensions in a group are called at that time and played a sound file and admin can change time at will. I looked at a few lua scripts but mostly all make use of the sched_api and i noticed they dont survive a FS restart -- Regards, Bipin -------------- next part -------------- An HTML attachment was scrubbed... URL: From vishalmpai at gmail.com Fri May 31 11:03:30 2019 From: vishalmpai at gmail.com (Vishal Pai) Date: Fri, 31 May 2019 16:33:30 +0530 Subject: [Freeswitch-users] mod_com_amd Message-ID: Hello everyone I am using commercial module for AMD it works well with example given on the portal. Now my scenario is here in which i need some suggestion. Caller == Calls on DID == IVR == Call bridge to External Number (here we have amd check ) == If AMD detects then transfer to another number now if person is detected the calls should continue between Caller and External Number. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From infos at madovsky.org Fri May 31 20:03:50 2019 From: infos at madovsky.org (Madovsky) Date: Fri, 31 May 2019 13:03:50 -0700 Subject: [Freeswitch-users] conference video layers Message-ID: Hi folks, in mod_conference is it possible to for exemple select a 2 cam side by side but with let's say a zoom of the person taling more than 30 sec? Thanks Franck From amit.k.chaudhuri at gmail.com Fri May 31 09:10:25 2019 From: amit.k.chaudhuri at gmail.com (Amit Chaudhuri) Date: Fri, 31 May 2019 10:10:25 +0100 Subject: [Freeswitch-users] creating conferences In-Reply-To: References: Message-ID: Thanks for all the pointers... On Fri, 31 May 2019, 01:57 Shishir Pokharel, wrote: > Do you have a corresponding dialplan configured for that context? to send > the call to specified conference profile? > > /Shishir > > On Tue, May 28, 2019 at 8:35 PM Amit Chaudhuri > wrote: > >> Hi, >> >> I am trying to create a conference using the fs_cli in order to >> experiment with the conferencing capabilities. I can issue a >> 'conference list' command and get (as expected) a message confirming I >> have no active conferences. >> >> I can also issue 'conference xml_list', 'conference commands', >> 'conference help' and get sensible answers. >> >> When I try 'conference dial sofia/3001 12345 test' for example, I get >> a message: >> >> "Conference dial not found". >> >> Is it possible to create a conference from the cli? >> >> In particular, is it possible to create an empty conference that users >> can dial into at a later point in time? >> >> I've not found any examples which help me, although I have seen an >> unresolved bug report - FS11133 - that might imply one cannot create >> empty conferences. >> >> Any help appreciated. >> >> Regards, >> >> Amit >> >> _________________________________________________________________________ >> >> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com >> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN >> services. >> Build your next product on our scalable cloud platform. >> >> Join our online community to chat in real time >> https://signalwire.community >> >> Professional FreeSWITCH Services >> sales at freeswitch.com >> https://freeswitch.com >> >> Official FreeSWITCH Sites >> https://freeswitch.com/oss >> https://freeswitch.org/confluence >> https://cluecon.com >> >> FreeSWITCH-users mailing list >> FreeSWITCH-users at lists.freeswitch.org >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users >> https://freeswitch.com > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From mansig130 at gmail.com Fri May 31 13:08:09 2019 From: mansig130 at gmail.com (Mansi Gupta) Date: Fri, 31 May 2019 18:38:09 +0530 Subject: [Freeswitch-users] verto communicator Message-ID: Hello everyone, I was testing verto communicator,it worked well. I have few queries. 1. Can we have layout like jitsi. 2. Is it possible to share/view files during conference. 3. In conference can we have feature like raise hand. Thank you -- Mansi Gupta -------------- next part -------------- An HTML attachment was scrubbed... URL: From abbi at freeswitch.com Fri May 31 14:33:20 2019 From: abbi at freeswitch.com (Abbi Minessale) Date: Fri, 31 May 2019 09:33:20 -0500 Subject: [Freeswitch-users] VoIP and WebRTC Trivia Message-ID: Abbi Minessale Thu, May 30, 3:26 PM (18 hours ago) to freeswitch-users Hey everyone, My name is Abbi Minessale and I am the content strategist for FreeSWITCH. This year at ClueCon we are adding a large-scale trivia game to our Hack-A-Thon and I need your help! In the Google form linked below please enter any trivia questions you can think of about VoIP, WebRTC, technology, FreeSWITCH, Open Source, ClueCon, programming in general, or any other techie current events! Thanks so much and I hope to see you at ClueCon this year! https://forms.gle/vuH2zACEh4Z6TkkZ8 -- Abbi Minessale | Content Strategist SignalWire: *228 Hamilton Ave 3rd Floor, Palo Alto, CA 94303 * Email: abbi at minessale.com Website: https://www.signalwire.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From dragos at freeswitch.org Fri May 31 22:39:02 2019 From: dragos at freeswitch.org (Dragos Oancea) Date: Fri, 31 May 2019 23:39:02 +0100 Subject: [Freeswitch-users] EVS Codec module for FreeSwitch ? In-Reply-To: References: Message-ID: This is mostly used for IMS/VOLTE . Is there an open-source library (encoder/decoder) for EVS yet ? I know it's supposed to be better than AMR-WB. On Wed, May 29, 2019 at 3:54 PM Marcel Haldemann < marcel.haldemann at convercom.ch> wrote: > Hi guys, > > > > Is there any change to get an EVS-Codec ( > https://www.iis.fraunhofer.de/en/ff/amm/communication/evs.html) > implementation in FreeSwitch ? > > > > EVS is the successor of AMR-WB and > As far as I understand it’s royalty free for Network Devices (only mobile > phone and table manufacturers got to license it, at least for now, and if > it changes it can be centrally licensed at mpegla.com), Quote: “EVS > Network Devices o Royalties waived during the initial term” from: > https://www.mpegla.com/wp-content/uploads/EVSWeb.pdf > > > > General Info: https://www.mpegla.com/programs/evs/ > > > > Some info from other sources: > > > https://www.businesswire.com/news/home/20170627006588/en/MPEG-LA-Introduces-License-EVS > > > > regards, > > Marcel > > > _________________________________________________________________________ > > The FreeSWITCH project is sponsored by SignalWire https://signalwire.com > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN > services. > Build your next product on our scalable cloud platform. > > Join our online community to chat in real time > https://signalwire.community > > Professional FreeSWITCH Services > sales at freeswitch.com > https://freeswitch.com > > Official FreeSWITCH Sites > https://freeswitch.com/oss > https://freeswitch.org/confluence > https://cluecon.com > > FreeSWITCH-users mailing list > FreeSWITCH-users at lists.freeswitch.org > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users > UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users > https://freeswitch.com -------------- next part -------------- An HTML attachment was scrubbed... URL: