I have a zap device (specifically a X101P) which has a connection to the PSTN but also has an ability to have an analogue phone connected for use during power outages. The default extension answers the phone normally as well as having the analogue phone ring out, but I want to be able, based on time of day mainly at night, to have * ignore the phone ringing so that I can have it answered by the analogue phone without * cutting in. What sort of extension rules would give me this? -- Howard. LANNet Computing Associates; Your Linux people <http://www.lannetlinux.com> ------------------------------------------ "When you just want a system that works, you choose Linux; when you want a system that just works, you choose Microsoft." ------------------------------------------ "Flatter government, not fatter government; Get rid of the Australian states."
Post your incoming call context config for that FXO and it will be easier to answer your question. You might also look here http://www.voip-info.org/wiki-Asterisk+cmd+GotoIfTime> -----Original Message----- > From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users- > bounces@lists.digium.com] On Behalf Of Howard Lowndes > Sent: Monday, January 03, 2005 9:13 PM > To: asterisk-users@lists.digium.com > Subject: [Asterisk-Users] Ignoring a ringing connection > > I have a zap device (specifically a X101P) which has a connection tothe> PSTN but also has an ability to have an analogue phone connected foruse> during power outages. > > The default extension answers the phone normally as well as having the > analogue phone ring out, but I want to be able, based on time of day > mainly at night, to have * ignore the phone ringing so that I can have > it answered by the analogue phone without * cutting in. > > What sort of extension rules would give me this? > > -- > Howard. > LANNet Computing Associates; > Your Linux people <http://www.lannetlinux.com> > ------------------------------------------ > "When you just want a system that works, you choose Linux; > when you want a system that just works, you choose Microsoft." > ------------------------------------------ > "Flatter government, not fatter government; > Get rid of the Australian states." > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
On Tue, 2005-01-04 at 15:49, Damon Estep wrote:> Post your incoming call context config for that FXO and it will be > easier to answer your question. >Here are the relevant bits: [inbound] exten => s,1,Answer ; Answer the line exten => s,n,Wait(1) exten => s,n,DigitTimeout,5 ; Set Digit Timeout to 5 seconds exten => s,n,ResponseTimeout,5 ; Set Response Timeout to 5 seconds exten => s,n,BackGround(custom/name) exten => s,n,BackGround(thank-you-for-calling) exten => s,n,GotoIfTime(08:30-17:29|mon-fri|*|*?inhours,s,1) exten => s,n,Goto(outhours,s,1) [inhours] exten => s,1,NoOp exten => s,n,BackGround(if-u-know-ext-dial) exten => s,n,BackGround(or) exten => s,n,BackGround(pls-wait-connect-call) exten => s,n,Wait(3) exten => s,n,Goto(0,1) [outhours] exten => s,1,NoOp exten => s,n,BackGround(our-business-hours-are) exten => s,n,BackGround(custom/hours) exten => s,n,Wait(1) exten => s,n,BackGround(call-forwarding) exten => s,n,BackGround(pls-hold-while-try) exten => s,n,Wait(3) exten => s,n,Goto(1002,1)> You might also look here > http://www.voip-info.org/wiki-Asterisk+cmd+GotoIfTime > > > -----Original Message----- > > From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users- > > bounces@lists.digium.com] On Behalf Of Howard Lowndes > > Sent: Monday, January 03, 2005 9:13 PM > > To: asterisk-users@lists.digium.com > > Subject: [Asterisk-Users] Ignoring a ringing connection > > > > I have a zap device (specifically a X101P) which has a connection to > the > > PSTN but also has an ability to have an analogue phone connected for > use > > during power outages. > > > > The default extension answers the phone normally as well as having the > > analogue phone ring out, but I want to be able, based on time of day > > mainly at night, to have * ignore the phone ringing so that I can have > > it answered by the analogue phone without * cutting in. > > > > What sort of extension rules would give me this? > > > > -- > > Howard. > > LANNet Computing Associates; > > Your Linux people <http://www.lannetlinux.com> > > ------------------------------------------ > > "When you just want a system that works, you choose Linux; > > when you want a system that just works, you choose Microsoft." > > ------------------------------------------ > > "Flatter government, not fatter government; > > Get rid of the Australian states." > > > > > > _______________________________________________ > > Asterisk-Users mailing list > > Asterisk-Users@lists.digium.com > > http://lists.digium.com/mailman/listinfo/asterisk-users > > To UNSUBSCRIBE or update options visit: > > http://lists.digium.com/mailman/listinfo/asterisk-users > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users-- Howard. LANNet Computing Associates; Your Linux people <http://www.lannetlinux.com> ------------------------------------------ "When you just want a system that works, you choose Linux; when you want a system that just works, you choose Microsoft." ------------------------------------------ "Flatter government, not fatter government; Get rid of the Australian states."
Once you have answered you can not ignore ringing, so check the time before you answer, in theory it should work since if you do not answer the channel it "does nothing" according the the * answer command reference. The first line in the dialplan is exten => s,1,Answer Have you tried putting your GoToIfTime first, and then having it goto a NoOP if the time matches the times you do not want to pick up? I have not tried this, as I would typically want to answer all inbound channels that ring. Let me know if it works.> -----Original Message----- > From: asterisk-users-bounces@lists.digium.com > [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of > Howard Lowndes > Sent: Monday, January 03, 2005 10:16 PM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: RE: [Asterisk-Users] Ignoring a ringing connection > > On Tue, 2005-01-04 at 15:49, Damon Estep wrote: > > Post your incoming call context config for that FXO and it will be > > easier to answer your question. > > > > Here are the relevant bits: > > [inbound] > exten => s,1,Answer ; Answer the line > exten => s,n,Wait(1) > exten => s,n,DigitTimeout,5 ; Set Digit Timeout > to 5 seconds > exten => s,n,ResponseTimeout,5 ; Set Response > Timeout to 5 seconds > exten => s,n,BackGround(custom/name) > exten => s,n,BackGround(thank-you-for-calling) > exten => s,n,GotoIfTime(08:30-17:29|mon-fri|*|*?inhours,s,1) > exten => s,n,Goto(outhours,s,1) > > [inhours] > exten => s,1,NoOp > exten => s,n,BackGround(if-u-know-ext-dial) > exten => s,n,BackGround(or) > exten => s,n,BackGround(pls-wait-connect-call) > exten => s,n,Wait(3) > exten => s,n,Goto(0,1) > > [outhours] > exten => s,1,NoOp > exten => s,n,BackGround(our-business-hours-are) > exten => s,n,BackGround(custom/hours) > exten => s,n,Wait(1) > exten => s,n,BackGround(call-forwarding) exten => > s,n,BackGround(pls-hold-while-try) > exten => s,n,Wait(3) > exten => s,n,Goto(1002,1) > > > > > You might also look here > > http://www.voip-info.org/wiki-Asterisk+cmd+GotoIfTime > > > > > -----Original Message----- > > > From: asterisk-users-bounces@lists.digium.com > > > [mailto:asterisk-users- bounces@lists.digium.com] On Behalf Of > > > Howard Lowndes > > > Sent: Monday, January 03, 2005 9:13 PM > > > To: asterisk-users@lists.digium.com > > > Subject: [Asterisk-Users] Ignoring a ringing connection > > > > > > I have a zap device (specifically a X101P) which has a > connection to > > the > > > PSTN but also has an ability to have an analogue phone > connected for > > use > > > during power outages. > > > > > > The default extension answers the phone normally as well > as having > > > the analogue phone ring out, but I want to be able, based > on time of > > > day mainly at night, to have * ignore the phone ringing so that I > > > can have it answered by the analogue phone without * cutting in. > > > > > > What sort of extension rules would give me this? > > > > > > -- > > > Howard. > > > LANNet Computing Associates; > > > Your Linux people <http://www.lannetlinux.com> > > > ------------------------------------------ > > > "When you just want a system that works, you choose > Linux; when you > > > want a system that just works, you choose Microsoft." > > > ------------------------------------------ > > > "Flatter government, not fatter government; Get rid of the > > > Australian states." > > > > > > > > > _______________________________________________ > > > Asterisk-Users mailing list > > > Asterisk-Users@lists.digium.com > > > http://lists.digium.com/mailman/listinfo/asterisk-users > > > To UNSUBSCRIBE or update options visit: > > > http://lists.digium.com/mailman/listinfo/asterisk-users > > _______________________________________________ > > Asterisk-Users mailing list > > Asterisk-Users@lists.digium.com > > http://lists.digium.com/mailman/listinfo/asterisk-users > > To UNSUBSCRIBE or update options visit: > > http://lists.digium.com/mailman/listinfo/asterisk-users > -- > Howard. > LANNet Computing Associates; > Your Linux people <http://www.lannetlinux.com> > ------------------------------------------ > "When you just want a system that works, you choose Linux; > when you want a system that just works, you choose Microsoft." > ------------------------------------------ > "Flatter government, not fatter government; Get rid of the > Australian states." > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >