No ENUMLOOKUP after compiling

Hi!

I build the 1.4.0-beta3 version of asterisk but I have no ENUMLOOKUP application. Do I have to tweak any parameters? I used the standard “make” command to build.
The Asterisk command “show applications” doesn’t list the ENUMLOOKUP.

Thank you for your help.
Thomas

it’s a function : CLI> show function ENUMLOOKUP or to be totally up-to-date CLI> core show function ENUMLOOKUP

But if I try to use the function as described in several samples like

I get this failure message:

*CLI> dial 11 == Console is full duplex *CLI> [Nov 14 11:12:08] WARNING[13091]: pbx.c:1755 pbx_extension_helper: No application 'ENUMLOOKUP' for extension (default, 11, 1) == Spawn extension (default, 11, 1) exited non-zero on 'OSS/dsp' << Hangup on console >>

it’s a function, not an application. so you need something like exten => 11,1,Set(foo=${ENUMLOOKUP(4961319208114,ALL,c)})

Thank you, this works. Oh, I’m just a newby :smile: