Asterisk 1.8.10.1~dfsg-1ubuntu1
See dial plan code below. When I dial 123 from a phone in this context,
I simply get a busy signal. Why doesn't the "i" extension get
triggered? Console at verbosity of 10 only shows " == Using SIP RTP
CoS mark 5".
[DockPhone]
exten =>288,1,NoOp(Dock Phone)
same =>n,Dial(${DOCK_RECIPIENTS},30,kt)
include =>emergency-services
; the 'i' is not triggering, not sure why
exten =>i,1,NoOp(invalid extension from dock phone i)
same =>n,Playback(custom/dock-invalid)
same =>n,Hangup()
exten =>h,1,NoOp(hangup extension from dock phone)
same =>n,Hangup()
--
Mitch
>> exten =>i,1,NoOp(invalid extension from dock phone i)Was this a typo? I believe it should be: exten => i,1,NoOP() What does your console output look like? Doug -- Ben Franklin quote: "Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety."
> Asterisk 1.8.10.1~dfsg-1ubuntu1 > See dial plan code below. When I dial 123 from a phone in this > context, > I simply get a busy signal. Why doesn't the "i" extension get > triggered? Console at verbosity of 10 only shows " == Using SIP RTP > CoS mark 5". > > [DockPhone] > exten =>288,1,NoOp(Dock Phone) > same =>n,Dial(${DOCK_RECIPIENTS},30,kt) > include =>emergency-services > > ; the 'i' is not triggering, not sure why > exten =>i,1,NoOp(invalid extension from dock phone i) > same =>n,Playback(custom/dock-invalid) > same =>n,Hangup() > exten =>h,1,NoOp(hangup extension from dock phone) > same =>n,Hangup()It looks like you are seeing this issue that was fixed earlier this month: https://issues.asterisk.org/jira/browse/ASTERISK-20455 Richard
On Thursday 25 October 2012, Mitch Claborn wrote:> Asterisk 1.8.10.1~dfsg-1ubuntu1 > See dial plan code below. When I dial 123 from a phone in this context, > I simply get a busy signal. Why doesn't the "i" extension get > triggered? Console at verbosity of 10 only shows " == Using SIP RTP > CoS mark 5". > > [DockPhone] > exten =>288,1,NoOp(Dock Phone) > same =>n,Dial(${DOCK_RECIPIENTS},30,kt) > include =>emergency-services > > ; the 'i' is not triggering, not sure why > exten =>i,1,NoOp(invalid extension from dock phone i) > same =>n,Playback(custom/dock-invalid) > same =>n,Hangup() > exten =>h,1,NoOp(hangup extension from dock phone) > same =>n,Hangup()It's possible that "emergency-services" or some other included context is picking up on the "123" that you dialled. Thus, it's not invalid anymore, and so won't trigger the "i" extension. -- AJS Answers come *after* questions.