<div dir="ltr">Hi AJ,<div><br></div><div>Yes, interesting idea, thanks!</div><div><br></div><div>Antonio</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 27, 2015 at 5:09 AM, A J Stiles <span dir="ltr"><<a href="mailto:asterisk_list@earthshod.co.uk" target="_blank">asterisk_list@earthshod.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Monday 26 Jan 2015, Antonio Gómez Soto wrote:<br>
> Hi,<br>
><br>
> does anyone have a recommendation for a SIP phone, which<br>
> allows dialing from a phonebook, and hiding the dialed number<br>
> from the end users? Also from the call history of course.<br>
><br>
> It seems Mitel can do this, and I have a use case where this is<br>
> a requirement.<br>
<br>
</div></div>If I have this right, you want to make sure the number can *only* be called<br>
through your Asterisk system  (so the call gets recorded)  and *not* directly<br>
from an agent's mobile phone or similar  (so they cannot make off-the-record<br>
calls).<br>
<br>
Why not just use Asterisk itself to give the number an alias?  So the end user<br>
dials some number that connects them to the destination, but of course it<br>
won't work from anywhere else besides your configured Asterisk system.<br>
<br>
<br>
My home Asterisk installation  (yes, some people are crazy enough to play with<br>
phones for entertainment :) )  includes aliases to call people in the village<br>
where I grew up, using their old 4-digit phone numbers  (even though those<br>
numbers have now grown to 6 digits, and I have moved across an STD code<br>
boundary).  Also I have a friend whose mobile number ended with 911, so it was<br>
too delicious to avoid using that as an alias;<br>
<br>
<br>
exten => 911,1,Dial(${GSM}/07xxxxxx911)<br>
exten => 911,n,Hangup()<br>
<br>
exten => _[23]XXX,1,Dial(${GSM}/0128373${EXTEN})<br>
exten => _[23]XXX,n,Hangup()<br>
<br>
<br>
If you need many aliases and this is going to look messy in your dialplan, you<br>
could always use an AGI script to look up the number in a database.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
AJS<br>
<br>
Note:  Originating address only accepts e-mail from list!  If replying off-<br>
list, change address to asterisk1list at earthshod dot co dot uk .<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>
</font></span></blockquote></div><br></div>