[Home]

Summary:ASTERISK-02772: Incomplete CDR record when originating call from manager
Reporter:jmerlino (jmerlino)Labels:
Date Opened:2004-11-09 04:43:38.000-0600Date Closed:2011-06-07 14:10:00
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:When you generate a new call using "Action: Originate" in the manager interface, the CDR record associated with that call does not have the clid and src fields (they are empty)
I don't know if this is a bug or a feature but it would be nice if those fields were completed as if a normal call would have been placed from the originating phone.
Comments:By: Brian West (bkw918) 2004-11-09 09:20:57.000-0600

No its not a bug.

You can set the callerid but not the src


   char *name = astman_get_header(m, "Channel");
   char *exten = astman_get_header(m, "Exten");
   char *context = astman_get_header(m, "Context");
   char *priority = astman_get_header(m, "Priority");
   char *timeout = astman_get_header(m, "Timeout");
   char *callerid = astman_get_header(m, "CallerID");
   char *variable = astman_get_header(m, "Variable");
   char *account = astman_get_header(m, "Account");
   char *app = astman_get_header(m, "Application");
   char *appdata = astman_get_header(m, "Data");
   char *async = astman_get_header(m, "Async");
   char *id = astman_get_header(m, "ActionID");

By: jmerlino (jmerlino) 2004-11-09 11:23:33.000-0600

Ok, I see.
Thank you for your time. You can close the bug now if you want.