did you answer the call in your dialplan?<br>do you have a full debug log of a call with that parameter enabled on the analog span in question?<br><br><br><div class="gmail_quote">On Thu, Jan 15, 2009 at 4:17 AM, Scott Ellis <span dir="ltr">&lt;<a href="mailto:scott.ellis@novatex.com.au">scott.ellis@novatex.com.au</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">After poking around in the code, it looks like if I set &lt;param<br>
name=&quot;enable-callerid&quot; value=&quot;false&quot;/&gt; in openzap.conf.xml, it should<br>
skip the GET_CALLERID state, and I should get the call answered straight<br>
away.<br>
<br>
mod_openzap.c<br>
<br>
} else if (!strcasecmp(var, &quot;enable-callerid&quot;)) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;enable_callerid = val;<br>
<br>
<br>
if (zap_configure_span(&quot;analog&quot;, span, on_analog_signal,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;tonemap&quot;, tonegroup,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;digit_timeout&quot;, &amp;to,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;max_dialstr&quot;, &amp;max,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;hotline&quot;, hotline,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;enable_callerid&quot;, enable_callerid,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TAG_END) != ZAP_SUCCESS) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;zap_log(ZAP_LOG_ERROR, &quot;Error starting OpenZAP span<br>
%d\n&quot;, span_id);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;continue;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
<br>
ozmod_analog.c<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else if (!strcasecmp(var, &quot;enable_callerid&quot;)) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (!(val = va_arg(ap, char *))) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (zap_true(val)) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;flags |= ZAP_ANALOG_CALLERID;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;} else {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;flags &amp;= ~ZAP_ANALOG_CALLERID;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
<br>
and<br>
<br>
case ZAP_OOB_RING_START:<br>
 &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (event-&gt;channel-&gt;type != ZAP_CHAN_TYPE_FXO) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;zap_log(ZAP_LOG_ERROR, &quot;Cannot get a RING_START event on<br>
a non-fxo channel, please check your config.\n&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;zap_set_state_locked(event-&gt;channel,<br>
ZAP_CHANNEL_STATE_DOWN);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;goto end;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (!event-&gt;channel-&gt;ring_count &amp;&amp; (event-&gt;channel-&gt;state ==<br>
ZAP_CHANNEL_STATE_DOWN &amp;&amp; !zap_test_flag(event-&gt;channel,<br>
ZAP_CHANNEL_INTHREAD))) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (zap_test_flag(analog_data, ZAP_ANALOG_CALLERID)) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;zap_set_state_locked(event-&gt;channel,<br>
ZAP_CHANNEL_STATE_GET_CALLERID);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;} else {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;zap_set_state_locked(event-&gt;channel,<br>
ZAP_CHANNEL_STATE_IDLE);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;event-&gt;channel-&gt;ring_count = 1;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;zap_mutex_unlock(event-&gt;channel-&gt;mutex);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;locked = 0;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;zap_thread_create_detached(zap_analog_channel_run,<br>
event-&gt;channel);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;} else {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;event-&gt;channel-&gt;ring_count++;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp;break;<br>
<br>
2009-01-15 20:19:44 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [DOWN]<br>
2009-01-15 20:19:44 [DEBUG] ozmod_analog.c:760 process_event() Changing<br>
state on 1:1 from DOWN to GET_CALLERID<br>
2009-01-15 20:19:44 [DEBUG] ozmod_analog.c:239 zap_analog_channel_run()<br>
ANALOG CHANNEL thread starting.<br>
2009-01-15 20:19:44 [DEBUG] ozmod_analog.c:410 zap_analog_channel_run()<br>
Executing state handler on 1:1 for GET_CALLERID<br>
2009-01-15 20:19:44 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [GET_CALLERID]<br>
2009-01-15 20:19:44 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [GET_CALLERID]<br>
2009-01-15 20:19:45 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [GET_CALLERID]<br>
2009-01-15 20:19:47 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [GET_CALLERID]<br>
2009-01-15 20:19:47 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [GET_CALLERID]<br>
2009-01-15 20:19:47 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [GET_CALLERID]<br>
2009-01-15 20:19:48 [DEBUG] ozmod_analog.c:744 process_event() EVENT<br>
[RING_START][1:1] STATE [GET_CALLERID]<br>
2009-01-15 20:19:49 [DEBUG] ozmod_analog.c:292 zap_analog_channel_run()<br>
Changing state on 1:1 from GET_CALLERID to IDLE<br>
2009-01-15 20:19:49 [DEBUG] ozmod_analog.c:410 zap_analog_channel_run()<br>
Executing state handler on 1:1 for IDLE<br>
2009-01-15 20:19:49 [DEBUG] mod_openzap.c:1165 on_fxo_signal() got FXO<br>
sig 1:1 [START]<br>
<br>
The code all looks right, but I am not getting what I think should<br>
happen. Anyone with any ideas?<br>
<font color="#888888"><br>
Scott<br>
</font><div><div></div><div class="Wj3C7c"><br>
Scott Ellis wrote:<br>
&gt; Searched the wiki and mailing lists as best I can, but with no luck.<br>
&gt;<br>
&gt; How do I get OpenZap to answer a call immediately? (I do not need caller id)<br>
&gt;<br>
&gt; Scott<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Freeswitch-users mailing list<br>
&gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
_______________________________________________<br>
Freeswitch-users mailing list<br>
<a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
<br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400<br>