How To Set Outgoing Sip Callid ?
Calling linphone from asterisk 13.9.1.:
Dial(SIP/
And it works. But on the linphone side the caller is:
or
2502@45.123.987.4
Is there any way to make it more descriptive, at least for the sip user name ? I tried setting SIPCALLID, which had no effect.
Set(SIPCALLID=Office)
Thanks, sean
2 thoughts on - How To Set Outgoing Sip Callid ?
In sip.conf
[devicename]
callerid=”Jon Doe” <+123456789>
or
in extensions.conf
exten => 1234,Set(CALLERID(all)=”Jon Doe” <+123456789>)
exten => 1234,n,Dial(SIP/….
So simple. just too obvious.
thanks