mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 03:33:49 +00:00
* Add the / character to the ALLOWED_CHARS variable to fix bug with front slashes being stripped. Previously was turning /var/lib/freeswitch into varlibfreeswitch * Update app_defaults.php Updating app defaults for Dialplan -> Domain Variables to set origination_callee_id_name to match the caller_destination instead of the destination number so that if you call another tenant in the same Fusion instance without is_local enabled the caller_destination shows instead of the tenant's called extension. * Update app_defaults.php Instead of removing the export all together we need to update it from destination_number to caller_destination. * Update 020_domain-variables.xml Set origination callee ID to caller_destination so internal calls don't show "Outbound Call" --------- Authored-by: Jacob Buscher <jacob@bfitec.com>
7 lines
370 B
XML
7 lines
370 B
XML
<extension name="domain-variables" number="" context="${domain_name}" continue="true" app_uuid="9f356fe7-8cf8-4c14-8fe2-6daf89304458" order="20">
|
|
<condition>
|
|
<action application="export" data="origination_callee_id_name=${caller_destination}" enabled="true"/>
|
|
<action application="set" data="operator=1000" inline="true" enabled="true"/>
|
|
</condition>
|
|
</extension>
|