Hi guys,<br><br>What would be the preferred way to do user blackinglisting on domain? The userblacklist module only seem to look at username (I can&#39;t find a reference to domain in the mysql log), and even if it did I assume it would look for a match on both username and module.<br>

<br>I would prefer to have it tied to drouting as it&#39;d give me a single place for my destinations, but anything &quot;native&quot; would be considered. I try to stay away from avp_db_query when I can, but atm I&#39;m using the below. While it works, I&#39;d really like to move away from customer queries whenever possible.<br>

<br>if(avp_db_query(&quot;select whitelist from userblacklist where domain like &#39;$fd&#39; and &#39;$rU&#39; like concat(prefix, &#39;%&#39;) order by char_length(prefix) desc limit 1&quot;, &quot;$avp(s:dbl)&quot;)) {<br>

    if($avp(s:dbl) == 0) {<br>        sl_send_reply(&quot;403&quot;, &quot;Forbidden destination&quot;);<br>        exit;<br>    }<br>}<br><br>Cheers,<br>Magnus<br>