Fix Avaya BLF issue on reSUBSCRIBE (#7164)
* Fix Avaya BLF issue on reSUBSCRIBE * fix an accidental modification
This commit is contained in:
parent
3415d57751
commit
2f30694ead
|
|
@ -192,5 +192,13 @@
|
|||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "4f4641c3-7398-421e-a0b3-5d7960813728";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "provision";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "avaya_blf_subscription_expiry";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "60";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "The expiry that Avaya phones will populate in their SUBSCRIBE messages. This should be set to equal or less than the nonce-ttl value that is set in your SIP profile.";
|
||||
$y++;
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
|
|||
## Do not require TLS to accept Out-Of-Dialog REFER messages
|
||||
SET ENABLE_OOD_MSG_TLS_ONLY 0
|
||||
|
||||
# Set the default SUBSCRIBE expiry time
|
||||
# This needs to be set to a value equal to or lower than the 'nonce-ttl' that is in your SIP Profile
|
||||
# The defaule for 'nonce-ttl' is 60
|
||||
SET OUTBOUND_SUBSCRIPTION_REQUEST_DURATION {if isset($avaya_blf_subscription_expiry)}{$avaya_blf_subscription_expiry}{else}60{/if}
|
||||
|
||||
## Trust public certs rather than the phone downloading a trusted cert from the server
|
||||
SET ENABLE_PUBLIC_CA_CERTS 1
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
|
|||
## Do not require TLS to accept Out-Of-Dialog REFER messages
|
||||
SET ENABLE_OOD_MSG_TLS_ONLY 0
|
||||
|
||||
# Set the default SUBSCRIBE expiry time
|
||||
# This needs to be set to a value equal to or lower than the 'nonce-ttl' that is in your SIP Profile
|
||||
# The defaule for 'nonce-ttl' is 60
|
||||
SET OUTBOUND_SUBSCRIPTION_REQUEST_DURATION {if isset($avaya_blf_subscription_expiry)}{$avaya_blf_subscription_expiry}{else}60{/if}
|
||||
|
||||
## Trust public certs rather than the phone downloading a trusted cert from the server
|
||||
SET ENABLE_PUBLIC_CA_CERTS 1
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
|
|||
## Do not require TLS to accept Out-Of-Dialog REFER messages
|
||||
SET ENABLE_OOD_MSG_TLS_ONLY 0
|
||||
|
||||
# Set the default SUBSCRIBE expiry time
|
||||
# This needs to be set to a value equal to or lower than the 'nonce-ttl' that is in your SIP Profile
|
||||
# The defaule for 'nonce-ttl' is 60
|
||||
SET OUTBOUND_SUBSCRIPTION_REQUEST_DURATION {if isset($avaya_blf_subscription_expiry)}{$avaya_blf_subscription_expiry}{else}60{/if}
|
||||
|
||||
## Trust public certs rather than the phone downloading a trusted cert from the server
|
||||
SET ENABLE_PUBLIC_CA_CERTS 1
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
|
|||
## Do not require TLS to accept Out-Of-Dialog REFER messages
|
||||
SET ENABLE_OOD_MSG_TLS_ONLY 0
|
||||
|
||||
# Set the default SUBSCRIBE expiry time
|
||||
# This needs to be set to a value equal to or lower than the 'nonce-ttl' that is in your SIP Profile
|
||||
# The defaule for 'nonce-ttl' is 60
|
||||
SET OUTBOUND_SUBSCRIPTION_REQUEST_DURATION {if isset($avaya_blf_subscription_expiry)}{$avaya_blf_subscription_expiry}{else}60{/if}
|
||||
|
||||
## Trust public certs rather than the phone downloading a trusted cert from the server
|
||||
SET ENABLE_PUBLIC_CA_CERTS 1
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue