case 77: /* M: Mute */
if (user) {
user->adminflags |= ADMINFLAG_MUTED;
+ manager_event(EVENT_FLAG_CALL, "MeetmeMute",
+ "Status: on"
+ "Meetme: %s\r\n"
+ "Usernum: %d\r\n",
+ cnf->confno, user->user_no);
} else {
ast_log(LOG_NOTICE, "Specified User not found!\n");
}
case 109: /* m: Unmute */
if (user && (user->adminflags & ADMINFLAG_MUTED)) {
user->adminflags ^= ADMINFLAG_MUTED;
+ manager_event(EVENT_FLAG_CALL, "MeetmeMute",
+ "Status: off"
+ "Meetme: %s\r\n"
+ "Usernum: %d\r\n",
+ cnf->confno, user->user_no);
} else {
ast_log(LOG_NOTICE, "Specified User not found or he muted himself!\n");
}