Index: asterisk/apps/app_meetme.c =================================================================== --- asterisk/apps/app_meetme.c (revision 15282) +++ asterisk/apps/app_meetme.c (working copy) @@ -2258,6 +2258,10 @@ case 77: /* M: Mute */ if (user) { user->adminflags |= ADMINFLAG_MUTED; + manager_event(EVENT_FLAG_CALL, "MeetmeMute", + "Meetme: %s\r\n" + "Usernum: %d\r\n", + cnf->confno, user->user_no); } else { ast_log(LOG_NOTICE, "Specified User not found!\n"); } @@ -2277,6 +2281,10 @@ case 109: /* m: Unmute */ if (user && (user->adminflags & ADMINFLAG_MUTED)) { user->adminflags ^= ADMINFLAG_MUTED; + manager_event(EVENT_FLAG_CALL, "MeetmeUnmute", + "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"); }