[asterisk-bugs] [JIRA] (ASTERISK-30352) pbx_lua: Set callerid number when attended transfer
Ilia Gvozdev (JIRA)
noreply at issues.asterisk.org
Wed Dec 14 04:04:51 CST 2022
[ https://issues.asterisk.org/jira/browse/ASTERISK-30352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Ilia Gvozdev updated ASTERISK-30352:
------------------------------------
Attachment: INVITE_config.txt
full_config
[phones]
include => local
include => incoming
[from-pstn]
exten => 9876543210,1,Log(NOTICE, "from PSTN")
same => n,Set(__ORIG_CIDNUM=${CALLERID(num)})
same => n,Answer()
same => n,Queue(tech,tr,60)
[local]
exten => _1XXX,1,Log(NOTICE, "Enter into [local] context")
same => n,Set(CALLERID(num)=${ORIG_CIDNUM})
same => n,Dumpchan()
same => n,Dial(PJSIP/${EXTEN},60,o)
same => n,Hangup()
Check please both log files with INVITE message. In this case (with pbx_config) the "From" header field contains correct original caller's Caller ID while attended transfer
> pbx_lua: Set callerid number when attended transfer
> ---------------------------------------------------
>
> Key: ASTERISK-30352
> URL: https://issues.asterisk.org/jira/browse/ASTERISK-30352
> Project: Asterisk
> Issue Type: Bug
> Security Level: None
> Components: Applications/app_dial, PBX/pbx_lua
> Affects Versions: 18.14.0
> Environment: CentOS Linux release 7.9.2009 (Core), Linux 3.10.0-1160.76.1.el7.x86_64 x86_64
> Reporter: Ilia Gvozdev
> Assignee: Ilia Gvozdev
> Attachments: full, full_config, INVITE_config.txt, INVITE.txt
>
>
> Caller ID number that was presented on the calling channel does not saved when attended transfer with pbx_lua.
> function from-pstn(context,exten)
> app.Set("__ORIG_CIDNUM="..channel['CALLERID(num)']:get())
> app.Answer()
> app.Queue("tech","tr","","",60)
> app.Hangup()
> end
> function phones (context,exten)
> app.Log("VERBOSE","ORIG_CIDNUM: ",channel['ORIG_CIDNUM']:get() or '')
> app.Set("CALLERID(num)="..channel['ORIG_CIDNUM']:get())
> app.Dumpchan()
> app.Dial("PJSIP/"..exten,60,"o("..channel['ORIG_CIDNUM']:get()..")")
> end
> full log and INVITE message in attach
--
This message was sent by Atlassian JIRA
(v6.2#6252)
More information about the asterisk-bugs
mailing list