[asterisk-bugs] [Asterisk 0017138]: CallerID not properly set when using Originate and AGI

Asterisk Bug Tracker noreply at bugs.digium.com
Tue Jul 6 15:29:24 CDT 2010


The following issue has been ASSIGNED. 
====================================================================== 
https://issues.asterisk.org/view.php?id=17138 
====================================================================== 
Reported By:                kobaz
Assigned To:                jpeeler
====================================================================== 
Project:                    Asterisk
Issue ID:                   17138
Category:                   Channels/chan_iax2
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     acknowledged
Target Version:             1.6.2.11
Asterisk Version:           SVN 
JIRA:                       SWP-1534 
Regression:                 No 
Reviewboard Link:            
SVN Branch (only for SVN checkouts, not tarball releases): N/A 
SVN Revision (number only!):  
Request Review:              
====================================================================== 
Date Submitted:             2010-04-05 16:03 CDT
Last Modified:              2010-07-06 15:29 CDT
====================================================================== 
Summary:                    CallerID not properly set when using Originate and
AGI
Description: 
Dialplan:

context Dialer_DialPhone {
  s => {
    if ("${PhoneAutoAnswer}" == "1") {
      SIPAddHeader(Call-Info: answer-after=0');
      SIPAddHeader(alert-info: alert-autoanswer');
    }

    Set(CALLERID(name)=${DstCallerIdName});
    Set(CALLERID(num)=${DstCallerIdNum});
    Dial(${PhoneDevice},10);
    Hangup();
  }
}

context Dialer_DialNumber {
  s => {
    Set(CALLERID(name)=${SrcCallerIdName});
    Set(CALLERID(num)=${SrcCallerIdNum});

//   Dial(IAX2/out-tipton-local/${DstNumber},120,r); // this works
    goto ${PhoneClassOfService}, ${DstNumber}, 1; // this doesn't
    
    Hangup();
  }
}

You should be able to override the callerid even if the call will be sent
to an agi script.

Note that agi_callerid and agi_calleridname are actually correct as set in
the dialplan.. but when the agi executes the Dial... callerid gets sent out
as "s <s>" as shown in the iax debug.

Note that callerid is not changed by the agi script.

If you replace the goto, with the Dial() straight from dialplan, CALLING
NUMBER and CALLING NAME will be correct in the iax call.
====================================================================== 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2010-07-06 15:29 lmadsen        Asterisk Version         1.6.0.26 => SVN     
2010-07-06 15:29 lmadsen        Assigned To               => jpeeler         
2010-07-06 15:29 lmadsen        Target Version            => 1.6.2.11        
2010-07-06 15:29 lmadsen        Description Updated                          
2010-07-06 15:29 lmadsen        Additional Information Updated                  
 
======================================================================




More information about the asterisk-bugs mailing list