mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-22 13:25:17 +00:00
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59236 65c4cc65-6c06-0410-ace0-fbb531ad65f3
41 lines
988 B
Plaintext
41 lines
988 B
Plaintext
context default
|
|
{
|
|
|
|
706/3077610011 => {
|
|
JabberStatus(asterisk|jmls@mike,StatusCode);
|
|
|
|
switch(${StatusCode}) {
|
|
case 1:
|
|
Dial(SIP/706,12);
|
|
switch(${DIALSTATUS}) {
|
|
case BUSY:
|
|
Voicemail(b706);
|
|
break;
|
|
default:
|
|
Voicemail(u706);
|
|
};
|
|
BackGround(hello);
|
|
break;
|
|
default:
|
|
Voicemail(u706);
|
|
};
|
|
ifTime(3:00-13:00|*|*|*)
|
|
{
|
|
NoOp(hello);
|
|
label1:
|
|
NoOp(goodbye);
|
|
}
|
|
else
|
|
{
|
|
NoOp(hithere);
|
|
label2:
|
|
NoOp(whatonearth?);
|
|
}
|
|
goto label1;
|
|
goto label2;
|
|
Hangup();
|
|
};
|
|
|
|
}
|
|
|