Originate , Callerid
Hello!
I want to change call files, which has caller id in them, to call originate from dial plan. But I don’t see such parameter here https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+Application_Originate
How can I pass callerid to following:
exten => 6003,n,Originate(SIP/6003@asterisk,app,meetme,”6003,x”)
Thank you!
5 thoughts on - Originate , Callerid
I use this patch
https://messinet.com/rpms/browser/asterisk/asterisk-12-app_originate_callerid.patch
because of https://issues.asterisk.org/jira/browse/ASTERISK-23016
-A
25.12.2014 15:46, Anthony Messina пишет:
Thank you! I’ll try it.
Unfortunately , get
The issue you are trying to view does not exist. on this link 🙁
Sorry for referencing the wrong issue. The correct one is here https://issues.asterisk.org/jira/browse/ASTERISK-22992
What about this? No patches needed.
exten => my6003,1,Set(CALLERID(ALL)=MyCallerID)
same => n,Dial(SIP/6003@asterisk)
exten => 6003,n,Set(MyCallerID=”test<12345>“)
exten => 6003,n,Originate(local/my6003,app,meetme,”6003,x”)
If you are trying to originate a call to the outside PSTN, caller ID could be blocked by your SIP provider. Due to regulations designed to protect consumers, caller ID is generally not trusted in the default configuration. If this is causing your problem, contact your SIP provider and explain your situation. As long as you guarantee you will not spoof a caller ID that you do not own, they will typically turn it on. They may provide you with slightly different configuration settings to allow this to work.
Have a great day!
—