Stereo Call Recording commit

git-svn-id: svn://192.168.202.10@3941 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2025-09-19 17:23:26 +00:00
parent 437b3c463a
commit 4c6019a6be
36 changed files with 5618 additions and 279 deletions
+10
View File
@@ -53,6 +53,7 @@
# 230508-0809 - Added Asterisk 18 compatibility
# 240704-0830 - Added coldstorage DB entries
# 250103-1017 - Added ConfBridge conf files updates
# 250823-1411 - Added stereo recording directories
#
############################################
@@ -2780,6 +2781,15 @@ if ($WEBONLY < 1)
`mkdir -p $PATHmonitor`;
`chmod -R 0766 $PATHmonitor`;
}
# generate paths to asterisk stereo recordings directories:
$PATHmonitorS = $PATHmonitor."S";
$PATHmonitorP = $PATHmonitor."P";
$PATHmonitorTRASH = $PATHmonitor."TRASH";
if (!-e "$PATHmonitorS") {`mkdir -p $PATHmonitorS`; `chmod -R 0766 $PATHmonitorS`;}
if (!-e "$PATHmonitorP") {`mkdir -p $PATHmonitorP`; `chmod -R 0766 $PATHmonitorP`;}
if (!-e "$PATHmonitorTRASH") {`mkdir -p $PATHmonitorTRASH`; `chmod -R 0766 $PATHmonitorTRASH`;}
if (!-e "$PATHmonitor/MIX") {`mkdir -p $PATHmonitor/MIX`;}
if (!-e "$PATHDONEmonitor")