<div dir="ltr"><div>Here is a quick and dirty bash script to do it that I wrote you.<br><br>#!/bin/bash<br>if ( asterisk -rx "database deltree blacklist")<br>        then<br>                echo "Blacklist Cleared"<br>        else<br>                err "ERROR Failed to clear Blacklist, Exiting."<br>                exit 1;<br>fi<br><br>while IFS=, read TN REASON<br>do<br>if ( asterisk -rx "database put blacklist \"${TN}\" \"${REASON}\"")<br>   then<br>           echo "Inserted $TN $REASON to Blacklist"<br>   else<br>         err "ERROR Insert Failed on $TN."<br>         exit 1;<br>fi<br><br>done < blacklist.csv<br>unset IFS<br><br><br></div>It reads from the file blacklist.csv in the same directory with the format of NUMBER,"DESCRIPTION/REASON"<br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Aug 27, 2016 at 8:59 AM, tux john <span dir="ltr"><<a href="mailto:atux@null.net" target="_blank">atux@null.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi. I would like to blacklist a few callers and I have been using the *CLI> database put blacklist 1234 "annoying callers". Instead of putting the same command for every user is there any way to have a file? Ideally a file in /opt that I would update the blacklisted numbers (add,remove). Is there anything like that, please?<br>

<br>--<br>
______________________________<wbr>______________________________<wbr>_________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" rel="noreferrer" target="_blank">http://www.api-digital.com</a> --<br>
<br>
Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016<br>
      <a href="http://www.asterisk.org/community/astricon-user-conference" rel="noreferrer" target="_blank">http://www.asterisk.org/<wbr>community/astricon-user-<wbr>conference</a><br>
<br>
New to Asterisk? Start here:<br>
      <a href="https://wiki.asterisk.org/wiki/display/AST/Getting+Started" rel="noreferrer" target="_blank">https://wiki.asterisk.org/<wbr>wiki/display/AST/Getting+<wbr>Started</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" rel="noreferrer" target="_blank">http://lists.digium.com/<wbr>mailman/listinfo/asterisk-<wbr>users</a><br></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">A human being should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.<br>---Heinlein</div>
</div>