I found a problem with the configuration of findmefollow when the extension has a leading zero.
This is due to the fact that "grpnum" field il defined as bigint, and also if you act on the database itself a "05811" becames "5811" (obviously)
The problem is that I actually have a dial plan with some extensions starting with a zero. We can discuss a long time on the opportunity of doing this, but in my situation this is a requirement.
What I don't understand is how the interface could let me see the correct 05811 entry...
Anyway what I see in extension_additional.conf is:
[ext-findmefollow]
include => ext-findmefollow-custom
exten => 5810,1,Macro(user-callerid,)
exten => 5810,n,GotoIf?($["foo${BLKVM_OVERRIDE}" = "foo"]?skipdb)
exten => 5810,n,GotoIf?($["${DB(${BLKVM_OVERRIDE})}" = "TRUE"]?skipov)
exten => 5810,n(skipdb),Set(NODEST=)
........
No prblem in "grplist" field, as this field is defined as varchar 255
What can I do ?
Andrea