mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
This script is now useless...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6256 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,45 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
clear
|
|
||||||
VMHOME=/var/spool/asterisk/voicemail
|
|
||||||
SNDHOME=/var/lib/asterisk/sounds
|
|
||||||
echo
|
|
||||||
echo "Enter Voicemail Context of the mailbox you are creating."
|
|
||||||
echo "The context is the value between the square brackets in"
|
|
||||||
echo "the voicemail.conf file."
|
|
||||||
echo "(DEFAULT: default)"
|
|
||||||
echo -n "Voicemail Context: "
|
|
||||||
read context
|
|
||||||
echo
|
|
||||||
echo "Enter the Mailbox number of the voicemail box you are creating."
|
|
||||||
echo -n "Mailbox Number: "
|
|
||||||
read mailbox
|
|
||||||
|
|
||||||
context=${context:-default}
|
|
||||||
|
|
||||||
if [ ! -e "${VMHOME}/${context}" ]
|
|
||||||
then
|
|
||||||
echo
|
|
||||||
echo "New Voicemail context.."
|
|
||||||
echo "Creating Voicemail context directory..."
|
|
||||||
mkdir -p ${VMHOME}/${context}
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "Creating Voicemail directory..."
|
|
||||||
mkdir -p ${VMHOME}/${context}/${mailbox}
|
|
||||||
echo "Creating INBOX..."
|
|
||||||
mkdir -p ${VMHOME}/${context}/${mailbox}/INBOX
|
|
||||||
echo "Creating Default greetings..."
|
|
||||||
cat ${SNDHOME}/vm-theperson.gsm > ${VMHOME}/${context}/${mailbox}/unavail.gsm
|
|
||||||
cat ${SNDHOME}/vm-theperson.gsm > ${VMHOME}/${context}/${mailbox}/busy.gsm
|
|
||||||
cat ${SNDHOME}/vm-extension.gsm > ${VMHOME}/${context}/${mailbox}/greet.gsm
|
|
||||||
nums=`echo $mailbox | sed 's/./ \0/g'`
|
|
||||||
for x in $nums; do
|
|
||||||
cat ${SNDHOME}/digits/${x}.gsm >> ${VMHOME}/${context}/${mailbox}/unavail.gsm
|
|
||||||
cat ${SNDHOME}/digits/${x}.gsm >> ${VMHOME}/${context}/${mailbox}/busy.gsm
|
|
||||||
cat ${SNDHOME}/digits/${x}.gsm >> ${VMHOME}/${context}/${mailbox}/greet.gsm
|
|
||||||
done
|
|
||||||
cat ${SNDHOME}/vm-isunavail.gsm >> ${VMHOME}/${context}/${mailbox}/unavail.gsm
|
|
||||||
cat ${SNDHOME}/vm-isonphone.gsm >> ${VMHOME}/${context}/${mailbox}/busy.gsm
|
|
||||||
echo "Complete."
|
|
||||||
|
|
Reference in New Issue
Block a user