Max-no-answer question

Status
Not open for further replies.

kp409

New Member
Dec 16, 2020
8
0
1
33
max-no-answer set to 0 - does this mean this feature is disabled, or if an agent misses 1 call the agent is set to On Break status?
 

hfoster

Active Member
Jan 28, 2019
677
80
28
34
According to the source code:

C:
if (h->max_no_answer > 0 && (h->no_answer_count + 1) >= h->max_no_answer) {
    #<snipped for brevity>
    cc_agent_update("status", cc_agent_status2str(h->agent_no_answer_status), h->agent_name);
}

So I believe 0 just explicitly disables the feature. Not defining it also disables it too.
 
  • Like
Reactions: kp409
Status
Not open for further replies.