mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Fix sort on call broadcast display (#6663)
* Fix sort on call broadcast display * Grandstream Template Updates For grp/gxp, added settings for intercom auto answer and multicast paging For gxw42xx - Added off-hook auto-dial settings to all lines For wp820 - Fixed incorrect P-codes and added setings for wifi roaming Contributed new template for gxv3480
This commit is contained in:
committed by
GitHub
parent
8614f617a2
commit
0f3b212586
@@ -118,7 +118,7 @@
|
||||
|
||||
//get the call broadcasts
|
||||
$sql = str_replace('count(*)','*', $sql);
|
||||
$sql .= order_by($order_by, $order);
|
||||
$sql .= order_by($order_by, $order, 'broadcast_name', 'asc');
|
||||
$sql .= limit_offset($rows_per_page, $offset);
|
||||
$database = new database;
|
||||
$result = $database->select($sql, $parameters, 'all');
|
||||
|
||||
@@ -1077,4 +1077,44 @@
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "XMLApp";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "label to display for XML application softkey";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "4ec80f34-4edc-476f-a04d-b157b85b69d3";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "grandstream_intercom_playwarningtoneforautoanswer";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "numeric";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "1";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "153481e8-7a49-4d01-80f6-e7caa37a7ce2";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "grandstream_multicast_paging_codec";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "numeric";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "9";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 \r\nDefault is 0.";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "c1039b72-fd3a-4de7-8a74-e5e967f03b2a";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "grandstream_multicast_channel_number";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "numeric";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "1";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Multicast Channel Number \r\n\r\nNumber: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets.) Default is 0 - WP8xx defaults to 1-cannot use 0";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "a3da99f4-c970-439b-a42f-b632291ec97c";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "grandstream_multicast_listening_address_1";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "224.0.1.116:5001";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Multicast Listening\r\n\r\nPriority 1 Listening Address \r\n\r\n(224.0.1.116:5001 is default address for WP8xx PTT)";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "7bcd0340-72bb-4043-8ec1-d58ffed0d518";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "grandstream_multicast_listening_label_1";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Listening group name, for example: \"Cordless\", \"PTT\", or \"WalkieTalkie\"";
|
||||
?>
|
||||
|
||||
@@ -933,7 +933,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>1</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -3765,12 +3769,20 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
<P8455>{$account.1.display_name}</P8455>
|
||||
@@ -3779,12 +3791,20 @@
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569>224.0.1.117:5003</P1569>
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570>Page</P1570>
|
||||
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
|
||||
@@ -933,7 +933,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>1</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -4617,12 +4621,20 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
<P8455>{$account.1.display_name}</P8455>
|
||||
@@ -4631,12 +4643,20 @@
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569></P1569>
|
||||
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570></P1570>
|
||||
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
@@ -5259,7 +5279,9 @@
|
||||
<!-- # Number: 1, 2 -->
|
||||
<!-- # Mandatory -->
|
||||
{if isset($grandstream_key_mode)}
|
||||
<P8369>{$grandstream_key_mode}</P8369> <!-- Call Screen Settings # Key Mode. 1 - Line Mode, 2 - Account Mode. Default is 1 -->
|
||||
<P8369>{$grandstream_key_mode}</P8369>
|
||||
{else}
|
||||
<P8369>1</P8369>
|
||||
{/if}
|
||||
|
||||
<!-- # Transfer Mode via VPK. 0 - Blind Transfer, 1 - Attended Transfer, 2 - New Call. Default is 0 -->
|
||||
|
||||
@@ -937,7 +937,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>1</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -5891,11 +5895,19 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
@@ -5905,11 +5917,19 @@
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569>224.0.1.117:5003</P1569>
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570>Page</P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
@@ -938,7 +938,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>1</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -6928,11 +6932,19 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
@@ -6942,11 +6954,19 @@
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569>224.0.1.117:5003</P1569>
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570>Page</P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
@@ -933,7 +933,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>1</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -7807,11 +7811,19 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
@@ -7821,11 +7833,19 @@
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569>224.0.1.117:5003</P1569>
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570>Page</P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
@@ -941,7 +941,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>0</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -7779,25 +7783,41 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
<P8455></P8455>
|
||||
<P8455>{$account.1.display_name}</P8455>
|
||||
|
||||
<!-- ### Multicast Listening ### -->
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569></P1569>
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570></P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
@@ -940,7 +940,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>0</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -6639,7 +6643,11 @@
|
||||
<!-- # Web Access Mode. 0 - HTTPS, 1 - HTTP, 2 - Disabled, 3 - Both HTTP and HTTPS. Default is 1 -->
|
||||
<!-- # Number: 0, 1, 2, 3 -->
|
||||
<!-- # Mandatory -->
|
||||
{if isset($grandstream_web_access_mode)}
|
||||
<P1650>{$grandstream_web_access_mode}</P1650>
|
||||
{else}
|
||||
<P1650>0</P1650>
|
||||
{/if}
|
||||
|
||||
<!-- # Enable User Web Access. 0 - Disabled, 1 - Enabled. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
@@ -7778,25 +7786,41 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
<P8455></P8455>
|
||||
<P8455>{$account.1.display_name}</P8455>
|
||||
|
||||
<!-- ### Multicast Listening ### -->
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569></P1569>
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570></P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
@@ -941,7 +941,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>0</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -7779,25 +7783,41 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
<P8455></P8455>
|
||||
<P8455>{$account.1.display_name}</P8455>
|
||||
|
||||
<!-- ### Multicast Listening ### -->
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
<P1569></P1569>
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570></P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
@@ -941,7 +941,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>0</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -7777,29 +7781,41 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
<P8455></P8455>
|
||||
<P8455>{$account.1.display_name}</P8455>
|
||||
|
||||
<!-- ### Multicast Listening ### -->
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
{if isset($multicast_listen_address_1)}
|
||||
<P1569>{$multicast_listen_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570></P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
@@ -945,7 +945,11 @@
|
||||
<!-- # Play warning tone for Auto Answer Intercom. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P26072>0</P26072>
|
||||
{if isset($grandstream_intercom_playwarningtoneforautoanswer) }
|
||||
<P26072>{$grandstream_intercom_playwarningtoneforautoanswer}</P26072>
|
||||
{else}
|
||||
<P26072>0</P26072>
|
||||
{/if}
|
||||
|
||||
<!-- # Custom Call-Info for Auto Answer. -->
|
||||
<!-- # String -->
|
||||
@@ -7790,29 +7794,41 @@
|
||||
<!-- # Multicast Paging Codec. 18 - G.729A/B, 0 - PCMU, 8 - PCMA, 2 - G.726-32, 9 - G.722, 98 - iLBC, 4- G.723.1 -->
|
||||
<!-- # Number: 18, 0, 8, 2, 9, 98, 4. Default is 0. -->
|
||||
<!-- # Mandatory -->
|
||||
<P1568>0</P1568>
|
||||
{if isset($grandstream_multicast_paging_codec) }
|
||||
<P1568>{$grandstream_multicast_paging_codec}</P1568>
|
||||
{else}
|
||||
<P1568>0</P1568>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicase Channel Number -->
|
||||
<!-- # Number: 0 - 50 (0 for normal RTP packets, 1-50 for Polycom multicast format packets). Default is 0 -->
|
||||
<P8454>0</P8454>
|
||||
{if isset($grandstream_multicast_channel_number) }
|
||||
<P8454>{$grandstream_multicast_channel_number}</P8454>
|
||||
{else}
|
||||
<P8454>0</P8454>
|
||||
{/if}
|
||||
|
||||
<!-- # Multicast Sender ID -->
|
||||
<!-- # Strings -->
|
||||
<P8455></P8455>
|
||||
<P8455>{$account.1.display_name}</P8455>
|
||||
|
||||
<!-- ### Multicast Listening ### -->
|
||||
<!-- # Priority 1 -->
|
||||
<!-- # Listening Address -->
|
||||
<!-- # String -->
|
||||
{if isset($multicast_listen_address_1)}
|
||||
<P1569>{$multicast_listen_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
{if isset($grandstream_multicast_listening_address_1) }
|
||||
<P1569>{$grandstream_multicast_listening_address_1}</P1569>
|
||||
{else}
|
||||
<P1569></P1569>
|
||||
{/if}
|
||||
|
||||
<!-- # Label -->
|
||||
<!-- # String -->
|
||||
<P1570></P1570>
|
||||
{if isset($grandstream_multicast_listening_label_1) }
|
||||
<P1570>{$grandstream_multicast_listening_label_1}</P1570>
|
||||
{else}
|
||||
<P1570></P1570>
|
||||
{/if}
|
||||
|
||||
<!-- # Priority 2 -->
|
||||
<!-- # Listening Address -->
|
||||
|
||||
1308
resources/templates/provision/grandstream/gxv3480/{$mac}.xml
Normal file
1308
resources/templates/provision/grandstream/gxv3480/{$mac}.xml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -801,12 +801,12 @@
|
||||
<!-- Preferred DTMF Method 2 -->
|
||||
<!-- Number: 100 to 102 -->
|
||||
<!-- Mandatory -->
|
||||
<P851>100</P851>
|
||||
<P851>101</P851>
|
||||
|
||||
<!-- Preferred DTMF Method 3 -->
|
||||
<!-- Number: 100 to 102 -->
|
||||
<!-- Mandatory -->
|
||||
<P852>100</P852>
|
||||
<P852>102</P852>
|
||||
|
||||
<!-- Disable DTMF Negotiation. 0 - no, 1 - yes -->
|
||||
<!-- Number: 0,1 -->
|
||||
@@ -3276,7 +3276,11 @@
|
||||
<P4595>1</P4595>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_1)}
|
||||
<P4210>{$grandstream_offhook_auto_dial_1}</P4210>
|
||||
{else}
|
||||
<P4210></P4210>
|
||||
{/if}
|
||||
<P4300>0</P4300>
|
||||
|
||||
<P4521>1</P4521>
|
||||
@@ -3295,7 +3299,11 @@
|
||||
<P4596>1</P4596>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_2)}
|
||||
<P4211>{$grandstream_offhook_auto_dial_2}</P4211>
|
||||
{else}
|
||||
<P4211></P4211>
|
||||
{/if}
|
||||
<P4301>0</P4301>
|
||||
|
||||
<P4522>1</P4522>
|
||||
@@ -3314,7 +3322,11 @@
|
||||
<P4597>1</P4597>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_3)}
|
||||
<P4212>{$grandstream_offhook_auto_dial_3}</P4212>
|
||||
{else}
|
||||
<P4212></P4212>
|
||||
{/if}
|
||||
<P4302>0</P4302>
|
||||
|
||||
<P4523>1</P4523>
|
||||
@@ -3333,7 +3345,11 @@
|
||||
<P4598>1</P4598>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_4)}
|
||||
<P4213>{$grandstream_offhook_auto_dial_4}</P4213>
|
||||
{else}
|
||||
<P4213></P4213>
|
||||
{/if}
|
||||
<P4303>0</P4303>
|
||||
|
||||
<P4524>1</P4524>
|
||||
@@ -3352,7 +3368,11 @@
|
||||
<P4599>1</P4599>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_5)}
|
||||
<P4214>{$grandstream_offhook_auto_dial_5}</P4214>
|
||||
{else}
|
||||
<P4214></P4214>
|
||||
{/if}
|
||||
<P4304>0</P4304>
|
||||
|
||||
<P4525>1</P4525>
|
||||
@@ -3371,7 +3391,11 @@
|
||||
<P4600>1</P4600>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_6)}
|
||||
<P4215>{$grandstream_offhook_auto_dial_6}</P4215>
|
||||
{else}
|
||||
<P4215></P4215>
|
||||
{/if}
|
||||
<P4305>0</P4305>
|
||||
|
||||
<P4526>1</P4526>
|
||||
@@ -3390,7 +3414,11 @@
|
||||
<P4601>1</P4601>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_7)}
|
||||
<P4216>{$grandstream_offhook_auto_dial_7}</P4216>
|
||||
{else}
|
||||
<P4216></P4216>
|
||||
{/if}
|
||||
<P4306>0</P4306>
|
||||
|
||||
<P4527>1</P4527>
|
||||
@@ -3409,7 +3437,11 @@
|
||||
<P4602>1</P4602>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_8)}
|
||||
<P4217>{$grandstream_offhook_auto_dial_8}</P4217>
|
||||
{else}
|
||||
<P4217></P4217>
|
||||
{/if}
|
||||
<P4307>0</P4307>
|
||||
|
||||
<P4528>1</P4528>
|
||||
@@ -3428,7 +3460,11 @@
|
||||
<P4603>1</P4603>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_9)}
|
||||
<P4218>{$grandstream_offhook_auto_dial_9}</P4218>
|
||||
{else}
|
||||
<P4218></P4218>
|
||||
{/if}
|
||||
<P4308>0</P4308>
|
||||
|
||||
<P4529>1</P4529>
|
||||
@@ -3447,7 +3483,11 @@
|
||||
<P4604>1</P4604>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_10)}
|
||||
<P4219>{$grandstream_offhook_auto_dial_10}</P4219>
|
||||
{else}
|
||||
<P4219></P4219>
|
||||
{/if}
|
||||
<P4309>0</P4309>
|
||||
|
||||
<P4530>1</P4530>
|
||||
@@ -3466,7 +3506,11 @@
|
||||
<P4605>1</P4605>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_11)}
|
||||
<P4220>{$grandstream_offhook_auto_dial_11}</P4220>
|
||||
{else}
|
||||
<P4220></P4220>
|
||||
{/if}
|
||||
<P4310>0</P4310>
|
||||
|
||||
<P4531>1</P4531>
|
||||
@@ -3485,7 +3529,11 @@
|
||||
<P4606>1</P4606>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_12)}
|
||||
<P4221>{$grandstream_offhook_auto_dial_12}</P4221>
|
||||
{else}
|
||||
<P4221></P4221>
|
||||
{/if}
|
||||
<P4311>0</P4311>
|
||||
|
||||
<P4532>1</P4532>
|
||||
@@ -3504,7 +3552,11 @@
|
||||
<P4607>1</P4607>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_13)}
|
||||
<P4222>{$grandstream_offhook_auto_dial_13}</P4222>
|
||||
{else}
|
||||
<P4222></P4222>
|
||||
{/if}
|
||||
<P4312>0</P4312>
|
||||
|
||||
<P4533>1</P4533>
|
||||
@@ -3523,7 +3575,11 @@
|
||||
<P4608>1</P4608>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_14)}
|
||||
<P4223>{$grandstream_offhook_auto_dial_14}</P4223>
|
||||
{else}
|
||||
<P4223></P4223>
|
||||
{/if}
|
||||
<P4313>0</P4313>
|
||||
|
||||
<P4534>1</P4534>
|
||||
@@ -3542,7 +3598,11 @@
|
||||
<P4609>1</P4609>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_15)}
|
||||
<P4224>{$grandstream_offhook_auto_dial_15}</P4224>
|
||||
{else}
|
||||
<P4224></P4224>
|
||||
{/if}
|
||||
<P4314>0</P4314>
|
||||
|
||||
<P4535>1</P4535>
|
||||
@@ -3561,7 +3621,11 @@
|
||||
<P4610>1</P4610>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_16)}
|
||||
<P4225>{$grandstream_offhook_auto_dial_16}</P4225>
|
||||
{else}
|
||||
<P4225></P4225>
|
||||
{/if}
|
||||
<P4315>0</P4315>
|
||||
|
||||
<P4536>1</P4536>
|
||||
@@ -3580,7 +3644,11 @@
|
||||
<P4611>1</P4611>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_17)}
|
||||
<P4226>{$grandstream_offhook_auto_dial_17}</P4226>
|
||||
{else}
|
||||
<P4226></P4226>
|
||||
{/if}
|
||||
<P4316>0</P4316>
|
||||
|
||||
<P4537>1</P4537>
|
||||
@@ -3599,7 +3667,11 @@
|
||||
<P4612>1</P4612>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_18)}
|
||||
<P4227>{$grandstream_offhook_auto_dial_18}</P4227>
|
||||
{else}
|
||||
<P4227></P4227>
|
||||
{/if}
|
||||
<P4317>0</P4317>
|
||||
|
||||
<P4538>1</P4538>
|
||||
@@ -3618,7 +3690,11 @@
|
||||
<P4613>1</P4613>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_19)}
|
||||
<P4228>{$grandstream_offhook_auto_dial_19}</P4228>
|
||||
{else}
|
||||
<P4228></P4228>
|
||||
{/if}
|
||||
<P4318>0</P4318>
|
||||
|
||||
<P4539>1</P4539>
|
||||
@@ -3637,7 +3713,11 @@
|
||||
<P4614>1</P4614>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_20)}
|
||||
<P4229>{$grandstream_offhook_auto_dial_20}</P4229>
|
||||
{else}
|
||||
<P4229></P4229>
|
||||
{/if}
|
||||
<P4319>0</P4319>
|
||||
|
||||
<P4540>1</P4540>
|
||||
@@ -3656,7 +3736,11 @@
|
||||
<P4615>1</P4615>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_21)}
|
||||
<P4230>{$grandstream_offhook_auto_dial_21}</P4230>
|
||||
{else}
|
||||
<P4230></P4230>
|
||||
{/if}
|
||||
<P4320>0</P4320>
|
||||
|
||||
<P4541>1</P4541>
|
||||
@@ -3675,7 +3759,11 @@
|
||||
<P4616>1</P4616>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_22)}
|
||||
<P4231>{$grandstream_offhook_auto_dial_22}</P4231>
|
||||
{else}
|
||||
<P4231></P4231>
|
||||
{/if}
|
||||
<P4321>0</P4321>
|
||||
|
||||
<P4542>1</P4542>
|
||||
@@ -3694,7 +3782,11 @@
|
||||
<P4617>1</P4617>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_23)}
|
||||
<P4232>{$grandstream_offhook_auto_dial_23}</P4232>
|
||||
{else}
|
||||
<P4232></P4232>
|
||||
{/if}
|
||||
<P4322>0</P4322>
|
||||
|
||||
<P4543>1</P4543>
|
||||
@@ -3713,7 +3805,11 @@
|
||||
<P4618>1</P4618>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_24)}
|
||||
<P4233>{$grandstream_offhook_auto_dial_24}</P4233>
|
||||
{else}
|
||||
<P4233></P4233>
|
||||
{/if}
|
||||
<P4323>0</P4323>
|
||||
|
||||
<P4544>1</P4544>
|
||||
@@ -3732,7 +3828,11 @@
|
||||
<P4619>1</P4619>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_25)}
|
||||
<P4800>{$grandstream_offhook_auto_dial_25}</P4800>
|
||||
{else}
|
||||
<P4800></P4800>
|
||||
{/if}
|
||||
<P4324>0</P4324>
|
||||
|
||||
<P4545>1</P4545>
|
||||
@@ -3752,7 +3852,11 @@
|
||||
<P4620>1</P4620>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_26)}
|
||||
<P4801>{$grandstream_offhook_auto_dial_26}</P4801>
|
||||
{else}
|
||||
<P4801></P4801>
|
||||
{/if}
|
||||
<P4325>0</P4325>
|
||||
|
||||
<P4546>1</P4546>
|
||||
@@ -3771,7 +3875,11 @@
|
||||
<P4621>1</P4621>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_27)}
|
||||
<P4802>{$grandstream_offhook_auto_dial_27}</P4802>
|
||||
{else}
|
||||
<P4802></P4802>
|
||||
{/if}
|
||||
<P4326>0</P4326>
|
||||
|
||||
<P4547>1</P4547>
|
||||
@@ -3790,7 +3898,11 @@
|
||||
<P4622>1</P4622>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_28)}
|
||||
<P4803>{$grandstream_offhook_auto_dial_28}</P4803>
|
||||
{else}
|
||||
<P4803></P4803>
|
||||
{/if}
|
||||
<P4327>0</P4327>
|
||||
|
||||
<P4548>1</P4548>
|
||||
@@ -3809,7 +3921,11 @@
|
||||
<P4623>1</P4623>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_29)}
|
||||
<P4804>{$grandstream_offhook_auto_dial_29}</P4804>
|
||||
{else}
|
||||
<P4804></P4804>
|
||||
{/if}
|
||||
<P4328>0</P4328>
|
||||
|
||||
<P4549>1</P4549>
|
||||
@@ -3828,7 +3944,11 @@
|
||||
<P4624>1</P4624>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_30)}
|
||||
<P4805>{$grandstream_offhook_auto_dial_30}</P4805>
|
||||
{else}
|
||||
<P4805></P4805>
|
||||
{/if}
|
||||
<P4329>0</P4329>
|
||||
|
||||
<P4808>1</P4808>
|
||||
@@ -3847,7 +3967,11 @@
|
||||
<P4625>1</P4625>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_31)}
|
||||
<P4806>{$grandstream_offhook_auto_dial_31}</P4806>
|
||||
{else}
|
||||
<P4806></P4806>
|
||||
{/if}
|
||||
<P4250>0</P4250>
|
||||
|
||||
<P4809>1</P4809>
|
||||
@@ -3866,7 +3990,11 @@
|
||||
<P4626>1</P4626>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_32)}
|
||||
<P4807>{$grandstream_offhook_auto_dial_32}</P4807>
|
||||
{else}
|
||||
<P4807></P4807>
|
||||
{/if}
|
||||
<P4251>0</P4251>
|
||||
|
||||
<P4810>1</P4810>
|
||||
@@ -3885,7 +4013,11 @@
|
||||
<P21384>1</P21384>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_33)}
|
||||
<P21448>{$grandstream_offhook_auto_dial_33}</P21448>
|
||||
{else}
|
||||
<P21448></P21448>
|
||||
{/if}
|
||||
<P21320>0</P21320>
|
||||
|
||||
<P21512>1</P21512>
|
||||
@@ -3904,7 +4036,11 @@
|
||||
<P21385>1</P21385>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_34)}
|
||||
<P21449>{$grandstream_offhook_auto_dial_34}</P21449>
|
||||
{else}
|
||||
<P21449></P21449>
|
||||
{/if}
|
||||
<P21321>0</P21321>
|
||||
|
||||
<P21513>1</P21513>
|
||||
@@ -3923,7 +4059,11 @@
|
||||
<P21386>1</P21386>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_35)}
|
||||
<P21450>{$grandstream_offhook_auto_dial_35}</P21450>
|
||||
{else}
|
||||
<P21450></P21450>
|
||||
{/if}
|
||||
<P21322>0</P21322>
|
||||
|
||||
<P21514>1</P21514>
|
||||
@@ -3942,7 +4082,11 @@
|
||||
<P21387>1</P21387>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_36)}
|
||||
<P21451>{$grandstream_offhook_auto_dial_36}</P21451>
|
||||
{else}
|
||||
<P21451></P21451>
|
||||
{/if}
|
||||
<P21323>0</P21323>
|
||||
|
||||
<P21515>1</P21515>
|
||||
@@ -3961,7 +4105,11 @@
|
||||
<P21388>1</P21388>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_37)}
|
||||
<P21452>{$grandstream_offhook_auto_dial_37}</P21452>
|
||||
{else}
|
||||
<P21452></P21452>
|
||||
{/if}
|
||||
<P21324>0</P21324>
|
||||
|
||||
<P21516>1</P21516>
|
||||
@@ -3980,7 +4128,11 @@
|
||||
<P21389>1</P21389>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_38)}
|
||||
<P21453>{$grandstream_offhook_auto_dial_38}</P21453>
|
||||
{else}
|
||||
<P21453></P21453>
|
||||
{/if}
|
||||
<P21325>0</P21325>
|
||||
|
||||
<P21517>1</P21517>
|
||||
@@ -3999,7 +4151,11 @@
|
||||
<P21390>1</P21390>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_39)}
|
||||
<P21454>{$grandstream_offhook_auto_dial_39}</P21454>
|
||||
{else}
|
||||
<P21454></P21454>
|
||||
{/if}
|
||||
<P21326>0</P21326>
|
||||
|
||||
<P21518>1</P21518>
|
||||
@@ -4018,7 +4174,11 @@
|
||||
<P21391>1</P21391>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_40)}
|
||||
<P21455>{$grandstream_offhook_auto_dial_40}</P21455>
|
||||
{else}
|
||||
<P21455></P21455>
|
||||
{/if}
|
||||
<P21327>0</P21327>
|
||||
|
||||
<P21519>1</P21519>
|
||||
@@ -4037,7 +4197,11 @@
|
||||
<P21392>1</P21392>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_41)}
|
||||
<P21456>{$grandstream_offhook_auto_dial_41}</P21456>
|
||||
{else}
|
||||
<P21456></P21456>
|
||||
{/if}
|
||||
<P21328>0</P21328>
|
||||
|
||||
<P21520>1</P21520>
|
||||
@@ -4056,7 +4220,11 @@
|
||||
<P21393>1</P21393>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_42)}
|
||||
<P21457>{$grandstream_offhook_auto_dial_42}</P21457>
|
||||
{else}
|
||||
<P21457></P21457>
|
||||
{/if}
|
||||
<P21329>0</P21329>
|
||||
|
||||
<P21521>1</P21521>
|
||||
@@ -4075,7 +4243,11 @@
|
||||
<P21394>1</P21394>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_43)}
|
||||
<P21458>{$grandstream_offhook_auto_dial_43}</P21458>
|
||||
{else}
|
||||
<P21458></P21458>
|
||||
{/if}
|
||||
<P21330>0</P21330>
|
||||
|
||||
<P21522>1</P21522>
|
||||
@@ -4094,7 +4266,11 @@
|
||||
<P21395>1</P21395>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_44)}
|
||||
<P21459>{$grandstream_offhook_auto_dial_44}</P21459>
|
||||
{else}
|
||||
<P21459></P21459>
|
||||
{/if}
|
||||
<P21331>0</P21331>
|
||||
|
||||
<P21523>1</P21523>
|
||||
@@ -4113,7 +4289,11 @@
|
||||
<P21396>1</P21396>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_45)}
|
||||
<P21460>{$grandstream_offhook_auto_dial_45}</P21460>
|
||||
{else}
|
||||
<P21460></P21460>
|
||||
{/if}
|
||||
<P21332>0</P21332>
|
||||
|
||||
<P21524>1</P21524>
|
||||
@@ -4132,7 +4312,11 @@
|
||||
<P21397>1</P21397>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_46)}
|
||||
<P21461>{$grandstream_offhook_auto_dial_46}</P21461>
|
||||
{else}
|
||||
<P21461></P21461>
|
||||
{/if}
|
||||
<P21333>0</P21333>
|
||||
|
||||
<P21525>1</P21525>
|
||||
@@ -4151,7 +4335,11 @@
|
||||
<P21398>1</P21398>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_47)}
|
||||
<P21462>{$grandstream_offhook_auto_dial_47}</P21462>
|
||||
{else}
|
||||
<P21462></P21462>
|
||||
{/if}
|
||||
<P21334>0</P21334>
|
||||
|
||||
<P21526>1</P21526>
|
||||
@@ -4170,7 +4358,11 @@
|
||||
<P21399>1</P21399>
|
||||
{/if}
|
||||
|
||||
{if isset($grandstream_offhook_auto_dial_48)}
|
||||
<P21463>{$grandstream_offhook_auto_dial_48}</P21463>
|
||||
{else}
|
||||
<P21463></P21463>
|
||||
{/if}
|
||||
<P21335>0</P21335>
|
||||
|
||||
<P21527>1</P21527>
|
||||
|
||||
@@ -376,17 +376,29 @@
|
||||
<!-- # Send DTMF: In-audio. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P2401>0</P2401>
|
||||
{if isset($grandstream_senddtmf_inaudio) }
|
||||
<P2301>{$grandstream_senddtmf_inaudio}</P2301>
|
||||
{else}
|
||||
<P2301>0</P2301>
|
||||
{/if}
|
||||
|
||||
<!-- # Send DTMF: Via RTP (RFC2833). 0 - No, 1 - Yes. Default is 1 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P2402>1</P2402>
|
||||
{if isset($grandstream_senddtmf_rtp) }
|
||||
<P2302>{$grandstream_senddtmf_rtp}</P2302>
|
||||
{else}
|
||||
<P2302>1</P2302>
|
||||
{/if}
|
||||
|
||||
<!-- # Send DTMF: Via SIP INFO. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P2403>0</P2403>
|
||||
{if isset($grandstream_senddtmf_sipinfo) }
|
||||
<P2303>{$grandstream_senddtmf_sipinfo}</P2303>
|
||||
{else}
|
||||
<P2303>0</P2303>
|
||||
{/if}
|
||||
|
||||
<!-- # DTMF Payload Type. Default is 101 -->
|
||||
<!-- # Number: 96 - 127 -->
|
||||
@@ -1030,27 +1042,27 @@
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
{if isset($grandstream_senddtmf_inaudio) }
|
||||
<P2301>{$grandstream_senddtmf_inaudio}</P2301>
|
||||
<P2401>{$grandstream_senddtmf_inaudio}</P2401>
|
||||
{else}
|
||||
<P2301>0</P2301>
|
||||
<P2401>0</P2401>
|
||||
{/if}
|
||||
|
||||
<!-- # Send DTMF: Via RTP (RFC2833). 0 - No, 1 - Yes. Default is 1 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
{if isset($grandstream_senddtmf_rtp) }
|
||||
<P2302>{$grandstream_senddtmf_rtp}</P2302>
|
||||
<P2402>{$grandstream_senddtmf_rtp}</P2402>
|
||||
{else}
|
||||
<P2302>1</P2302>
|
||||
<P2402>1</P2402>
|
||||
{/if}
|
||||
|
||||
<!-- # Send DTMF: Via SIP INFO. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
{if isset($grandstream_senddtmf_sipinfo) }
|
||||
<P2303>{$grandstream_senddtmf_sipinfo}</P2303>
|
||||
<P2403>{$grandstream_senddtmf_sipinfo}</P2403>
|
||||
{else}
|
||||
<P2303>0</P2303>
|
||||
<P2403>0</P2403>
|
||||
{/if}
|
||||
|
||||
<!-- # DTMF Payload Type. Default is 101 -->
|
||||
@@ -1339,7 +1351,7 @@
|
||||
<!-- # Use Random Port. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
<!-- # Mandatory -->
|
||||
<P78>0</P78>
|
||||
<P78>1</P78>
|
||||
|
||||
<!-- # Disable in-call DTMF display. 0 - No, 1 - Yes. Default is 0 -->
|
||||
<!-- # Number: 0, 1 -->
|
||||
@@ -1838,20 +1850,25 @@
|
||||
|
||||
<!-- # Vendor Class ID (Option 60) -->
|
||||
<!-- # String -->
|
||||
<P148>Grandstream WP800</P148>
|
||||
<!-- <P148>Grandstream WP800</P148> -->
|
||||
|
||||
<!-- #################################################################### -->
|
||||
<!-- # Network Settings/Wi-Fi Settings/Wi-Fi Roaming ## -->
|
||||
<!-- #################################################################### -->
|
||||
<!-- # Scan interval with good signal -->
|
||||
<!-- # P22230 -->
|
||||
<!-- # Scan interval with good signal Default is 5 Range 5 - 600 -->
|
||||
{if isset($grandstream_wifi_roam_scan_interval_good)}
|
||||
<P22230>{$grandstream_wifi_roam_scan_interval_good}</P22230>
|
||||
{/if}
|
||||
|
||||
<!-- # Scan interval with poor signal -->
|
||||
<!-- # P22231 -->
|
||||
|
||||
<!-- # Roaming signal threshold -->
|
||||
<!-- # Number: -30 - 100 -->
|
||||
<!-- # P22232 -->
|
||||
<!-- # Scan interval with poor signal Default is 600 (or 5 for aggressive) Range 5 - 600 -->
|
||||
{if isset($grandstream_wifi_roam_scan_interval_poor)}
|
||||
<P22231>{$grandstream_wifi_roam_scan_interval_poor}</P22231>
|
||||
{/if}
|
||||
<!-- # Roaming signal threshold -->
|
||||
<!-- # Number: -100 - -30 Default is -70 -->
|
||||
{if isset($grandstream_wifi_roam_signal_threshold)}
|
||||
<P22232>{$grandstream_wifi_roam_signal_threshold}</P22232>
|
||||
{/if}
|
||||
|
||||
<!-- #################################################################### -->
|
||||
<!-- # Network Settings/OpenVPN® Settings ## -->
|
||||
@@ -2284,7 +2301,7 @@
|
||||
|
||||
<!-- # Connection Request Port. -->
|
||||
<!-- # Number -->
|
||||
<P4518></P4518>
|
||||
<P4518>7547</P4518>
|
||||
|
||||
<!-- # CPE Cert File -->
|
||||
<!-- # String -->
|
||||
|
||||
Reference in New Issue
Block a user