Add a missing file sip_profile_copy.php to the dev branch.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<include>
|
||||
<language name="en" say-module="en" sound-prefix="$${sounds_dir}/en/us/callie" tts-engine="cepstral" tts-voice="callie">
|
||||
<phrases>
|
||||
<macros>
|
||||
<X-PRE-PROCESS cmd="include" data="demo/*.xml"/> <!-- Note: this now grabs whole subdir, previously grabbed only demo.xml -->
|
||||
<!--voicemail_en_tts is purely implemented with tts, we have the files based one that is the default. -->
|
||||
<X-PRE-PROCESS cmd="include" data="vm/sounds.xml"/> <!-- vm/tts.xml if you want to use tts and have cepstral -->
|
||||
<X-PRE-PROCESS cmd="include" data="dir/sounds.xml"/> <!-- dir/tts.xml if you want to use tts and have cepstral -->
|
||||
<X-PRE-PROCESS cmd="include" data="ivr/*.xml"/> <!-- IVR and custom phrases go here -->
|
||||
<X-PRE-PROCESS cmd="include" data="wakeup/*.xml"/> <!-- IVR and custom phrases go here -->
|
||||
<X-PRE-PROCESS cmd="include" data="vm/voicemail_ivr.xml"/>
|
||||
</macros>
|
||||
</phrases>
|
||||
</language>
|
||||
</include>
|
||||
@@ -0,0 +1,129 @@
|
||||
<include>
|
||||
<macro name="wakeup-greeting">
|
||||
<input pattern="(.*)">
|
||||
<match>
|
||||
<!-- To schedule a wakeup call enter a 4 digit number -->
|
||||
<!-- For 6:30 am press 0630. Enter the digits now. -->
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/to.wav"/>
|
||||
<action function="play-file" data="custom/schedule.wav"/>
|
||||
<action function="play-file" data="custom/a.wav"/>
|
||||
<action function="play-file" data="custom/wakeup.wav"/>
|
||||
<action function="play-file" data="custom/call.wav"/>
|
||||
<action function="play-file" data="custom/enter.wav"/>
|
||||
<action function="play-file" data="custom/a.wav"/>
|
||||
<action function="play-file" data="custom/4.wav"/>
|
||||
<action function="play-file" data="custom/digit.wav"/>
|
||||
<action function="play-file" data="custom/number.wav"/>
|
||||
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/for.wav"/>
|
||||
<action function="play-file" data="digits/6.wav"/>
|
||||
<action function="play-file" data="digits/30.wav"/>
|
||||
<action function="play-file" data="custom/a.wav"/>
|
||||
<action function="play-file" data="custom/m.wav"/>
|
||||
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/press.wav"/>
|
||||
<action function="play-file" data="digits/0.wav"/>
|
||||
<action function="play-file" data="digits/6.wav"/>
|
||||
<action function="play-file" data="digits/3.wav"/>
|
||||
<action function="play-file" data="digits/0.wav"/>
|
||||
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/enter.wav"/>
|
||||
<action function="play-file" data="custom/the.wav"/>
|
||||
<action function="play-file" data="custom/digits.wav"/>
|
||||
<action function="play-file" data="custom/now.wav"/>
|
||||
</match>
|
||||
</input>
|
||||
</macro>
|
||||
<macro name="wakeup-get-extension">
|
||||
<input pattern="(.*)">
|
||||
<match>
|
||||
<!-- Tnter the extension number now -->
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/enter.wav"/>
|
||||
<action function="play-file" data="custom/the.wav"/>
|
||||
<action function="play-file" data="custom/extension.wav"/>
|
||||
<action function="play-file" data="custom/number.wav"/>
|
||||
<action function="play-file" data="custom/now.wav"/>
|
||||
<action function="execute" data="sleep(100)"/>
|
||||
</match>
|
||||
</input>
|
||||
</macro>
|
||||
<macro name="wakeup-scheduled">
|
||||
<input pattern="(.*)">
|
||||
<match>
|
||||
<!-- Your wakeup call has been scheduled for 0715 -->
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/your.wav"/>
|
||||
<action function="play-file" data="custom/wakeup.wav"/>
|
||||
<action function="play-file" data="custom/call.wav"/>
|
||||
<action function="play-file" data="custom/has.wav"/>
|
||||
<action function="play-file" data="custom/been.wav"/>
|
||||
<action function="play-file" data="custom/scheduled.wav"/>
|
||||
<action function="play-file" data="custom/for.wav"/>
|
||||
<action function="execute" data="sleep(100)"/>
|
||||
</match>
|
||||
</input>
|
||||
</macro>
|
||||
<macro name="wakeup-accept">
|
||||
<input pattern="(.*)">
|
||||
<match>
|
||||
<!-- To accept press 1 to cancel press 2 -->
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/to.wav"/>
|
||||
<action function="play-file" data="custom/accept.wav"/>
|
||||
<action function="play-file" data="custom/press.wav"/>
|
||||
<action function="play-file" data="digits/1.wav"/>
|
||||
<action function="play-file" data="custom/to.wav"/>
|
||||
<action function="play-file" data="custom/cancel.wav"/>
|
||||
<action function="play-file" data="custom/press.wav"/>
|
||||
<action function="play-file" data="digits/2.wav"/>
|
||||
<action function="execute" data="sleep(100)"/>
|
||||
</match>
|
||||
</input>
|
||||
</macro>
|
||||
<macro name="wakeup-cancel">
|
||||
<input pattern="(.*)">
|
||||
<match>
|
||||
<!-- To cancel the wakeup call press * -->
|
||||
<action function="execute" data="sleep(750)"/>
|
||||
<action function="play-file" data="custom/to.wav"/>
|
||||
<action function="play-file" data="custom/cancel.wav"/>
|
||||
<action function="play-file" data="custom/the.wav"/>
|
||||
<action function="play-file" data="custom/wakeup.wav"/>
|
||||
<action function="play-file" data="custom/call.wav"/>
|
||||
<action function="play-file" data="custom/press.wav"/>
|
||||
<action function="play-file" data="digits/*.wav"/>
|
||||
<action function="execute" data="sleep(100)"/>
|
||||
</match>
|
||||
</input>
|
||||
</macro>
|
||||
<macro name="wakeup-call">
|
||||
<input pattern="(.*)">
|
||||
<match>
|
||||
<!-- This is your wakeup call to exit press 1 to snooze for 10 minutes press 2 -->
|
||||
<action function="execute" data="sleep(1000)"/>
|
||||
<action function="play-file" data="custom/this.wav"/>
|
||||
<action function="play-file" data="custom/is.wav"/>
|
||||
<action function="play-file" data="custom/your.wav"/>
|
||||
<action function="play-file" data="custom/wakeup.wav"/>
|
||||
<action function="play-file" data="custom/call.wav"/>
|
||||
<action function="play-file" data="custom/to.wav"/>
|
||||
<action function="play-file" data="custom/exit.wav"/>
|
||||
<action function="play-file" data="custom/press.wav"/>
|
||||
<action function="play-file" data="digits/1.wav"/>
|
||||
<action function="play-file" data="custom/to.wav"/>
|
||||
<action function="play-file" data="custom/snooze.wav"/>
|
||||
<action function="play-file" data="custom/for.wav"/>
|
||||
<action function="play-file" data="digits/10.wav"/>
|
||||
<action function="play-file" data="custom/minutes.wav"/>
|
||||
<action function="play-file" data="custom/press.wav"/>
|
||||
<action function="play-file" data="digits/2.wav"/>
|
||||
<action function="execute" data="sleep(100)"/>
|
||||
</match>
|
||||
</input>
|
||||
</macro>
|
||||
</include>
|
||||
Reference in New Issue
Block a user