--- a/src/server.c Fri May 21 14:26:31 2004 +0000 +++ b/src/server.c Fri May 21 14:33:32 2004 +0000 @@ -827,7 +827,7 @@ plugin_return = GPOINTER_TO_INT( gaim_signal_emit_return_1(gaim_conversations_get_handle(), - "received-im-msg", gc->account, + "receiving-im-msg", gc->account, &angel, &buffy, &imflags)); if (!buffy || !angel || plugin_return) { @@ -837,10 +837,13 @@ g_free(angel); return; } - name = angel; + name = angel; message = buffy; + gaim_signal_emit(gaim_conversations_get_handle(), "received-im-msg", gc->account, + name, message, imflags); + /* Make sure URLs are clickable */ buffy = gaim_markup_linkify(message); g_free(message); @@ -1485,7 +1488,7 @@ plugin_return = GPOINTER_TO_INT( gaim_signal_emit_return_1(gaim_conversations_get_handle(), - "received-chat-msg", g->account, + "receiving-chat-msg", g->account, &angel, &buffy, conv)); if (!buffy || !angel || plugin_return) { @@ -1498,6 +1501,9 @@ who = angel; message = buffy; + gaim_signal_emit(gaim_conversations_get_handle(), "received-chat-msg", g->account, + who, message, conv); + /* Make sure URLs are clickable */ buf = gaim_markup_linkify(message);