@7ala
In functions.php find this code:
// MANAGE MESSAGE INSERT INTO DATABASE
function im_insert_message($thread_id, $message, $type, $file, $notify = true ) {
Replace it with:
// MANAGE MESSAGE INSERT INTO DATABASE
function im_insert_message($thread_id, $message, $type, $file, $notify = true ) {
if(im_param('only_logged') == 1 && !osc_is_web_user_logged_in()) {
return false;
}
That should do it, plugin does not contains other methods for creating/sending messages.