GNOME Bugzilla – Bug 609319
Disable Empathy's "Contact goes online" and "Contact goes offline" sound notifications by default
Last modified: 2010-02-09 11:47:24 UTC
Bug first reported in launchpad > https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/516804 "For users with more than a hundred contacts, Emapthy's "Contact goes online" and "Contact goes offline" will play nearly 4 times every minute, assuming every contact signs on and off once every 12 hours. Inundating the user with intrusive audible notifications that convey very little information is not a sane default."
The schema defaults both options to "false"; perhaps this is an ubuntu patch? <schema> <key>/schemas/apps/empathy/notifications/notifications_contact_signin</key> <applyto>/apps/empathy/notifications/notifications_contact_signin</applyto> <owner>empathy</owner> <type>bool</type> <default>false</default> <locale name="C"> <short>Pop up notifications when a contact logs in</short> <long> Whether to show a popup notification when a contact goes online. </long> </locale> </schema> <schema> <key>/schemas/apps/empathy/notifications/notifications_contact_signout</key> <applyto>/apps/empathy/notifications/notifications_contact_signout</applyto> <owner>empathy</owner> <type>bool</type> <default>false</default> <locale name="C"> <short>Pop up notifications when a contact logs out</short> <long> Whether to show a popup notification when a contact goes offline. </long> </locale> </schema>
thanks for pointing that out. I'll mention it on launchpad
the schemas you listed are not the sounds ones which are on by default
Created attachment 153269 [details] [review] disable login & logout sound events by default Oh sorry, I have been working without any sound events for so long I didn't even spot the "sound" in the bug title. Here is a patch, if it makes sense to the maintainers. (as I don't know if "users with more than a hundred contacts" are the users default settings should address).
Review of attachment 153269 [details] [review]: Makes sense to me. Please merge (don't forget to include the bug number in your commit msg).
commit fe9e7dd4083299e534a1f82be51d4d092237f994 Author: Frédéric Péters <fpeters@0d.be> Date: Tue Feb 9 12:44:08 2010 +0100 Disable sound notifications for login/logout of contacts (#609319)