<html>
<body>
Unfortunately I do not have the privileges to create a branch on this
<br>
project. This seems to be necessary to create a pull request.
<br>
<br>
Am 14.01.22 um 12:47 schrieb Dragos Oancea:
<br>
<font color="#000000">> Creator of the patch must create a PR in Github against FSs master
</font><br>
<font color="#000000">> branch in order to be reviewed.
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> On Fri, Jan 14, 2022 at 9:48 AM Gregor Nanger <<a href="mailto:gregor@infomedia.si">gregor@infomedia.si</a>
</font><br>
<font color="#000000">> <mailto:<a href="mailto:gregor@infomedia.si">gregor@infomedia.si</a>>> wrote:
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Guys, does anyone know, if this fix will be included in new
</font><br>
<font color="#000000">> freeswitch version?
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> On Wed, 27 Oct 2021 at 19:13, Jai Rangi <<a href="mailto:jprangi@gmail.com">jprangi@gmail.com</a>
</font><br>
<font color="#000000">> <mailto:<a href="mailto:jprangi@gmail.com">jprangi@gmail.com</a>>> wrote:
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Thank you Peter and Christian.
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> On Fri, Oct 22, 2021 at 7:19 AM Peter Steinbach
</font><br>
<font color="#000000">> <<a href="mailto:lists@telefaks.de">lists@telefaks.de</a> <mailto:<a href="mailto:lists@telefaks.de">lists@telefaks.de</a>>> wrote:
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Just to mention: The patch was developed by Christian Berger
</font><br>
<font color="#000000">> from our client Foncloud. Thank you Christian!
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Best regards
</font><br>
<font color="#000000">> Peter
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Am 21.10.21 um 17:20 schrieb Peter Steinbach:
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> Hello,
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> this is a long lasting issue I firstly posted in 2017 and
</font><br>
<font color="#000000">>> lastly saw in 2019 in this thread, and I am happy to
</font><br>
<font color="#000000">>> announce, that we have found a solution for this.
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> Here is the patch, which works pretty well in our environment
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> ===================================================================================================
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> --- freeswitch_orig/src/switch_ivr_originate.c 2021-10-20
</font><br>
<font color="#000000">>> 12:51:04.863328041 +0200
</font><br>
<font color="#000000">>> +++ freeswitch/src/switch_ivr_originate.c 2021-10-20
</font><br>
<font color="#000000">>> 12:54:15.764616280 +0200
</font><br>
<font color="#000000">>> @@ -1789,7 +1789,13 @@
</font><br>
<font color="#000000">>> if (cancel_cause && *cancel_cause > 0) {
</font><br>
<font color="#000000">>> handles[i].cancel_cause = *cancel_cause;
</font><br>
<font color="#000000">>> } else {
</font><br>
<font color="#000000">>> - handles[i].cancel_cause = SWITCH_CAUSE_LOSE_RACE;
</font><br>
<font color="#000000">>> + if ((hp!=NULL) &&
</font><br>
<font color="#000000">>> (hp->cause==SWITCH_CAUSE_SUCCESS)) { //Was this call taken
</font><br>
<font color="#000000">>> by another destination?
</font><br>
<font color="#000000">>> + //Yes, the race was lost
</font><br>
<font color="#000000">>> + handles[i].cancel_cause =
</font><br>
<font color="#000000">>> SWITCH_CAUSE_LOSE_RACE;
</font><br>
<font color="#000000">>> + } else {
</font><br>
<font color="#000000">>> + //No, something else happened, probably
</font><br>
<font color="#000000">>> Originator Cancel
</font><br>
<font color="#000000">>> + handles[i].cancel_cause =
</font><br>
<font color="#000000">>> SWITCH_CAUSE_ORIGINATOR_CANCEL;
</font><br>
<font color="#000000">>> + }
</font><br>
<font color="#000000">>> }
</font><br>
<font color="#000000">>> }
</font><br>
<font color="#000000">>> ===================================================================================================
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> Can someone retest this and check this in?
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> --
</font><br>
<font color="#000000">>> With kind regards
</font><br>
<font color="#000000">>> Peter Steinbach
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> Telefaks Services GmbH
</font><br>
<font color="#000000">>> mailto:lists <mailto:lists> (att)telefaks.de <<a href="http://telefaks.de">http://telefaks.de</a>>
</font><br>
<font color="#000000">>> Internet:<a href="http://www.telefaks.de">www.telefaks.de</a> <<a href="http://www.telefaks.de">http://www.telefaks.de</a>>
</font><br>
<font color="#000000">>>
</font><br>
<font color="#000000">>> Am 22.05.19 um 21:14 schrieb Jai Rangi:
</font><br>
<font color="#000000">>>> All,
</font><br>
<font color="#000000">>>> Running into a small issue with group calling, when the
</font><br>
<font color="#000000">>>> original caller hang up, phones dont show that call as
</font><br>
<font color="#000000">>>> missed call, cause of wrong reason code from freeswitch.
</font><br>
<font color="#000000">>>> Scenario:
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> * Caller -> FS (Groupcall) to 101 and 102
</font><br>
<font color="#000000">>>> * Phones ring
</font><br>
<font color="#000000">>>> * Caller hangup
</font><br>
<font color="#000000">>>> * Phones should see missed calls,
</font><br>
<font color="#000000">>>> * But free-switch send cancel with Reason:
</font><br>
<font color="#000000">>>> SIP;cause=200;text="Call completed elsewhere", where
</font><br>
<font color="#000000">>>> is should send Reason:
</font><br>
<font color="#000000">>>> SIP;cause=487;text="ORIGINATOR_CANCEL".
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> Here is what my bridge data.
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> </font><br>
bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
<br>
<font color="#000000">>>> /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
</font><br>
<font color="#000000">>>> ]user/<a href="mailto:101@192.168.5.50">101@192.168.5.50</a>:_:[ignore_early_media=true,leg_timeout=20
</font><br>
<font color="#000000">>>> ]user/<a href="mailto:102@192.168.5.50">102@192.168.5.50</a> <mailto:<a href="mailto:102@192.168.5.50">102@192.168.5.50</a>>)
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> If I send
</font><br>
<font color="#000000">>>> bridge(<all_threads=true,absolute_codec_string=PCMU,PCMA,G729,group_confirm_file=playback
</font><br>
<font color="#000000">>>> /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
</font><br>
<font color="#000000">>>> ]user/<a href="mailto:101@192.168.5.50">101@192.168.5.50</a> <mailto:<a href="mailto:101@192.168.5.50">101@192.168.5.50</a>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> Everything works fine.
</font><br>
<font color="#000000">>>> I see some old posts but no resolution.
</font><br>
<font color="#000000">>>> Freeswitch version on Debian 8.9
</font><br>
<font color="#000000">>>> FreeSWITCH (Version 1.6.16 git 3da6bd0 2017-04-07
</font><br>
<font color="#000000">>>> 16:49:13Z 64bit)
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> Any idea or suggestion for workaround?
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> Jai
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> _________________________________________________________________________
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> The FreeSWITCH project is sponsored by SignalWire<a href="https://signalwire.com">https://signalwire.com</a> <<a href="https://signalwire.com">https://signalwire.com</a>>
</font><br>
<font color="#000000">>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
</font><br>
<font color="#000000">>>> Build your next product on our scalable cloud platform.
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> Join our online community to chat in real time<a href="https://signalwire.community">https://signalwire.community</a> <<a href="https://signalwire.community">https://signalwire.community</a>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> Professional FreeSWITCH Services
</font><br>
<font color="#000000">>>> <a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a> <mailto:<a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a>>
</font><br>
<font color="#000000">>>> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> Official FreeSWITCH Sites
</font><br>
<font color="#000000">>>> <a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a> <<a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a>>
</font><br>
<font color="#000000">>>> <a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a> <<a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a>>
</font><br>
<font color="#000000">>>> <a href="https://cluecon.com">https://cluecon.com</a> <<a href="https://cluecon.com">https://cluecon.com</a>>
</font><br>
<font color="#000000">>>>
</font><br>
<font color="#000000">>>> FreeSWITCH-users mailing list
</font><br>
<font color="#000000">>>> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a> <mailto:<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>>
</font><br>
<font color="#000000">>>> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a> <<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>>
</font><br>
<font color="#000000">>>> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a> <<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>>
</font><br>
<font color="#000000">>>> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">> _________________________________________________________________________
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> The FreeSWITCH project is sponsored by SignalWire
</font><br>
<font color="#000000">> <a href="https://signalwire.com">https://signalwire.com</a> <<a href="https://signalwire.com">https://signalwire.com</a>>
</font><br>
<font color="#000000">> Enhance your FreeSWITCH install with disruptive priced SMS
</font><br>
<font color="#000000">> and PSTN services.
</font><br>
<font color="#000000">> Build your next product on our scalable cloud platform.
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Join our online community to chat in real time
</font><br>
<font color="#000000">> <a href="https://signalwire.community">https://signalwire.community</a> <<a href="https://signalwire.community">https://signalwire.community</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Professional FreeSWITCH Services
</font><br>
<font color="#000000">> <a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a> <mailto:<a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Official FreeSWITCH Sites
</font><br>
<font color="#000000">> <a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a> <<a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a>
</font><br>
<font color="#000000">> <<a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a>>
</font><br>
<font color="#000000">> <a href="https://cluecon.com">https://cluecon.com</a> <<a href="https://cluecon.com">https://cluecon.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> FreeSWITCH-users mailing list
</font><br>
<font color="#000000">> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>
</font><br>
<font color="#000000">> <mailto:<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>>
</font><br>
<font color="#000000">> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a> <<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>>
</font><br>
<font color="#000000">> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
</font><br>
<font color="#000000">> <<a href="http://lists.freeswitch.org/mailman/options/frees">http://lists.freeswitch.org/mailman/options/frees</a></font><br>
witch-users>
<br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> _________________________________________________________________________
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> The FreeSWITCH project is sponsored by SignalWire
</font><br>
<font color="#000000">> <a href="https://signalwire.com">https://signalwire.com</a> <<a href="https://signalwire.com">https://signalwire.com</a>>
</font><br>
<font color="#000000">> Enhance your FreeSWITCH install with disruptive priced SMS and
</font><br>
<font color="#000000">> PSTN services.
</font><br>
<font color="#000000">> Build your next product on our scalable cloud platform.
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Join our online community to chat in real time
</font><br>
<font color="#000000">> <a href="https://signalwire.community">https://signalwire.community</a> <<a href="https://signalwire.community">https://signalwire.community</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Professional FreeSWITCH Services
</font><br>
<font color="#000000">> <a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a> <mailto:<a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Official FreeSWITCH Sites
</font><br>
<font color="#000000">> <a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a> <<a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a>
</font><br>
<font color="#000000">> <<a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a>>
</font><br>
<font color="#000000">> <a href="https://cluecon.com">https://cluecon.com</a> <<a href="https://cluecon.com">https://cluecon.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> FreeSWITCH-users mailing list
</font><br>
<font color="#000000">> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>
</font><br>
<font color="#000000">> <mailto:<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>>
</font><br>
<font color="#000000">> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
</font><br>
<font color="#000000">> <<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>>
</font><br>
<font color="#000000">> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
</font><br>
<font color="#000000">> <<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> --
</font><br>
<font color="#000000">> Gregor Nanger
</font><br>
<font color="#000000">> *CTO*
</font><br>
<font color="#000000">> t./f.: 00386 (0) 7 6000 308/309 • m:. 00386 (0)41 756485
</font><br>
<font color="#000000">> • Infomedia d.o.o. • Jerebova 3, Novo mesto, Slovenia
</font><br>
<font color="#000000">> • <a href="http://www.infomedia.si">www.infomedia.si</a> <<a href="http://www.infomedia.si">http://www.infomedia.si</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> _________________________________________________________________________
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> The FreeSWITCH project is sponsored by SignalWire
</font><br>
<font color="#000000">> <a href="https://signalwire.com">https://signalwire.com</a> <<a href="https://signalwire.com">https://signalwire.com</a>>
</font><br>
<font color="#000000">> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
</font><br>
<font color="#000000">> services.
</font><br>
<font color="#000000">> Build your next product on our scalable cloud platform.
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Join our online community to chat in real time
</font><br>
<font color="#000000">> <a href="https://signalwire.community">https://signalwire.community</a> <<a href="https://signalwire.community">https://signalwire.community</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Professional FreeSWITCH Services
</font><br>
<font color="#000000">> <a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a> <mailto:<a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Official FreeSWITCH Sites
</font><br>
<font color="#000000">> <a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a> <<a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a> <<a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a>>
</font><br>
<font color="#000000">> <a href="https://cluecon.com">https://cluecon.com</a> <<a href="https://cluecon.com">https://cluecon.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> FreeSWITCH-users mailing list
</font><br>
<font color="#000000">> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>
</font><br>
<font color="#000000">> <mailto:<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>>
</font><br>
<font color="#000000">> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
</font><br>
<font color="#000000">> <<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>>
</font><br>
<font color="#000000">> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
</font><br>
<font color="#000000">> <<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>>
</font><br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a> <<a href="https://freeswitch.com">https://freeswitch.com</a>>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> _________________________________________________________________________
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> The FreeSWITCH project is sponsored by SignalWire <a href="https://signalwire.com">https://signalwire.com</a>
</font><br>
<font color="#000000">> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
</font><br>
<font color="#000000">> Build your next product on our scalable cloud platform.
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Join our online community to chat in real time <a href="https://signalwire.community">https://signalwire.community</a>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Professional FreeSWITCH Services
</font><br>
<font color="#000000">> <a href="mailto:sales@freeswitch.com">sales@freeswitch.com</a>
</font><br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> Official FreeSWITCH Sites
</font><br>
<font color="#000000">> <a href="https://freeswitch.com/oss">https://freeswitch.com/oss</a>
</font><br>
<font color="#000000">> <a href="https://freeswitch.org/confluence">https://freeswitch.org/confluence</a>
</font><br>
<font color="#000000">> <a href="https://cluecon.com">https://cluecon.com</a>
</font><br>
<font color="#000000">>
</font><br>
<font color="#000000">> FreeSWITCH-users mailing list
</font><br>
<font color="#000000">> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>
</font><br>
<font color="#000000">> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
</font><br>
<font color="#000000">> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
</font><br>
<font color="#000000">> <a href="https://freeswitch.com">https://freeswitch.com</a>
</font><br>
<font color="#000000">>
</font><br>
<BR />
<BR />
Christian Berger<br><br><br> <img src="cid:0eb5f48c.e33a6fec.jpg.9439d40e" width="119" height="64"><br><br>foncloud GmbH & Co KG<br>Hahlweg 2a<br>36093 Künzell<br><br>Tel: / <br>Fax: +49 661 968990-99<br><br><!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<p class="MsoNormal"><span style="font-size:10.5pt; mso-ascii-font-family:
calibri; mso-fareast-font-family:" times new roman" mso-hansi-font-family:calibri; color:black; mso-ansi-language:en-us;" lang="EN-US">Email: </span><span style="font-size:10.5pt; mso-ascii-font-family:calibri; mso-fareast-font-family:
" times new roman" mso-hansi-font-family:calibri; color:black; mso-ansi-language:
en-us;" lang="EN-US">Christian.Berger@foncloud.net<br>
Web: <a href="http://www.foncloud.net "><span style="mso-ascii-font-family:calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:calibri; mso-fareast-theme-font:
minor-latin; mso-hansi-font-family:calibri; mso-hansi-theme-font:minor-latin; color:black; text-decoration:none; text-underline:none;">www.foncloud.net</span></a><br></span></p><p class="MsoNormal"><br><span style="font-size:10.5pt; mso-ascii-font-family:calibri; mso-fareast-font-family:
" times new roman" mso-hansi-font-family:calibri; color:black; mso-ansi-language:
en-us;" lang="EN-US"></span><span style="font-size:7.5pt; mso-ascii-font-family:calibri; mso-fareast-font-family:
" times new roman" mso-hansi-font-family:calibri; color:black; mso-ansi-language:
en-us;" lang="EN-US"></span></p><div><div class="moz-text-html" lang="x-unicode"><div class="WordSection1"><p class="MsoNormal"><b><span style="color: black;">P.S.: Wussten Sie schon?<span class="apple-converted-space"> </span></span></b></p><p class="MsoNormal"><b><span style="color: black;">Unter<span class="apple-converted-space"> <a href="https://www.foncloud.net/wissen">https://www.foncloud.net/wissen</a> </span>finden Sie zahlreiche Informationen und hilfreiche Artikel rund um unsere Produkte und Services.</span></b></p><p class="MsoNormal"><span style="font-size:11.0pt;"> </span><font size="1"><br></font></p><p class="MsoNormal"><font size="1">Registergericht: Amtsgericht Fulda, Persönlich haftende Gesellschafterin der foncloud GmbH&Co.KG: Global Brain Network GmbH</font></p></div></div></div><font size="1">Geschäftsführer der Global Brain Network GmbH: Peter Krug Sitz der Gesellschaft: Künzell.<br><br>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.<br><br>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.</font><br><br><br><BR />
</body>
</html>