K kp409 New Member Dec 16, 2020 8 0 1 34 Jul 14, 2021 #1 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?
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 699 86 28 35 Jul 19, 2021 #2 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. Reactions: kp409
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.