comparison mcabber/mcabber/xmpp.c @ 2190:ee3a40ffcd8b

New option: 'clear_unread_on_carbon' If the new 'clear_unread_on_carbon' option is set to 1, clear the unread message flag for a contact whenever an outgoing carbon copy of a message sent to that contact is received from another client. --- mcabber/mcabber/commands.c | 2 +- mcabber/mcabber/hbuf.h | 1 + mcabber/mcabber/hooks.c | 17 ++++++++++++----- mcabber/mcabber/hooks.h | 2 +- mcabber/mcabber/screen.c | 18 ++++++++++++++---- mcabber/mcabber/xmpp.c | 2 +- mcabber/mcabberrc.example | 5 +++++ 7 files changed, 35 insertions(+), 12 deletions(-)
author Holger Weiß <holger@zedat.fu-berlin.de>
date Thu, 23 Jul 2015 23:44:45 +0200
parents 3b91f6a100f5
children cb53950fb1de
comparison
equal deleted inserted replaced
2189:3b91f6a100f5 2190:ee3a40ffcd8b
1167 */ 1167 */
1168 } 1168 }
1169 #endif 1169 #endif
1170 1170
1171 if (body && *body) 1171 if (body && *body)
1172 hk_message_out(bjid, NULL, timestamp, body, encrypted, NULL); 1172 hk_message_out(bjid, NULL, timestamp, body, encrypted, TRUE, NULL);
1173 1173
1174 scr_LogPrint(LPRINT_DEBUG, "Received outgoing carbon for <%s>", to); 1174 scr_LogPrint(LPRINT_DEBUG, "Received outgoing carbon for <%s>", to);
1175 g_free(decrypted_pgp); 1175 g_free(decrypted_pgp);
1176 goto handle_messages_return; 1176 goto handle_messages_return;
1177 } 1177 }