Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
I would suggest this Exten = _0666XX,1,answer() Exten = _0666XX,n,playback(tt-monkeys) Exten = _0666XX,n,hangup() You could just hangup on them, but playing the screeching monkeys will get the message to them to leave you alone. From: asterisk-users-boun...@lists.digium.com

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Michelle Dupuis
Check out smartCID on www.generationd.comhttp://www.generationd.com This script allows lookup of incomming calls based on number and either Block (no ring), endless ring (ignore), or pass through to asterisk. It allows allows rewriting of CID name based on number. All numbers stored in a

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Kevin Larsen
Balloon - Ph: 316-688-8208 From: Danny Nicholas da...@debsinc.com To: 'Asterisk Users Mailing List - Non-Commercial Discussion' asterisk-users@lists.digium.com, Date: 01/14/2013 09:39 AM Subject:Re: [asterisk-users] block one number in incoming calls Sent by:asterisk-users

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Zohair Raza
exten =520xx,1,NoOp(Caller-ID: ${CALLERID(all)}) exten =520xx,2,GotoIf($[${CALLERID(num)} = 0666XX ]?3:4) exten = 520xx,3,Dial(SIP/224, 30) exten = 520xx,4,hangup Regards, Zohair Raza On Mon, Jan 14, 2013 at 7:43 PM, Michelle Dupuis mdup...@ocg.ca wrote: Check out

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Geoff Lane
On Monday, January 14, 2013, Salaheddine Elharit wrote: my problem i have a lot of calls coming from this number (0666xx) and i want to block it. You can either create an extension to handle it, or you can use 1.4's blacklist feature to block calls from all unwanted numbers. Danny's dealt

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Salaheddine Elharit
thanks danny i think i didn’t explain correctly may question i revive a lot of calls from this number _0666XX and i wants to block it to call my number 520xx . 2013/1/14 Danny Nicholas da...@debsinc.com Exten = _0666XX,1,answer() Exten =

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Salaheddine Elharit
hi Zohair Raza thanks for your replay but this script will allow just this 0666XX to call my number 520xx what i want is block this number to call 520xx not allow it thank you exten = 520xx,1,NoOp(Caller-ID: ${CALLERID(all)}) exten = 520xx,2,GotoIf($[${CALLERID(num)} =

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
: [asterisk-users] block one number in incoming calls hi Zohair Raza thanks for your replay but this script will allow just this 0666XX to call my number 520xx what i want is block this number to call 520xx not allow it thank you exten = 520xx,1,NoOp(Caller-ID

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Kevin Larsen
-Commercial Discussion asterisk-users@lists.digium.com, Date: 01/14/2013 10:51 AM Subject:Re: [asterisk-users] block one number in incoming calls Sent by:asterisk-users-boun...@lists.digium.com hi Zohair Raza thanks for your replay but this script will allow just this 0666XX

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Salaheddine Elharit
] *On Behalf Of *Salaheddine Elharit *Sent:* Monday, January 14, 2013 10:51 AM *To:* Asterisk Users Mailing List - Non-Commercial Discussion *Subject:* Re: [asterisk-users] block one number in incoming calls ** ** hi Zohair Raza ** ** thanks for your replay but this script will allow just

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread isrlgb
@lists.digium.com Reply-To: Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Subject: Re: [asterisk-users] block one number in incoming calls -- _ -- Bandwidth and Colocation Provided

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Eric Wieling
- Non-Commercial Discussion Subject: Re: [asterisk-users] block one number in incoming calls Can't we. Do this? exten =  520xx/0666XX,1,hangup -Original Message- From: Salaheddine Elharit salah.elharit...@gmail.com Sender: asterisk-users-boun...@lists.digium.com Date: Mon, 14 Jan

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
- Non-Commercial Discussion Subject: Re: [asterisk-users] block one number in incoming calls Can't we. Do this? exten =  520xx/0666XX,1,hangup -Original Message- From: Salaheddine Elharit salah.elharit...@gmail.com Sender: asterisk-users-boun...@lists.digium.com Date: Mon, 14 Jan

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread A J Stiles
On Monday 14 January 2013, Salaheddine Elharit wrote: i think i didn’t explain correctly may question i revive a lot of calls from this number _0666XX and i wants to block it to call my number 520xx . Use something like Exten = _520X./0666XX,1,Answer() Exten =

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread isrlgb
--Original Message-- From: Eric Wieling To: ישראל גוטליב To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] block one number in incoming calls Sent: Jan 14, 2013 6:58 PM No.  However you can do this: exten =  _520xx/_0666XX,1,hangup

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Carlos Alvarez
So I'm not the only one who uses the monkeys as our place to send bad calls to. -- Sent from my iPhone On Jan 14, 2013, at 10:02 AM, A J Stiles asterisk_l...@earthshod.co.uk wrote: On Monday 14 January 2013, Salaheddine Elharit wrote: i think i didn’t explain correctly may question i

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Danny Nicholas
To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] block one number in incoming calls So I'm not the only one who uses the monkeys as our place to send bad calls to. -- Sent from my iPhone On Jan 14, 2013, at 10:02 AM, A J Stiles asterisk_l...@earthshod.co.uk

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Salaheddine Elharit
thanks all for your support and help a really appreciate it 2013/1/14 Carlos Alvarez car...@televolve.com So I'm not the only one who uses the monkeys as our place to send bad calls to. -- Sent from my iPhone On Jan 14, 2013, at 10:02 AM, A J Stiles asterisk_l...@earthshod.co.uk wrote:

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread A J Stiles
On Monday 14 January 2013, Carlos Alvarez wrote: So I'm not the only one who uses the monkeys as our place to send bad calls to. I actually thought of using a sample from a well-known song by Australian singer Kevin Bloody Wilson, but decided that might be a bit *too* offensive. Besides

Re: [asterisk-users] block one number in incoming calls

2013-01-14 Thread Carlos Alvarez
On Mon, Jan 14, 2013 at 10:48 AM, A J Stiles asterisk_l...@earthshod.co.ukwrote: On Monday 14 January 2013, Carlos Alvarez wrote: So I'm not the only one who uses the monkeys as our place to send bad calls to. I actually thought of using a sample from a well-known song by Australian