config file
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12994 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
7bf573af5d
commit
ca39144a1e
|
@ -0,0 +1,15 @@
|
|||
<configuration name="cidlookup.conf" description="cidlookup Configuration">
|
||||
<settings>
|
||||
<param name="url" value="http://query.voipcnam.com/query.php?api_key=MYAPIKEY&number=${caller_id_number}"/>
|
||||
<param name="cache" value="true"/>
|
||||
<param name="cache-expire" value="86400"/>
|
||||
|
||||
<param name="odbc-dsn" value="phone:phone:phone"/>
|
||||
<param name="sql" value="
|
||||
SELECT name||' ('||type||')' AS name
|
||||
FROM phonebook p JOIN numbers n ON p.id = n.phonebook_id
|
||||
WHERE n.number='${caller_id_number}'
|
||||
LIMIT 1
|
||||
"/>
|
||||
</settings>
|
||||
</configuration>
|
Loading…
Reference in New Issue