[asterisk-users] Chef-secretary scenario
Vazquez David
vazquez at cross-solution.de
Wed Jun 25 10:36:22 CDT 2008
Though I wonder...
The scenario is as follows:
I have 4 phones with the following extensions:
11 (SIP/11)
12 (SIP/12)
13 (SIP/13)
15 (SIP/15)
Whenever SIP/11 receives a call, it hints the other phones. Is it
possible to pick up that call from one of them?
The relevant part of my extensions.conf looks as this now:
[macro-stdexten];
;
; Standard extension macro:
; ${ARG1} - Extension (we could have used ${MACRO_EXTEN} here as well
; ${ARG2} - Device(s) to ring
;
exten => s,1,Dial(${ARG2},20) ; Ring the interface, 20 seconds maximum
exten => s,2,Goto(s-${DIALSTATUS},1) ; Jump based on status
(NOANSWER,BUSY,CHANUNAVAIL,CONGESTION,ANSWER)
exten => s,hint,SIP/11
exten => 11,hint,SIP/12&SIP/13&SIP/15
exten => s-NOANSWER,1,Voicemail(${ARG1},u) ; If unavailable, send to
voicemail w/ unavail announce
exten => s-NOANSWER,2,Goto(default,s,1) ; If they press #, return to start
exten => s-BUSY,1,Voicemail(${ARG1},b) ; If busy, send to voicemail w/
busy announce
exten => s-BUSY,2,Goto(default,s,1) ; If they press #, return to start
exten => _s-.,1,Goto(s-NOANSWER,1) ; Treat anything else as no answer
exten => a,1,VoicemailMain(${ARG1}) ; If they press *, send the user
into VoicemailMain
Thanks :-)
More information about the asterisk-users
mailing list