
This week I used contexts and priorities in asterisk to make a horoscope phone tree, complete with up-to-date and largely misleading prophecies.
call 917-534-6464 ext. 20 to find out what this week holds for you……….!!!!
[rs3836]
exten => s, 1,Wait(1)
exten => s,n,Background(/home/rs3836/asterisk_sounds/welcome1) ; WELCOME
exten=>s,n,Background(/home/rs3836/asterisk_sounds/options);options
same => n,WaitExten(5)
exten =>1,1,Goto(rs3836_FireSigns,s,1)
exten =>2,1,Goto(rs3836_AirSigns,s,1)
exten =>3,1,Goto(rs3836_EarthSigns,s,1)
exten =>4,1,Goto(rs3836_WaterSigns,s,1)
exten =>0,1,Goto(rs3836,s,1) ;repeat welcome
exten =>i,n,Playback(pbx-invalid)
same =>n,Goto(rs3836,s,1)
exten =>t,n,Goto(rs3836,s,1)
[rs3836_FireSigns]
exten =>s,1,Wait(1)
exten=>s,n,Background(/home/rs3836/asterisk_sounds/firesigns)
same => n,WaitExten(5)
exten=>0,1,Goto(rs3836,s,1) repeat welcome
exten=>1,1,Background(/home/rs3836/asterisk_sounds/aries) ;ARIES
same=>n,Goto(rs3836,s,1)
exten=>2,1,Background(/home/rs3836/asterisk_sounds/leo) ;LEO
same =>n,Goto(rs3836,s,1)
exten=>3,1,Background(/home/rs3836/asterisk_sounds/sag);SAG
same =>n,Goto(rs3836,s,1)
exten => i,1,Playback(pbx-invalid)
same => n,Goto(rs3836_FireSigns,s,1)
exten => t,1,Goto(rs3836_FireSigns,s,1)
[rs3836_AirSigns]
exten=>s,1,Wait(1)
exten=>s,n,Background(/home/rs3836/asterisk_sounds/airsigns); AIRSIGN WELCOME
same => n,WaitExten(5)
exten =>0,1,Goto(rs3836,s,1) ;repeat welcome
exten =>1,1,Background(/home/rs3836/asterisk_sounds/gemini); GEMINI
same =>n,Goto(rs3836,s,1);
exten =>2,1,Background(/home/rs3836/asterisk_sounds/libra); LIBRA
same =>n,Goto(rs3836,s,1);
exten =>3,1,Background(/home/rs3836/asterisk_sounds/aquarius); AQUARIUS
same =>n,Goto(rs3836,s,1);
;exten => i,1,Playback(pbx-invalid)
same => n,Goto(rs3836_AirSigns,s,1)
exten => t,1,Goto(rs3836_AirSigns,s,1)
[rs3836_EarthSigns]
exten =>s,1,Wait(1)
exten=>s,n,Background(/home/rs3836/asterisk_sounds/earthsigns); EARTHSIGN WELCOME
same =>n,WaitExten(5)
exten =>0,1,Goto(rs3836,s,1) ;repeat welcome
exten =>1,1,Background(/home/rs3836/asterisk_sounds/taurus); TAURUS
same=>n,Wait(1);
same =>n,Goto(rs3836,s,1);
exten =>2,1,Background(/home/rs3836/asterisk_sounds/virgo); VIRGO
same=>n,Wait(1);
same =>n,Goto(rs3836,s,1);
exten =>3,1,Background(/home/rs3836/asterisk_sounds/capricorn); CAPRICORN
same=>n,Wait(1);
same =>n,Goto(rs3836,s,1);
;exten => i,1,Playback(pbx-invalid)
same=>n,Wait(1);
same => n,Goto(rs3836_EarthSigns,s,1)
exten => t,1,Goto(rs3836_EarthSigns,s,1)
[rs3836_WaterSigns]
exten =>s,1,Wait(1)
exten=>s,n,Background(/home/rs3836/asterisk_sounds/watersigns); WATERSIGN WELCOME
same => n,WaitExten(5)
exten=>0,1,Goto(rs3836,s,1) ;repeat welcome
exten =>1,1,Background(/home/rs3836/asterisk_sounds/cancer); CANCER
same=>n,Wait(1);
same=>n,Goto(rs3836,s,1);
exten =>2,1,Background(/home/rs3836/asterisk_sounds/scorpio); SCORPIO
same=>n,Wait(1);
same =>n,Goto(rs3836,s,1);
exten =>3,1,Background(/home/rs3836/asterisk_sounds/pisces); PISCES
same=>n,Wait(1);
same =>n,Goto(rs3836,s,1);
;exten => i,1,Playback(pbx-invalid)
same => n,Goto(rs3836_WaterSigns,s,1)
exten => t,1,Goto(rs3836_WaterSigns,start,1)