; ; Static extension configuration files, used by ; the pbx_config module. ; ; The "General" category is for certain variables. All other categories ; are interpreted as extension contexts ; [general] ; ; If static is set to no, or omitted, then the pbx_config will rewrite ; this file when extensions are modified. Remember that all comments ; made in the file will be lost when that happens. ; ; XXX Not yet implemented XXX ; static=yes ; ; if stati=yes and writeprotect=no, you can save dialplan by ; CLI command 'save dialplan' too ; writeprotect=no ; ; Jeff and Tilghman Config ; [default] ; Wait 10 seconds for an answer (pick up the local phone) exten => s,1,Wait(10) ; Answer the phone exten => s,n,Answer ; Playback generic voice mail message exten => s,n(greeting),Background(vm/generic/greet) ; They must respond within 10 seconds ; else jump to priority t (terminate call) exten => s,n,Set(TIMEOUT(digit)=3) exten => s,n,WaitExten(10) ; 1 - Jeff's voicemail exten => 1,1,Playback(vm/1/unavail) exten => 1,2,Voicemail(1) exten => 1,3,Goto(t,1) ; 2 - Tilghman's voicemail exten => 2,1,Playback(vm/2/unavail) exten => 2,2,Voicemail(2) exten => 2,3,Goto(t,1) ; 8 - Voice mail administration exten => 8,1,VoicemailMain exten => *,1,Directory(default) exten => *,2,Goto(s,greeting) exten => #,1,Playback(vm/generic/goodbye) exten => #,2,Hangup ; t - terminate call exten => t,1,Playback(vm/generic/goodbye) exten => t,2,Hangup