aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeswitch_dev/v_fax_edit.tmp
diff options
context:
space:
mode:
authormcrane <mctch@yahoo.com>2009-08-07 16:22:23 -0600
committermcrane <mctch@yahoo.com>2009-08-07 16:22:23 -0600
commitd62b5e18760e501965463b6914102eb253e0cd8a (patch)
tree2767bbcefe1640fc6f374b8983fceec48b6878be /config/freeswitch_dev/v_fax_edit.tmp
parent6eeac714b3bb1f54f3c763369ddc44339a99c805 (diff)
downloadpfsense-packages-d62b5e18760e501965463b6914102eb253e0cd8a.tar.gz
pfsense-packages-d62b5e18760e501965463b6914102eb253e0cd8a.tar.bz2
pfsense-packages-d62b5e18760e501965463b6914102eb253e0cd8a.zip
FreeSWITCH dev dump the majority of hard coded paths and add a few preferences.
Diffstat (limited to 'config/freeswitch_dev/v_fax_edit.tmp')
-rw-r--r--config/freeswitch_dev/v_fax_edit.tmp21
1 files changed, 11 insertions, 10 deletions
diff --git a/config/freeswitch_dev/v_fax_edit.tmp b/config/freeswitch_dev/v_fax_edit.tmp
index ea5a1f7d..54729360 100644
--- a/config/freeswitch_dev/v_fax_edit.tmp
+++ b/config/freeswitch_dev/v_fax_edit.tmp
@@ -49,9 +49,9 @@ if (isset($id) && $a_fax[$id]) {
}
-$dir_fax_inbox = '/usr/local/freeswitch/storage/fax/'.$pconfig['faxextension'].'/inbox/';
-$dir_fax_sent = '/usr/local/freeswitch/storage/fax/'.$pconfig['faxextension'].'/sent/';
-$dir_fax_temp = '/usr/local/freeswitch/storage/fax/'.$pconfig['faxextension'].'/temp/';
+$dir_fax_inbox = $v_storage_dir.'/fax/'.$pconfig['faxextension'].'/inbox/';
+$dir_fax_sent = $v_storage_dir.'/fax/'.$pconfig['faxextension'].'/sent/';
+$dir_fax_temp = $v_storage_dir.'/fax/'.$pconfig['faxextension'].'/temp/';
if ($_GET['act'] == "del") {
if ($_GET['type'] == 'fax') {
@@ -86,8 +86,8 @@ if ($_GET['act'] == "del") {
}
}
- if (file_exists("/usr/local/freeswitch/conf/dialplan/default/".$order."_".$faxname.".xml")){
- unlink("/usr/local/freeswitch/conf/dialplan/default/".$order."_".$faxname.".xml");
+ if (file_exists($v_conf_dir."/dialplan/default/".$order."_".$faxname.".xml")){
+ unlink($v_conf_dir."/dialplan/default/".$order."_".$faxname.".xml");
}
//remove fax entries
@@ -298,11 +298,11 @@ if ($_POST) {
$a_fax[] = $ent;
}
- if (!is_dir('/usr/local/freeswitch/storage/fax/')) {
- exec("mkdir /usr/local/freeswitch/storage/fax/");
+ if (!is_dir($v_storage_dir.'/fax/')) {
+ exec("mkdir ".$v_storage_dir."/fax/");
}
- $faxfolder = '/usr/local/freeswitch/storage/fax/'.$_POST['faxextension'];
+ $faxfolder = $v_storage_dir.'/fax/'.$_POST['faxextension'];
if (!is_dir($faxfolder)) {
exec('mkdir '.$faxfolder);
}
@@ -340,8 +340,9 @@ function show_advanced_config() {
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php
include("fbegin.inc");
-echo "<p class=\"pgtitle\">$v_project_label: FAX: Edit</p>\n";
-
+if ($v_label_show) {
+ echo "<p class=\"pgtitle\">$v_label: FAX: Edit</p>\n";
+}
if ($input_errors) print_input_errors($input_errors);
?>