Hello everyone,
I’m having sone trouble changing the CONNETEDLINE-Value wihle calling internal.
I have a “virtual” externsion 555 which schould be displayed as “Service” but called is a real extension (PJSIP/401).
My problem is, it allways displays the Callerid given in pjsip.conf. Only if I delete this entry, it will show “Service”.
Here is my Dialplan:
exten => 555,1,Set(CONNECTEDLINE(num)=555)
exten => 555,n,Set(CONNECTEDLINE(name)=Service)
exten => 555,n,Dial(PJSIP/401,,b(add-Service^s^1)B(add-Service^s^1))
I also tried Dial wird b and/or B option, but no positive result…
[add-Service]
exten => s,1,Set(CONNECTEDLINE(num)=555)
exten => s,n,Set(CONNECTEDLINE(name)=Service)
exten => s,n,Return()
Maybe there is something I am missing?
Thanks in advance!