From 67a894c071f755f228ba2a4fe5c282eb462a59d2 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sat, 13 Jan 2007 16:47:01 +0000 Subject: Merged revisions 50754 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r50754 | kpfleming | 2007-01-13 10:45:37 -0600 (Sat, 13 Jan 2007) | 2 lines when building the sample greetings for maibox 1234@default during 'make samples', build a greeting for each language and file format the user selected to install with menuselect (reported by Brian Capouch on asterisk-dev) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@50755 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- build_tools/make_sample_voicemail | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 build_tools/make_sample_voicemail (limited to 'build_tools/make_sample_voicemail') diff --git a/build_tools/make_sample_voicemail b/build_tools/make_sample_voicemail new file mode 100755 index 000000000..272cf379a --- /dev/null +++ b/build_tools/make_sample_voicemail @@ -0,0 +1,25 @@ +#!/bin/sh -e + +for lang in /en/ /fr/ /es/ + do + for format in ulaw alaw wav gsm g729 g722 + do + [ ! -f ${1}/sounds${lang}vm-isunavail.${format} ] && continue + + mkdir -p ${2}/voicemail/default/1234${lang} + + : > ${2}/voicemail/default/1234${lang}unavail.${format} + + for file in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isunavail + do + cat ${1}/sounds${lang}${file}.${format} >> ${2}/voicemail/default/1234${lang}unavail.${format} + done + + : > ${2}/voicemail/default/1234${lang}busy.${format} + + for file in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isonphone + do + cat ${1}/sounds${lang}${file}.${format} >> ${2}/voicemail/default/1234${lang}busy.${format} + done + done +done -- cgit v1.2.3