aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeswitch/freeswitch.inc
diff options
context:
space:
mode:
authormcrane <mctch@yahoo.com>2009-07-15 13:41:18 -0600
committermcrane <mctch@yahoo.com>2009-07-15 13:41:18 -0600
commit4af8252d66de5a9bd37a333192ee6faada5eea74 (patch)
tree3936e7ad81881c7f5f98a4cd2e6d0d0f69c1fc12 /config/freeswitch/freeswitch.inc
parente3762e1c21cdff6e3db41d419f06878900d608c3 (diff)
downloadpfsense-packages-4af8252d66de5a9bd37a333192ee6faada5eea74.tar.gz
pfsense-packages-4af8252d66de5a9bd37a333192ee6faada5eea74.tar.bz2
pfsense-packages-4af8252d66de5a9bd37a333192ee6faada5eea74.zip
FreeSWITCH package remove auth-user from extensions add auth-username to gateways.
Diffstat (limited to 'config/freeswitch/freeswitch.inc')
-rw-r--r--config/freeswitch/freeswitch.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/freeswitch/freeswitch.inc b/config/freeswitch/freeswitch.inc
index 3635229d..d4591a0f 100644
--- a/config/freeswitch/freeswitch.inc
+++ b/config/freeswitch/freeswitch.inc
@@ -604,9 +604,6 @@ function sync_package_freeswitch_extensions()
}
$tmpxml .= " <param name=\"vm-mailto\" value=\"" . $rowhelper['vm-mailto'] . "\"/>\n";
}
- if (strlen($rowhelper['auth-user']) > 0) {
- $tmpxml .= " <param name=\"auth-user\" value=\"" . $rowhelper['auth-user'] . "\"/>\n";
- }
if (strlen($rowhelper['auth-acl']) > 0) {
$tmpxml .= " <param name=\"auth-acl\" value=\"" . $rowhelper['auth-acl'] . "\"/>\n";
}
@@ -666,6 +663,9 @@ function sync_package_freeswitch_gateways()
if (strlen($rowhelper['username']) > 0) {
$tmpxml .= " <param name=\"username\" value=\"" . $rowhelper['username'] . "\"/>\n";
}
+ if (strlen($rowhelper['auth-username']) > 0) {
+ $tmpxml .= " <param name=\"auth-username\" value=\"" . $rowhelper['auth-username'] . "\"/>\n";
+ }
if (strlen($rowhelper['password']) > 0) {
$tmpxml .= " <param name=\"password\" value=\"" . $rowhelper['password'] . "\"/>\n";
}
@@ -2725,7 +2725,7 @@ function freeswitch_php_install_command()
global $config;
//exec("/etc/./rc.conf_mount_rw");
- $freeswitch_package_version = "0.9.4.7";
+ $freeswitch_package_version = "0.9.4.8";
$freeswitch_build_version = "1.0.4 pre 8";
$freeswitch_build_revision = "13784";