<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>Hello;<br></div>
<div>&nbsp;</div>
<div>I've been a freeswitch user for some time, but I am finally getting around to trying to get idea working again.<br></div>
<div>&nbsp;</div>
<div>I have an in-house CID lookup routine that works fine... it sets caller_id_name and effective_caller_id_name and those modified names show up fine on my telephones when the calls come in.<br></div>
<div>&nbsp;</div>
<div>That lookup routine adds a prefix of TM: if its a telemarketer, or VM: if i want the caller to go directly to voicemail...&nbsp; Basically, if the original CID from my provider shows up as "FOO Marketing", then after the cid-extension runs, the caller_id_name and effective_caller_name to "TM:FOO Marketing"....<br></div>
<div>&nbsp;</div>
<div>What is -not- working is the routing.<br></div>
<div>&nbsp;</div>
<div>I have an extension right after the CID Lookup that I want to do the routing directly to voicemail.&nbsp;&nbsp; Watching the debug logs, it appears that the field is already parsed and is set to the *original* callerid name that was available when the call came in...&nbsp;&nbsp; Trying different variations of field="caller_id_name" and field="${caller_id_name}" (and same with effective_caller_id_name) still yields no joy.<br></div>
<div>&nbsp;</div>
<div>Any guidance?&nbsp;&nbsp; The snippets from my dialplan are below.<br></div>
<div>&nbsp;</div>
<div>Thanks!<br></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp; &lt;extension name="CID Inbound Lookup" continue="true"&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field="ani" expression="(\d{10})"&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO In CID Inbound Lookup '$1' -- The Second Time"/&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO CIDLookup(before): CID Num: '${caller_id_number}' CID Name: '${caller_id_name}' Orig CID Name: '${original_caller_id_name}' Dest: '${destination_number}'"/&gt;<br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="set" data="url=num=${caller_id_number}&amp;name=${url_encode(${caller_id_name})}&amp;did=${destination_number}"/&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO CIDLookup(before): url: '${url}'"/&gt;<br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="curl" data="</span><a href="http://www.dsba.net/voip/cidlookup.php?${url}&quot;/"><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">http://MYDOMAIN.com/MYCIDLOOKUP.php?${url}"/</span></a><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="info"/&gt;<br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO CIDLookup(after ): curl_response_code: ${curl_response_code}"/&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO CIDLookup(after ): curl_response_data: ${curl_response_data}"/&gt;<br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="set" data="caller_id_name=${curl_response_data}"/&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="set" data="effective_caller_id_name=${curl_response_data}"/&gt;<br></span></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO CIDLookup(after ): CID Num: '${caller_id_number}' CID Name: '${caller_id_name}' Orig CID Name: '${original_caller_id_name}' Dest: '${destination_number}'"/&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO CIDLookup(after ): caller_id_name: '${caller_id_name}', original_caller_id_name: '${original_caller_id_name}', effective_caller_id_name: '${effective_caller_id_name}'" /&gt;<br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- This event will be picked up by HB-Bot for announcing --&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="event" data="Event-Name=CUSTOM,Event-Subclass=CallAnnounce,ani=${destination_number},cidnum=${caller_id_number},cidname=${caller_id_name}"/&gt;<br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;<br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">and here are my test cases that are *right* after the above... but yet can't pick up the change in variables.&nbsp; *ONE* of these (I expect '3b' or '1') should fire... none do.<br></span></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;extension name="cid_test_0" continue="true"&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field="original_caller_id_name" expression="TM" &gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO cid_test_0: : '${original_caller_id_name}'"/&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;extension name="cid_test_1" continue="true"&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field="caller_id_name" expression="TM" &gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO cid_test_1: : '${caller_id_name}'"/&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;extension name="cid_test_2" continue="true"&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field="effective_caller_id_name" expression="TM" &gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO cid_test_2: : '${effective_caller_id_name}'"/&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;extension name="cid_test_3" continue="true"&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field='${caller_id_name}' expression="TM" &gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO cid_test_3: : '${caller_id_name}'"/&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;extension name="cid_test_3b" continue="true"&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field="${caller_id_name}" expression="TM" &gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO cid_test_3b: : '${caller_id_name}'"/&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;extension name="cid_test_4" continue="true"&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field='${effective_caller_id_name}' expression="TM" &gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO cid_test_4: : '${effective_caller_id_name}'"/&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div>&nbsp;</div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;extension name="cid_test_5" continue="true"&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field='${effective_caller_id_name}' expression="TM" &gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application="log" data="INFO cid_test_5: : '${effective_caller_id_name}'"/&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;</span><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font"><br></span></div>
<div><span style="font-family: menlo, consolas, &quot;courier new&quot;, monospace, sans-serif;" class="font">&nbsp;&nbsp;&nbsp; &lt;/extension&gt;</span><br></div>
</body>
</html>