I’ve been using the call_log agi script which works well, but I’m looking for a variable to show not just callerid but domain or IP if possible where one exists.
If it’s isn’t possible any chance of making it a feature request?
Cheers
I’ve been using the call_log agi script which works well, but I’m looking for a variable to show not just callerid but domain or IP if possible where one exists.
If it’s isn’t possible any chance of making it a feature request?
Cheers
I don’t think any of the channel variables provide that:
wiki.asterisk.org/wiki/display/ … +variables
Cheers
You can, however, recover the From or Remote-Party-ID headers, using one of the functions.
Or:
exten => 100,n,Set(foo=${SIPPEER(mysippeer,ip)})
exten => 100,n,NoOp(${foo})
Cheers.