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 at asterisk,app,meetme,"6003,x") Thank you!
On Thursday, December 25, 2014 11:48:12 AM Dmitry Melekhov wrote:> 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 at asterisk,app,meetme,"6003,x")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 -- Anthony - https://messinet.com/ - https://messinet.com/~amessina/gallery 8F89 5E72 8DF0 BCF0 10BE 9967 92DC 35DC B001 4A4E -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: This is a digitally signed message part. URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20141225/a97575fa/attachment.pgp>
25.12.2014 15:46, Anthony Messina ?????:> On Thursday, December 25, 2014 11:48:12 AM Dmitry Melekhov wrote: >> 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 at asterisk,app,meetme,"6003,x") > > I use this patch > > https://messinet.com/rpms/browser/asterisk/asterisk-12-app_originate_callerid.patchThank you! I'll try it.> > because of https://issues.asterisk.org/jira/browse/ASTERISK-23016Unfortunately , get The issue you are trying to view does not exist. on this link :-(> > -A > > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20141225/8a65ad8e/attachment.html>
What about this? No patches needed. exten => my6003,1,Set(CALLERID(ALL)=MyCallerID) same => n,Dial(SIP/6003 at asterisk) exten => 6003,n,Set(MyCallerID="test<12345>") exten => 6003,n,Originate(local/my6003,app,meetme,"6003,x") On 14-12-25 06:46 AM, Anthony Messina wrote:> On Thursday, December 25, 2014 11:48:12 AM Dmitry Melekhov wrote: >> 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 at asterisk,app,meetme,"6003,x") > > > 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 > > >
Reasonably Related Threads
- originate , callerid
- originate , callerid
- originate , callerid
- With ARI, is it possible to create (originate) a call and pass both the caller id name and number?
- With ARI, is it possible to create (originate) a call and pass both the caller id name and number?