In the CEL table, there is no internal employee number in the cid_num column
Observable issues:
No call card windows when making calls
Wrong responsible user in activities
How to diagnose the issue:
Find a call that didn't display the call card window in the application log file (e.g. incoming from 89123456 to 123). Use call ID to find all log entries related to this call.
Find an event message "Conversation requested" - that's the moment when the call card should be displayed.
Example message:
3. Here the trunk number is listed instead of the internal number ("to").
How to fix it:
In the /etc/asterisk/sip.conf file (can be sip_additional.conf, sip_custom.conf, or user.conf for Elastix), add a line in a block for [123]:
cid_number=123
Do that for all numbers with similar issues.Otherwise, you can add:
callerid=Name <123>
Name – is the employee name to be displayed on the phone. Re-read the Asterisk configs:asterisk -rx “sip reload”.
Last updated