From d4f3488abe554151a63f41aecf1339741b8d969c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 13 Nov 2016 02:32:38 +0000 Subject: [PATCH] =?UTF-8?q?Remove=20the=20SRV=20feature,=20since=20the=20s?= =?UTF-8?q?witch=20to=20Gio=20it=E2=80=99s=20always=20enabled.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features_window.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/features_window.py b/src/features_window.py index bd01bb085..96b836f31 100644 --- a/src/features_window.py +++ b/src/features_window.py @@ -72,10 +72,6 @@ class FeaturesWindow: _('Passwords can be stored securely and not just in plaintext.'), _('Requires gnome-keyring and python-gnome2-desktop, or kwalletcli.'), _('Feature not available under Windows.')), - _('SRV'): (self.srv_available, - _('Ability to connect to servers which are using SRV records.'), - _('Requires dnsutils.'), - _('Requires nslookup to use SRV records.')), _('Spell Checker'): (self.speller_available, _('Spellchecking of composed messages.'), _('Requires libgtkspell.'), @@ -199,11 +195,6 @@ class FeaturesWindow: return False return True - def srv_available(self): - if os.name == 'nt': - return True - return helpers.is_in_path('nslookup') - def speller_available(self): try: __import__('gtkspell')