<div dir="ltr">i am using asterisk&#39;s internal database to create a phonebook. i was thinking to create something similar for the blocking, but i got stuck on how to block the numbers.</div><div class="gmail_extra"><br>
<br><div class="gmail_quote">On Mon, Jun 17, 2013 at 12:47 PM, Salaheddine Elharit <span dir="ltr">&lt;<a href="mailto:salah.elharit200@gmail.com" target="_blank">salah.elharit200@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">hello<div><br></div><div> if you have just some numbers to <span style="font-family:arial,sans-serif;font-size:12.72px"> block you can use the below code in your dial plan</span><div><span style="font-family:arial,sans-serif;font-size:12.72px"><br>

</span></div><div>exten =&gt; 5xx,1,NoOp(Caller-ID: ${CALLERID(all)})</div><div>exten =&gt; 5xx,n,GotoIf($[&quot;${CALLERID(num)}&quot;=&quot;0661xxxxxx&quot; ]?3:4)</div><div>exten =&gt; 5xx,n,hangup</div><div>exten =&gt; 5xx,n,Dial(SIP/223, 30)</div>

</div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><br><div class="gmail_quote">2013/6/17 A J Stiles <span dir="ltr">&lt;<a href="mailto:asterisk_list@earthshod.co.uk" target="_blank">asterisk_list@earthshod.co.uk</a>&gt;</span><br>

<blockquote style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid" class="gmail_quote"><div><div>On Monday 17 June 2013, binary dreamer wrote:<br>

&gt; Hi.<br>
&gt;<br>
&gt;<br>
&gt; i would like to manually create a list of numbers to block.<br>
&gt; these numbers are from spammers (advertizers).<br>
&gt; is there an easy way to send these particular numbers to busy or even drop<br>
&gt; the call?<br>
<br>
</div></div>Yes!  Dead easy.<br>
<br>
Use an external script, written in your favourite language, to look up the<br>
number in some sort of database and return failure  (exit 1)  if it finds it<br>
there, or success  (exit 0)  if not.  Call this with System() in dialplan.  If<br>
the System() call succeeds  (meaning the number was not found in the<br>
database),  Asterisk will move onto the next priority; if it fails  (meaning<br>
the number was in the database)  then it will move on by an extra 100.<br>
<br>
Alternatively, you can read the value of ${SYSTEMSTATUS} to get the exit code.<br>
<br>
--<br>
AJS<br>
<br>
Answers come *after* questions.<br>
<br>
--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
</blockquote></div><br></div>
</div></div><br>--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
               <a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br></div>