mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Force Groundwire to use GSM/LTE for emergency calls (#7371)
This applies to users in the United States. When a user dials 911 or 933 (commonly used for 911 testing) from the Groundwire app, the call is automatically placed using the device's cellular service. This approach can enhance location accuracy for emergency services and ensure more reliable call completion.
This commit is contained in:
@@ -13,6 +13,27 @@
|
||||
<voicemailNumber>*97</voicemailNumber>
|
||||
<subscribeForVoicemail>1</subscribeForVoicemail>
|
||||
<wsContactsUrl>https://{$row.server_address}/app/provision/index.php?address={$mac}&file=directory.json</wsContactsUrl>
|
||||
|
||||
<rewriting>
|
||||
<rule>
|
||||
<conditions>
|
||||
<condition type="equals" param="933"/>
|
||||
</conditions>
|
||||
<actions>
|
||||
<action type="overrideDialAction" param="gsmCall"/>
|
||||
</actions>
|
||||
</rule>
|
||||
|
||||
<rule>
|
||||
<conditions>
|
||||
<condition type="equals" param="911"/>
|
||||
</conditions>
|
||||
<actions>
|
||||
<action type="overrideDialAction" param="gsmCall"/>
|
||||
</actions>
|
||||
</rule>
|
||||
</rewriting>
|
||||
</account>
|
||||
|
||||
{if $row@index eq 1}{break}{/if}
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
|
||||
Reference in New Issue
Block a user