Hi John,<br><br>I would try to use on sip.conf and iax.conf and zapata.conf:<br><br>on every &quot;user (friend or whatever)&quot; defined add this:<br><br>[useraccount]<br>....<br>setvar=mycontext=yourcontext<br><br><br>----------------------------------------------------------
<br>This variable will become available for every user, so you just need to use it in your dialplan in extensions.conf<br><br>Noop(User context:$mycontext)<br><br>This is just an idea, please give some feedback if it helped and some how you will test if the forward number is valid or not :)
<br><br>Probably isn&#39;t hard , but is not clear yet for me and i&#39;m busy :)<br><br>Best Regards,<br>Marco Mouta<br><br><br><div><span class="gmail_quote">On 12/15/06, <b class="gmail_sendername">John French</b> &lt;
<a href="mailto:jFrench@vividvoicedata.com">jFrench@vividvoicedata.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I&#39;m simply trying to forward calls to users who have the call forwarding<br>feature enabled (FWD Status and FWD Ph Number kept in the astDB).&nbsp;&nbsp;The<br>problem is that I want users to be able to forward calls to numbers that
<br>they would normally be allowed to dial within their own context. (I<br>don&#39;t want a local call only person forwarding to a long dist number,<br>for example.)&nbsp;&nbsp;I&#39;m able to get the channel context for SIP devices but
<br>not for IAX or Zap Devices.&nbsp;&nbsp;I need some pointers on getting IAXPEER to<br>work and how to handle getting the ZAP context info.&nbsp;&nbsp;If there&#39;s an<br>easier way, I&#39;m all ears.&nbsp;&nbsp;Thanks.<br><br>; #####################Set Some Variables####################
<br>exten =&gt; s,1,Set(DEVICE=${ARG1}) ;i.e. SIP/johns_phone<br>exten =&gt; s,n,Set(Protocol=${CUT(DEVICE,/,1)}) ;Parse out SIP<br>exten =&gt; s,n,Set(Phone=${CUT(DEVICE,/,2)})&nbsp;&nbsp;;Parse out johns_phone<br><br>;Stuff omitted for some amout of brevity....
<br><br>; #####################Make Forward Calls######################<br>; We only want people to be able to forward to numbers they could<br>normally call<br>; We&#39;ll have to somehow get their dialing contexts from the channel conf
<br>files.<br>exten =&gt; s,n(Forward),NoOp()<br><br>exten =&gt; s,n,GotoIf($[&quot;${Protocol}&quot; = &quot;SIP&quot;]?SIPDev)<br>exten =&gt; s,n,GotoIf($[&quot;${Protocol}&quot; = &quot;IAX2&quot;]?IAXDev)<br>exten =&gt; s,n,Goto(ZapDev)
<br><br>;ok, they are an IAX device so use IAXPEER<br>exten =&gt;<br>s,n(IAXDev),Set(CalledUsersContext=${IAXPEER(${Phone}:context)})<br>exten =&gt; s,n,Goto(dial_time)<br><br>;ok, they are an SIP device so use SIPPEER<br>
exten =&gt;<br>s,n(SIPDev),Set(CalledUsersContext=${SIPPEER(${Phone}:context)})<br>exten =&gt; s,n,Goto(dial_time)<br><br>;ok, they are an Zap device so use... Uhhhhh.<br>exten =&gt; s,n(ZapDev),NoOp( I have no clue how to get the zap channel&#39;s
<br>context...)<br><br>exten =&gt; s,n(dial_time),NoOp(======================&gt; Chan Type<br>${Protocol})<br>exten =&gt; s,n,NoOp(======================&gt; Chan Name ${Phone})<br>exten =&gt; s,n,NoOp(======================&gt; Channel User&#39;s context
<br>${CalledUsersContext})<br>exten =&gt; s,n,Dial(Local/${FWDNumber}@${CalledUsersContext}/n)<br><br><br>Results at console on verbosity 9:<br>SIPPEER() Works as advertised when I dial a SIP phone which has been<br>call forwarded
<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing NoOp(&quot;Zap/1-1&quot;, &quot;======================&gt; Chan Type<br>SIP&quot;) in new stack<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing NoOp(&quot;Zap/1-1&quot;, &quot;======================&gt; Chan Name<br>jf_linksys&quot;) in new stack
<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing NoOp(&quot;Zap/1-1&quot;, &quot;======================&gt; Channel Users<br>context longdistance_users&quot;) in new stack<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing Dial(&quot;Zap/1-1&quot;, &quot;Local/5551212@longdistance
_users/n&quot;)<br>in new stack<br><br>IAXPEER() Seems to be broken or I don&#39;t know how to use it properly.<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing NoOp(&quot;SIP/jf_linksys-08f20548&quot;,<br>&quot;======================&gt; Chan Type IAX2&quot;) in new stack
<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing NoOp(&quot;SIP/jf_linksys-08f20548&quot;,<br>&quot;======================&gt; Chan Name johns_pc&quot;) in new stack<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing NoOp(&quot;SIP/jf_linksys-08f20548&quot;,<br>&quot;======================&gt; Channel Users context &quot;) in new stack
<br>&nbsp;&nbsp;&nbsp;&nbsp;-- Executing Dial(&quot;SIP/jf_linksys-08f20548&quot;, &quot;Local/5551212@/n&quot;) in<br>new stack<br>_______________________________________________<br>--Bandwidth and Colocation provided by <a href="http://Easynews.com">
Easynews.com</a> --<br><br>asterisk-users mailing list<br>To UNSUBSCRIBE or update options visit:<br>&nbsp;&nbsp; <a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users
</a><br></blockquote></div><br>