Hi @ all

we have a SNOM D385 connected to LDAP. But the Numbers from LDAP comes as a complete number, not only the extension. For example, my extension is 181 an in LDAP my number is +4940123456181. Now i need a Dial Plan to cut off the part with "+4940123456", so that the phone just dials the 181.

My guess was this should work:


^\+4940123456([0-9]*)$


But the phone dials still the complete number. What could be wrong on this regex?


Edit:


^\+4940123456([0-9]*)$|sip:\1@\d


does it.