Fix Avaya BLF issue on reSUBSCRIBE (#7164)

* Fix Avaya BLF issue on reSUBSCRIBE

* fix an accidental modification
This commit is contained in:
Antonio Fernandez 2024-10-22 21:01:50 -04:00 committed by GitHub
parent 3415d57751
commit 2f30694ead
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 28 additions and 0 deletions

View File

@ -192,5 +192,13 @@
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false"; $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false";
$apps[$x]['default_settings'][$y]['default_setting_description'] = ""; $apps[$x]['default_settings'][$y]['default_setting_description'] = "";
$y++; $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++;
?> ?>

View File

@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
## Do not require TLS to accept Out-Of-Dialog REFER messages ## Do not require TLS to accept Out-Of-Dialog REFER messages
SET ENABLE_OOD_MSG_TLS_ONLY 0 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 ## Trust public certs rather than the phone downloading a trusted cert from the server
SET ENABLE_PUBLIC_CA_CERTS 1 SET ENABLE_PUBLIC_CA_CERTS 1

View File

@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
## Do not require TLS to accept Out-Of-Dialog REFER messages ## Do not require TLS to accept Out-Of-Dialog REFER messages
SET ENABLE_OOD_MSG_TLS_ONLY 0 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 ## Trust public certs rather than the phone downloading a trusted cert from the server
SET ENABLE_PUBLIC_CA_CERTS 1 SET ENABLE_PUBLIC_CA_CERTS 1

View File

@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
## Do not require TLS to accept Out-Of-Dialog REFER messages ## Do not require TLS to accept Out-Of-Dialog REFER messages
SET ENABLE_OOD_MSG_TLS_ONLY 0 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 ## Trust public certs rather than the phone downloading a trusted cert from the server
SET ENABLE_PUBLIC_CA_CERTS 1 SET ENABLE_PUBLIC_CA_CERTS 1

View File

@ -11,6 +11,11 @@ SET ENABLE_OOD_RESET_NOTIFY 1
## Do not require TLS to accept Out-Of-Dialog REFER messages ## Do not require TLS to accept Out-Of-Dialog REFER messages
SET ENABLE_OOD_MSG_TLS_ONLY 0 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 ## Trust public certs rather than the phone downloading a trusted cert from the server
SET ENABLE_PUBLIC_CA_CERTS 1 SET ENABLE_PUBLIC_CA_CERTS 1