I am using these dial plan to make outbound calls
- Code: Select all
exten => _91NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _91NXXNXXXXXX,2,Dial(${TRUNKX}/${EXTEN:1},55,tTo)
exten => _91NXXNXXXXXX,3,Hangup
I would like to manipulate the callerIDname trough AGI scripts.
I just want to send one callerIDname for all campaigns, but better if I have the posibility of diferent callerIDname per campaign.
My question is: What file do I need to start changing? FastAGI_log.pl OR call_log.agi?
I think FastAGI_log.pl, in the line 275
- Code: Select all
LINE 275: $calleridname = $CID[3];
FOR
LINE 275: $calleridname = $CID[2];
But I am not sure, thanks