I lost you - you say that you get the same result dialing from a land-line as from Asterisk. If the call from LL is also going to answering machine, you are done.
_____ From: [email protected] [mailto:[email protected]] On Behalf Of salaheddine elharit Sent: Monday, February 14, 2011 9:37 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] issue with some numbers OK thanks for your help, i want to know if there is anythings to put in dial plan in order to disable the answer maching for these numbers thanks and Regards 2011/2/14 Danny Nicholas <[email protected]> The simplest (IMO) option for this would be "ex-girlfriend" blocking. The "CON" to this is that it would require an entry for each number to block. Say all of your calls to 555-1234 go to the answering machine. In the EGB scenario, you would put this line in your dialplan Exten => _5551234,1,hangup Or Exten => _5551234,1,goto(rien) If you had (or wanted to plan for) multiple numbers to handle this way, ASTDB would be an easy way to handle it. Exten => _OUT,n,Set(CHECKNO=${DB(block/${OUT})} Exten => _OUT,n,Gotoif(${EXTEN} == ${CHECKNO}]?rien) - goes to rien only if number dialed is in ASTDB "block" family) ** add a number to block ** exten => 999,1(entno),BackGround(beep) exten => 999,n,Read(digito,soundfile,7) - you have to record "soundfile" exten => 999,n,Gotoif($[ "${LEN(${digito})}" != "7"]?entno) exten => 999,n,SayDigits(${digito}) exten => 999,n,Set(DB(block/${digito}=${digito})) exten => 999,n,BackGround(vm-goodbye) exten => 999,n,Hangup(${HANGUP_CAUSE}) _____ From: [email protected] [mailto:[email protected]] On Behalf Of salaheddine elharit Sent: Monday, February 14, 2011 8:45 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] issue with some numbers thanks for your response i have tested with a regular phone and i get the same result my question if there is any action to do in dial plan or extenssion.conf in order to call this number becouse in dial plan i can bloc a number to be call exten => _OUT.,n,Set(match=${REGEX("^06XXXXXXX" ${AH_PHONE_NUMBER})}) exten => _OUT.,n,GotoIf($["${match}" = "1"]?rien) thanks and regards 2011/2/14 Danny Nicholas <[email protected]> _____ From: [email protected] [mailto:[email protected]] On Behalf Of salaheddine elharit Sent: Monday, February 14, 2011 8:16 AM To: [email protected] Subject: [asterisk-users] issue with some numbers Hello all I have a small issue with some mobiles numbers when I call these numbers using asterisk I have all the time answer machine. But when I call these numbers using my mobile or another phone there is no problem. Any help will be appreciated I doubt that asterisk per se is the cause of your problem. My suggestions would be #1 call using a regular phone with the asterisk line to insure that you're not getting a telco block on the ID (Assuming you're using DAHDI and copper, not SIP trunk) #2 check the delay on your dial command - you might be taking long enough to complete the command that the carrier dumps you straight to VM. -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com <http://www.api-digital.com/> -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com <http://www.api-digital.com/> -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
-- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
