Re: [asterisk-users] Is there any way to pass caller id to cell phone

2018-10-16 Thread Daniel Friedman
Hello, You can ask your provider to accept PAI headers that you Would add to your SIP Invite request. Usually, this is what you do when you want to block Your caller id from showing it to the callee. The only way that the provider can identify you (for billing and legal purposes) Is by RPID or

Re: [asterisk-users] Is there any way to pass caller id to cell phone?

2018-10-16 Thread Daniel Tryba
On Thu, Oct 11, 2018 at 05:18:24PM +, Ivan Demkovitch wrote: > Where problem comes in - if person not at the desk - his cell phone shows > call from OFFICE number and there is no way to tell who is really calling. > We use Callcentric as a trunk if it makes any difference. > I'd like to add

Re: [asterisk-users] Is there any way to pass caller id to cell phone?

2018-10-15 Thread Eric Klein
Ivan, Be aware that what you are asking may cause problems with making the call to the cell phone. Think of it this way, you are taking an inbound call and then sending it out over your regular operator. They may object to accepting a call with a CLID that does not match your account and could

Re: [asterisk-users] Is there any way to pass caller id to cell phone?

2018-10-11 Thread Antony Stone
On Thursday 11 October 2018 at 22:11:10, Ivan Demkovitch wrote: > Abdul, > Added code like you proposed, I see it in logs but still don't see caller > ID coming in: > -- Goto (internal,101,1) > -- Executing [101@internal:1] NoOp("SIP/callcentric13-06d1", "Call > ID: "DEMKOVITCH,IVAN"

Re: [asterisk-users] Is there any way to pass caller id to cell phone?

2018-10-11 Thread Ivan Demkovitch
Abdul, Added code like you proposed, I see it in logs but still don't see caller ID coming in:  -- Goto (internal,101,1)     -- Executing [101@internal:1] NoOp("SIP/callcentric13-06d1", "Call ID: "DEMKOVITCH,IVAN" <155>") in new stack     -- Executing [101@internal:2]

Re: [asterisk-users] Is there any way to pass caller id to cell phone?

2018-10-11 Thread Ivan Demkovitch
Abdul, What is the point of chacking caller id? Does it "make" Asterisk forward it later on? Here is outgoing trunk sip.config. Don't know much about it, pretty much copy/paste from their instructions. register => dsfsadfa...@callcentric.com[callcentric] type=peer context=from-callcentric

Re: [asterisk-users] Is there any way to pass caller id to cell phone?

2018-10-11 Thread Abdul Basit
Hi Ivan, Check whats CallerID you are getting before initiating dial command. ;Eric on extension 105 exten => 105,1,NoOp( Call ID: ${CALLERID(all)} ) exten => 105,n,Dial(${ERIC_CELL}&${ERIC_OFFICE},30) same => n,VoiceMail(105@default,u) Also what Caller ID is set on outgoing trunk? Is that

[asterisk-users] Is there any way to pass caller id to cell phone?

2018-10-11 Thread Ivan Demkovitch
We have following problem. On some of the extentions I call cell phone after 10 seconds or so.Or, like this one below- we call cell and office phone at the same time ;Eric on extension 105 exten => 105,1,Dial(${ERIC_CELL}&${ERIC_OFFICE},30)     same => n,VoiceMail(105@default,u) Where