Displaying 1 result from an estimated 1 matches for "phone_nbr".
Did you mean:
phone_b
2006 Jan 20
0
Realtime - reading values from registred family name
...lumn names will be set as channel variables with optional prefix to the name.
e.g. prefix of 'var_' would make the column 'name' become the variable ${var_name}
eg.
extensions.conf (or in a db table)
(lets assume that we have in our table column names: name username password phone_nbr context
table is "sip_users" connected to familyname sipusers , there is a
user with name=guru)
[init]
exten => s,1,Realtime(sipusers|name|guru)
exten => s,2,Noop(${name}) ;gives use what we already know
exten => s,3,Noop(${username}) ; guru username
etc.
simp...