# HG changeset patch # User Paul Aurich # Date 1241671396 0 # Node ID bb537c36d92fc3256d25ba837c51b4ef2f639f72 # Parent aa29dac7924fc3961908bae11cdbde6d840682d7 Ack the mail notification IQ. Refs #8240. diff -r aa29dac7924f -r bb537c36d92f libpurple/protocols/jabber/google.c --- a/libpurple/protocols/jabber/google.c Thu May 07 04:37:30 2009 +0000 +++ b/libpurple/protocols/jabber/google.c Thu May 07 04:43:16 2009 +0000 @@ -761,6 +761,12 @@ if (type != JABBER_IQ_SET) return; + /* Acknowledge the notification */ + iq = jabber_iq_new(js, JABBER_IQ_RESULT); + xmlnode_set_attrib(iq->node, "to", from); + xmlnode_set_attrib(iq->node, "id", id); + jabber_iq_send(iq); + purple_debug(PURPLE_DEBUG_MISC, "jabber", "Got new mail notification. Sending request for more info\n");