VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
gregor at infomedia.si Guest
|
Posted: Fri Jan 14, 2022 3:19 am Post subject: [Freeswitch-users] Issue with Enterprise originate and 487 & |
|
|
Guys, does anyone know, if this fix will be included in new freeswitch version?
On Wed, 27 Oct 2021 at 19:13, Jai Rangi <jprangi@gmail.com (jprangi@gmail.com)> wrote:
Quote: | Thank you Peter and Christian.
On Fri, Oct 22, 2021 at 7:19 AM Peter Steinbach <lists@telefaks.de (lists@telefaks.de)> wrote:
Quote: | Just to mention: The patch was developed by Christian Berger from our client Foncloud. Thank you Christian!
Best regards
Peter
Am 21.10.21 um 17:20 schrieb Peter Steinbach:
Quote: |
Hello,
this is a long lasting issue I firstly posted in 2017 and lastly saw in 2019 in this thread, and I am happy to announce, that we have found a solution for this.
Here is the patch, which works pretty well in our environment
===================================================================================================
--- freeswitch_orig/src/switch_ivr_originate.c 2021-10-20 12:51:04.863328041 +0200
+++ freeswitch/src/switch_ivr_originate.c 2021-10-20 12:54:15.764616280 +0200
@@ -1789,7 +1789,13 @@
if (cancel_cause && *cancel_cause > 0) {
handles[i].cancel_cause = *cancel_cause;
} else {
- handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ if ((hp!=NULL) && (hp->cause==SWITCH_CAUSE_SUCCESS)) { //Was this call taken by another destination?
+ //Yes, the race was lost
+ handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ } else {
+ //No, something else happened, probably Originator Cancel
+ handles[i].cancel_cause = SWITCH_CAUSE_ORIGINATOR_CANCEL;
+ }
}
}
===================================================================================================
Can someone retest this and check this in?
Quote: | --
With kind regards
Peter Steinbach
Telefaks Services GmbH
mailto:lists ([email]lists[/email]) (att) telefaks.de
Internet: www.telefaks.de
| Am 22.05.19 um 21:14 schrieb Jai Rangi:
Quote: | 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(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20 ]user/101@192.168.5.50:_:[ignore_early_media=true,leg_timeout=20 ]user/102@192.168.5.50 (102@192.168.5.50))
If I send
bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20 ]user/101@192.168.5.50 (101@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
| |
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time https://signalwire.community
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@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@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@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 |
|
Back to top |
|
|
dragos at freeswitch.org Guest
|
Posted: Fri Jan 14, 2022 7:16 am Post subject: [Freeswitch-users] Issue with Enterprise originate and 487 & |
|
|
Creator of the patch must create a PR in Github against FSs master branch in order to be reviewed.
On Fri, Jan 14, 2022 at 9:48 AM Gregor Nanger <gregor@infomedia.si (gregor@infomedia.si)> wrote:
Quote: | Guys, does anyone know, if this fix will be included in new freeswitch version?
On Wed, 27 Oct 2021 at 19:13, Jai Rangi <jprangi@gmail.com (jprangi@gmail.com)> wrote:
Quote: | Thank you Peter and Christian.
On Fri, Oct 22, 2021 at 7:19 AM Peter Steinbach <lists@telefaks.de (lists@telefaks.de)> wrote:
Quote: | Just to mention: The patch was developed by Christian Berger from our client Foncloud. Thank you Christian!
Best regards
Peter
Am 21.10.21 um 17:20 schrieb Peter Steinbach:
Quote: |
Hello,
this is a long lasting issue I firstly posted in 2017 and lastly saw in 2019 in this thread, and I am happy to announce, that we have found a solution for this.
Here is the patch, which works pretty well in our environment
===================================================================================================
--- freeswitch_orig/src/switch_ivr_originate.c 2021-10-20 12:51:04.863328041 +0200
+++ freeswitch/src/switch_ivr_originate.c 2021-10-20 12:54:15.764616280 +0200
@@ -1789,7 +1789,13 @@
if (cancel_cause && *cancel_cause > 0) {
handles[i].cancel_cause = *cancel_cause;
} else {
- handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ if ((hp!=NULL) && (hp->cause==SWITCH_CAUSE_SUCCESS)) { //Was this call taken by another destination?
+ //Yes, the race was lost
+ handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ } else {
+ //No, something else happened, probably Originator Cancel
+ handles[i].cancel_cause = SWITCH_CAUSE_ORIGINATOR_CANCEL;
+ }
}
}
===================================================================================================
Can someone retest this and check this in?
Quote: | --
With kind regards
Peter Steinbach
Telefaks Services GmbH
mailto:lists ([email]lists[/email]) (att) telefaks.de
Internet: www.telefaks.de
| Am 22.05.19 um 21:14 schrieb Jai Rangi:
Quote: | 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(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20 ]user/101@192.168.5.50:_:[ignore_early_media=true,leg_timeout=20 ]user/102@192.168.5.50 (102@192.168.5.50))
If I send
bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20 ]user/101@192.168.5.50 (101@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
| |
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time https://signalwire.community
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@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@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@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@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com |
|
|
Back to top |
|
|
christian.berger at fo... Guest
|
Posted: Fri Jan 14, 2022 7:46 am Post subject: [Freeswitch-users] Issue with Enterprise originate and 487 & |
|
|
Unfortunately I do not have the privileges to create a branch on this
project. This seems to be necessary to create a pull request.
Am 14.01.22 um 12:47 schrieb Dragos Oancea:
Quote: | Creator of the patch must create a PR in Github against FSs master
branch in order to be reviewed.
On Fri, Jan 14, 2022 at 9:48 AM Gregor Nanger <gregor@infomedia.si (gregor@infomedia.si)
<mailto:gregor@infomedia.si (gregor@infomedia.si)>> wrote:
Guys, does anyone know, if this fix will be included in new
freeswitch version?
On Wed, 27 Oct 2021 at 19:13, Jai Rangi <jprangi@gmail.com (jprangi@gmail.com)
<mailto:jprangi@gmail.com (jprangi@gmail.com)>> wrote:
Thank you Peter and Christian.
On Fri, Oct 22, 2021 at 7:19 AM Peter Steinbach
<lists@telefaks.de (lists@telefaks.de) <mailto:lists@telefaks.de (lists@telefaks.de)>> wrote:
Just to mention: The patch was developed by Christian Berger
from our client Foncloud. Thank you Christian!
Best regards
Peter
Am 21.10.21 um 17:20 schrieb Peter Steinbach:
Quote: |
Hello,
this is a long lasting issue I firstly posted in 2017 and
lastly saw in 2019 in this thread, and I am happy to
announce, that we have found a solution for this.
Here is the patch, which works pretty well in our environment
===================================================================================================
--- freeswitch_orig/src/switch_ivr_originate.c 2021-10-20
12:51:04.863328041 +0200
+++ freeswitch/src/switch_ivr_originate.c 2021-10-20
12:54:15.764616280 +0200
@@ -1789,7 +1789,13 @@
if (cancel_cause && *cancel_cause > 0) {
handles[i].cancel_cause = *cancel_cause;
} else {
- handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ if ((hp!=NULL) &&
(hp->cause==SWITCH_CAUSE_SUCCESS)) { //Was this call taken
by another destination?
+ //Yes, the race was lost
+ handles[i].cancel_cause =
SWITCH_CAUSE_LOSE_RACE;
+ } else {
+ //No, something else happened, probably
Originator Cancel
+ handles[i].cancel_cause =
SWITCH_CAUSE_ORIGINATOR_CANCEL;
+ }
}
}
===================================================================================================
Can someone retest this and check this in?
--
With kind regards
Peter Steinbach
Telefaks Services GmbH
mailto:lists <mailto:lists> (att)telefaks.de <http://telefaks.de>
Internet:www.telefaks.de <http://www.telefaks.de>
Am 22.05.19 um 21:14 schrieb Jai Rangi:
Quote: | 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(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
Quote: | Quote: | Quote: | /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50):_:[ignore_early_media=true,leg_timeout=20
]user/102@192.168.5.50 (102@192.168.5.50) <mailto:102@192.168.5.50 (102@192.168.5.50)>)
If I send
bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
/usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50) <mailto:101@192.168.5.50 (101@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
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWirehttps://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install 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 <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence <https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org) <mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users <http://lists.freeswitch.org/mailman/options/freeswitch-users>
https://freeswitch.com <https://freeswitch.com>
|
| _________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire
https://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install with disruptive priced SMS
and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time
https://signalwire.community <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence
<https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
<mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
<http://lists.freeswitch.org/mailman/options/frees
| witch-users>
Christian Berger
foncloud GmbH & Co KG
Hahlweg 2a
36093 Künzell
Tel: /
Fax: +49 661 968990-99
<![endif]-->
Email: Christian.Berger@foncloud.net
Web: www.foncloud.net
P.S.: Wussten Sie schon?
Unter https://www.foncloud.net/wissen finden Sie zahlreiche Informationen und hilfreiche Artikel rund um unsere Produkte und Services.
Registergericht: Amtsgericht Fulda, Persönlich haftende Gesellschafterin der foncloud GmbH&Co.KG: Global Brain Network GmbH
Geschäftsführer der Global Brain Network GmbH: Peter Krug Sitz der Gesellschaft: Künzell.
Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden. |
|
Back to top |
|
|
gregor at infomedia.si Guest
|
Posted: Fri Jan 14, 2022 8:05 am Post subject: [Freeswitch-users] Issue with Enterprise originate and 487 & |
|
|
I think that for Pull Request you do not need any special permissions. Or I could be wrong.
Can someone advise on this as this patch is really useful and it is a waste to lose it.
BR, Gregor
On Fri, 14 Jan 2022 at 13:09, Christian Berger <christian.berger@foncloud.net (christian.berger@foncloud.net)> wrote:
Quote: | Unfortunately I do not have the privileges to create a branch on this
project. This seems to be necessary to create a pull request.
Am 14.01.22 um 12:47 schrieb Dragos Oancea:
Quote: | Creator of the patch must create a PR in Github against FSs master
branch in order to be reviewed.
On Fri, Jan 14, 2022 at 9:48 AM Gregor Nanger <gregor@infomedia.si (gregor@infomedia.si)
<mailto:gregor@infomedia.si (gregor@infomedia.si)>> wrote:
Guys, does anyone know, if this fix will be included in new
freeswitch version?
On Wed, 27 Oct 2021 at 19:13, Jai Rangi <jprangi@gmail.com (jprangi@gmail.com)
<mailto:jprangi@gmail.com (jprangi@gmail.com)>> wrote:
Thank you Peter and Christian.
On Fri, Oct 22, 2021 at 7:19 AM Peter Steinbach
<lists@telefaks.de (lists@telefaks.de) <mailto:lists@telefaks.de (lists@telefaks.de)>> wrote:
Just to mention: The patch was developed by Christian Berger
from our client Foncloud. Thank you Christian!
Best regards
Peter
Am 21.10.21 um 17:20 schrieb Peter Steinbach:
Quote: |
Hello,
this is a long lasting issue I firstly posted in 2017 and
lastly saw in 2019 in this thread, and I am happy to
announce, that we have found a solution for this.
Here is the patch, which works pretty well in our environment
===================================================================================================
--- freeswitch_orig/src/switch_ivr_originate.c 2021-10-20
12:51:04.863328041 +0200
+++ freeswitch/src/switch_ivr_originate.c 2021-10-20
12:54:15.764616280 +0200
@@ -1789,7 +1789,13 @@
if (cancel_cause && *cancel_cause > 0) {
handles[i].cancel_cause = *cancel_cause;
} else {
- handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ if ((hp!=NULL) &&
(hp->cause==SWITCH_CAUSE_SUCCESS)) { //Was this call taken
by another destination?
+ //Yes, the race was lost
+ handles[i].cancel_cause =
SWITCH_CAUSE_LOSE_RACE;
+ } else {
+ //No, something else happened, probably
Originator Cancel
+ handles[i].cancel_cause =
SWITCH_CAUSE_ORIGINATOR_CANCEL;
+ }
}
}
===================================================================================================
Can someone retest this and check this in?
--
With kind regards
Peter Steinbach
Telefaks Services GmbH
mailto:lists ([email]lists[/email]) <mailto:lists ([email]lists[/email])> (att)telefaks.de <http://telefaks.de>
Internet:www.telefaks.de <http://www.telefaks.de>
Am 22.05.19 um 21:14 schrieb Jai Rangi:
Quote: | 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(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
Quote: | Quote: | Quote: | /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50):_:[ignore_early_media=true,leg_timeout=20
]user/102@192.168.5.50 (102@192.168.5.50) <mailto:102@192.168.5.50 (102@192.168.5.50)>)
If I send
bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
/usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50) <mailto:101@192.168.5.50 (101@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
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWirehttps://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install 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 <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence <https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org) <mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users <http://lists.freeswitch.org/mailman/options/freeswitch-users>
https://freeswitch.com <https://freeswitch.com>
|
| _________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire
https://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install with disruptive priced SMS
and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time
https://signalwire.community <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence
<https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
<mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
<http://lists.freeswitch.org/mailman/options/frees
| witch-users>
Christian Berger
foncloud GmbH & Co KG
Hahlweg 2a
36093 Künzell
Tel: /
Fax: +49 661 968990-99
Email: Christian.Berger@foncloud.net (Christian.Berger@foncloud.net)
Web: www.foncloud.net
P.S.: Wussten Sie schon?
Unter https://www.foncloud.net/wissen finden Sie zahlreiche Informationen und hilfreiche Artikel rund um unsere Produkte und Services.
Registergericht: Amtsgericht Fulda, Persönlich haftende Gesellschafterin der foncloud GmbH&Co.KG: Global Brain Network GmbH
Geschäftsführer der Global Brain Network GmbH: Peter Krug Sitz der Gesellschaft: Künzell.
Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time https://signalwire.community
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com |
|
|
Back to top |
|
|
dragos at freeswitch.org Guest
|
Posted: Fri Jan 14, 2022 8:22 am Post subject: [Freeswitch-users] Issue with Enterprise originate and 487 & |
|
|
https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests
It's necessary to create a fork.
On Fri, Jan 14, 2022 at 2:20 PM Gregor Nanger <gregor@infomedia.si (gregor@infomedia.si)> wrote:
Quote: | I think that for Pull Request you do not need any special permissions. Or I could be wrong.
Can someone advise on this as this patch is really useful and it is a waste to lose it.
BR, Gregor
On Fri, 14 Jan 2022 at 13:09, Christian Berger <christian.berger@foncloud.net (christian.berger@foncloud.net)> wrote:
Quote: | Unfortunately I do not have the privileges to create a branch on this
project. This seems to be necessary to create a pull request.
Am 14.01.22 um 12:47 schrieb Dragos Oancea:
Quote: | Creator of the patch must create a PR in Github against FSs master
branch in order to be reviewed.
On Fri, Jan 14, 2022 at 9:48 AM Gregor Nanger <gregor@infomedia.si (gregor@infomedia.si)
<mailto:gregor@infomedia.si (gregor@infomedia.si)>> wrote:
Guys, does anyone know, if this fix will be included in new
freeswitch version?
On Wed, 27 Oct 2021 at 19:13, Jai Rangi <jprangi@gmail.com (jprangi@gmail.com)
<mailto:jprangi@gmail.com (jprangi@gmail.com)>> wrote:
Thank you Peter and Christian.
On Fri, Oct 22, 2021 at 7:19 AM Peter Steinbach
<lists@telefaks.de (lists@telefaks.de) <mailto:lists@telefaks.de (lists@telefaks.de)>> wrote:
Just to mention: The patch was developed by Christian Berger
from our client Foncloud. Thank you Christian!
Best regards
Peter
Am 21.10.21 um 17:20 schrieb Peter Steinbach:
Quote: |
Hello,
this is a long lasting issue I firstly posted in 2017 and
lastly saw in 2019 in this thread, and I am happy to
announce, that we have found a solution for this.
Here is the patch, which works pretty well in our environment
===================================================================================================
--- freeswitch_orig/src/switch_ivr_originate.c 2021-10-20
12:51:04.863328041 +0200
+++ freeswitch/src/switch_ivr_originate.c 2021-10-20
12:54:15.764616280 +0200
@@ -1789,7 +1789,13 @@
if (cancel_cause && *cancel_cause > 0) {
handles[i].cancel_cause = *cancel_cause;
} else {
- handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ if ((hp!=NULL) &&
(hp->cause==SWITCH_CAUSE_SUCCESS)) { //Was this call taken
by another destination?
+ //Yes, the race was lost
+ handles[i].cancel_cause =
SWITCH_CAUSE_LOSE_RACE;
+ } else {
+ //No, something else happened, probably
Originator Cancel
+ handles[i].cancel_cause =
SWITCH_CAUSE_ORIGINATOR_CANCEL;
+ }
}
}
===================================================================================================
Can someone retest this and check this in?
--
With kind regards
Peter Steinbach
Telefaks Services GmbH
mailto:lists ([email]lists[/email]) <mailto:lists ([email]lists[/email])> (att)telefaks.de <http://telefaks.de>
Internet:www.telefaks.de <http://www.telefaks.de>
Am 22.05.19 um 21:14 schrieb Jai Rangi:
Quote: | 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(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
Quote: | Quote: | Quote: | /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50):_:[ignore_early_media=true,leg_timeout=20
]user/102@192.168.5.50 (102@192.168.5.50) <mailto:102@192.168.5.50 (102@192.168.5.50)>)
If I send
bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
/usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50) <mailto:101@192.168.5.50 (101@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
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWirehttps://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install 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 <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence <https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org) <mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users <http://lists.freeswitch.org/mailman/options/freeswitch-users>
https://freeswitch.com <https://freeswitch.com>
|
| _________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire
https://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install with disruptive priced SMS
and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time
https://signalwire.community <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence
<https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
<mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
<http://lists.freeswitch.org/mailman/options/frees
| witch-users>
Christian Berger
foncloud GmbH & Co KG
Hahlweg 2a
36093 Künzell
Tel: /
Fax: +49 661 968990-99
Email: Christian.Berger@foncloud.net (Christian.Berger@foncloud.net)
Web: www.foncloud.net
P.S.: Wussten Sie schon?
Unter https://www.foncloud.net/wissen finden Sie zahlreiche Informationen und hilfreiche Artikel rund um unsere Produkte und Services.
Registergericht: Amtsgericht Fulda, Persönlich haftende Gesellschafterin der foncloud GmbH&Co.KG: Global Brain Network GmbH
Geschäftsführer der Global Brain Network GmbH: Peter Krug Sitz der Gesellschaft: Künzell.
Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time https://signalwire.community
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@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@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com |
|
|
Back to top |
|
|
christian.berger at fo... Guest
|
Posted: Fri Jan 14, 2022 10:51 am Post subject: [Freeswitch-users] Issue with Enterprise originate and 487 & |
|
|
Thanks
Am 14.01.22 um 16:15 schrieb Zvonimir Bužanić via FreeSWITCH-users:
Christian Berger
foncloud GmbH & Co KG
Hahlweg 2a
36093 Künzell
Tel: /
Fax: +49 661 968990-99
<![endif]-->
Email: Christian.Berger@foncloud.net
Web: www.foncloud.net
P.S.: Wussten Sie schon?
Unter https://www.foncloud.net/wissen finden Sie zahlreiche Informationen und hilfreiche Artikel rund um unsere Produkte und Services.
Registergericht: Amtsgericht Fulda, Persönlich haftende Gesellschafterin der foncloud GmbH&Co.KG: Global Brain Network GmbH
Geschäftsführer der Global Brain Network GmbH: Peter Krug Sitz der Gesellschaft: Künzell.
Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden. |
|
Back to top |
|
|
gregor at infomedia.si Guest
|
Posted: Fri Jan 14, 2022 11:11 am Post subject: [Freeswitch-users] Issue with Enterprise originate and 487 & |
|
|
Thank you, Christian, Peter and Zvonimir 👍
On Fri, 14 Jan 2022 at 16:16, Zvonimir Bužanić via FreeSWITCH-users <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)> wrote:
Quote: |
---------- Forwarded message ----------
From: "Zvonimir Bužanić" <Zvonimir.Buzanic@asseco-see.hr (Zvonimir.Buzanic@asseco-see.hr)>
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Cc:
Bcc:
Date: Fri, 14 Jan 2022 15:14:50 +0000
Subject: RE: [Freeswitch-users] Issue with Enterprise originate and 487 "ORIGINATOR_CANCEL".
Hi, I've created pull request:
https://github.com/signalwire/freeswitch/pull/1520
BR, Zvonimir
From: FreeSWITCH-users <freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)> On Behalf Of Dragos Oancea
Sent: 14. siječnja 2022. 14:04
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Subject: Re: [Freeswitch-users] Issue with Enterprise originate and 487 "ORIGINATOR_CANCEL".
https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests
It's necessary to create a fork.
On Fri, Jan 14, 2022 at 2:20 PM Gregor Nanger <gregor@infomedia.si (gregor@infomedia.si)> wrote:
Quote: |
I think that for Pull Request you do not need any special permissions. Or I could be wrong.
Can someone advise on this as this patch is really useful and it is a waste to lose it.
BR, Gregor
On Fri, 14 Jan 2022 at 13:09, Christian Berger <christian.berger@foncloud.net (christian.berger@foncloud.net)> wrote:
Quote: |
Unfortunately I do not have the privileges to create a branch on this
project. This seems to be necessary to create a pull request.
Am 14.01.22 um 12:47 schrieb Dragos Oancea:
Quote: | Creator of the patch must create a PR in Github against FSs master
branch in order to be reviewed.
On Fri, Jan 14, 2022 at 9:48 AM Gregor Nanger <gregor@infomedia.si (gregor@infomedia.si)
<mailto:gregor@infomedia.si (gregor@infomedia.si)>> wrote:
Guys, does anyone know, if this fix will be included in new
freeswitch version?
On Wed, 27 Oct 2021 at 19:13, Jai Rangi <jprangi@gmail.com (jprangi@gmail.com)
<mailto:jprangi@gmail.com (jprangi@gmail.com)>> wrote:
Thank you Peter and Christian.
On Fri, Oct 22, 2021 at 7:19 AM Peter Steinbach
<lists@telefaks.de (lists@telefaks.de) <mailto:lists@telefaks.de (lists@telefaks.de)>> wrote:
Just to mention: The patch was developed by Christian Berger
from our client Foncloud. Thank you Christian!
Best regards
Peter
Am 21.10.21 um 17:20 schrieb Peter Steinbach:
Quote: |
Hello,
this is a long lasting issue I firstly posted in 2017 and
lastly saw in 2019 in this thread, and I am happy to
announce, that we have found a solution for this.
Here is the patch, which works pretty well in our environment
===================================================================================================
--- freeswitch_orig/src/switch_ivr_originate.c 2021-10-20
12:51:04.863328041 +0200
+++ freeswitch/src/switch_ivr_originate.c 2021-10-20
12:54:15.764616280 +0200
@@ -1789,7 +1789,13 @@
if (cancel_cause && *cancel_cause > 0) {
handles[i].cancel_cause = *cancel_cause;
} else {
- handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
+ if ((hp!=NULL) &&
(hp->cause==SWITCH_CAUSE_SUCCESS)) { //Was this call taken
by another destination?
+ //Yes, the race was lost
+ handles[i].cancel_cause =
SWITCH_CAUSE_LOSE_RACE;
+ } else {
+ //No, something else happened, probably
Originator Cancel
+ handles[i].cancel_cause =
SWITCH_CAUSE_ORIGINATOR_CANCEL;
+ }
}
}
===================================================================================================
Can someone retest this and check this in?
--
With kind regards
Peter Steinbach
Telefaks Services GmbH
mailto:lists ([email]lists[/email]) <mailto:lists ([email]lists[/email])> (att)telefaks.de <http://telefaks.de>
Internet:www.telefaks.de <http://www.telefaks.de>
Am 22.05.19 um 21:14 schrieb Jai Rangi:
Quote: | 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(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
Quote: | Quote: | Quote: | /usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50):_:[ignore_early_media=true,leg_timeout=20
]user/102@192.168.5.50 (102@192.168.5.50) <mailto:102@192.168.5.50 (102@192.168.5.50)>)
If I send
bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
/usr/local/freeswitch/sound/ivr/1443458342.wav,group_confirm_key=exec>{sip_cid_type=rpid,ignore_early_media=true,originate_timeout=30}[leg_timeout=20
]user/101@192.168.5.50 (101@192.168.5.50) <mailto:101@192.168.5.50 (101@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
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWirehttps://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install 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 <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence <https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org) <mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users <http://lists.freeswitch.org/mailman/options/freeswitch-users>
https://freeswitch.com <https://freeswitch.com>
|
| _________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire
https://signalwire.com <https://signalwire.com>
Enhance your FreeSWITCH install with disruptive priced SMS
and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time
https://signalwire.community <https://signalwire.community>
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com) <mailto:sales@freeswitch.com (sales@freeswitch.com)>
https://freeswitch.com <https://freeswitch.com>
Official FreeSWITCH Sites
https://freeswitch.com/oss <https://freeswitch.com/oss>
https://freeswitch.org/confluence
<https://freeswitch.org/confluence>
https://cluecon.com <https://cluecon.com>
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
<mailto:FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users <http://lists.freeswitch.org/mailman/listinfo/freeswitch-users>
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
<http://lists.freeswitch.org/mailman/options/frees
| witch-users>
Christian Berger
foncloud GmbH & Co KG
Hahlweg 2a
36093 Künzell
Tel: /
Fax: +49 661 968990-99
Email: Christian.Berger@foncloud.net (Christian.Berger@foncloud.net)
Web: www.foncloud.net
P.S.: Wussten Sie schon?
Unter https://www.foncloud.net/wissen finden Sie zahlreiche Informationen und hilfreiche Artikel rund um unsere Produkte und Services.
Registergericht: Amtsgericht Fulda, Persönlich haftende Gesellschafterin der foncloud GmbH&Co.KG: Global Brain Network GmbH
Geschäftsführer der Global Brain Network GmbH: Peter Krug Sitz der Gesellschaft: Künzell.
Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time https://signalwire.community
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@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@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com |
This communication is for informational purposes only. All market prices, data and other information are not warranted as to completeness or accuracy and are subject to change without notice. Present message and any attached files may be or contain privileged information and is the property exclusive of ASSECO SEE CAPITAL GROUP. This transmission may contain information that is privileged, confidential, legally privileged, and/or exempt from disclosure under applicable law. The information contained in this message is solely intended for the physical or legal person to whom it is addressed and to the authorized persons for receiving it. In the case you are not the intended recipient or the authorized person to receive this message, we inform that disclosure, duplicate, distribution or taking up any actions on information contained in this message are strictly forbidden and are under civil and legal responsibility. In case you received it by error, you are requested to notify the sender and to destroy the original e-mail message from your system. Opinions, conclusions or any other information contained into this message, which are not related to ASSECO SEE CAPITAL GROUP activity must not be understood to be expressed or should be endorsed by ASSECO SEE CAPITAL GROUP. The interpretation expressed in the present message did not reflect ASSECO SEE CAPITAL GROUP opinion.
---------- Forwarded message ----------
From: "Zvonimir Bužanić via FreeSWITCH-users" <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Cc:
Bcc:
Date: Fri, 14 Jan 2022 07:16:06 -0800 (PST)
Subject: Re: [Freeswitch-users] Issue with Enterprise originate and 487 "ORIGINATOR_CANCEL".
_________________________________________________________________________
The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.
Join our online community to chat in real time https://signalwire.community
Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com
Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com |
|
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|