Your message dated Sat, 9 May 2015 06:17:28 -0400
with message-id
<CAOHcdNZ2EcR2ahL6njXk2tG67wK2J+=re421nwasp7=cna2...@mail.gmail.com>
and subject line Closing 'Default Browser Setting'
has caused the Debian Bug report #668704,
regarding gnome-gmail: Default browser setting
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
668704: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=668704
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: gnome-gmail
Version: 1.8.2-1
Severity: normal
Dear Maintainer,
the package doesn't consider the user preferences about the browser.
Here's a patch that would.
Thanks,
Carlo.
diff --git a/gnome-gmail b/gnome-gmail
index a43ccc7..2919d55 100755
@@ -314,6 +314,8 @@ class ConfigInfo( object ):
except:
pass
+ self.browser = self.client.get_string(
'/desktop/gnome/applications/browser/exec' )
+
def write_config( self ):
""" write out all configuration information """
self.client.set_string( self.basedir + 'user', self.user )
@@ -623,7 +625,10 @@ def main( ):
interface.Notify( "gnome-gmail", 0, '', "gnome-gmail", \
gerr.value, [], {}, 3000 )
else:
- webbrowser.open_new_tab( gmailurl )
+ if cfg.browser != None:
+ os.system('%s %s' % (cfg.browser, gmailurl))
+ else:
+ webbrowser.open_new_tab( gmailurl )
if __name__ == "__main__":
main()
-- System Information:
Debian Release: wheezy/sid
APT prefers testing
APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages gnome-gmail depends on:
ii gconf-editor 3.0.1-1
ii gconf2 3.2.3-4
ii gnome-control-center 1:3.2.2-2
ii libgtk2.0-bin 2.24.10-1
ii python 2.7.2-10
ii python-gconf 2.28.1+dfsg-1
ii python-glade2 2.24.0-3
ii python-gnomekeyring 2.32.0+dfsg-1
ii xdg-utils 1.1.0~rc1+git20111210-6
gnome-gmail recommends no packages.
gnome-gmail suggests no packages.
-- no debconf information
--- End Message ---
--- Begin Message ---
Not an issue.
--
"Le mieux est l'ennemi du bien" - Voltaire
--- End Message ---