mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-31 17:33:48 +00:00
* Fix Yealink provisioning for contacts/groups Fix the Yealink provision templates to allow for directory_extensions, groups and users. * Fix group_uuid and user_uuid messup * Yealink directory and provisioning changes Includes the changes from PR 1582 with some fixes to the SQL. Also merged all the directory_* options into ONE directory.xml Will need to call the it with any of these: http://mydomain/app/provision/?file=directory.xml&contacts=groups http://mydomain/app/provision/?file=directory.xml&contacts=users http://mydomain/app/provision/?file=directory.xml&contacts=extensions http://mydomain/app/provision/?file=directory.xml&contacts=all * Flow route SMS
18 lines
792 B
XML
18 lines
792 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<include>
|
|
<context name="default">
|
|
<extension name="demo">
|
|
<condition field="to" expression="^(.*)$">
|
|
<!-- <action application="lua" data="test.lua"/> -->
|
|
<!-- <action application="reply" data="Hello, you said: ${_body}"/> -->
|
|
</condition>
|
|
</extension>
|
|
</context>
|
|
<context name="public">
|
|
<extension name="demo">
|
|
<condition field="to" expression="^(.*)$">
|
|
<action application="lua" data="app.lua sms outbound"/>
|
|
</condition>
|
|
</extension>
|
|
</context>
|
|
</include> |