d046e9
diff --git a/comm/mail/extensions/openpgp/content/BondOpenPGP.jsm b/comm/mail/extensions/openpgp/content/BondOpenPGP.jsm
d046e9
--- a/comm/mail/extensions/openpgp/content/BondOpenPGP.jsm
d046e9
+++ b/comm/mail/extensions/openpgp/content/BondOpenPGP.jsm
d046e9
@@ -53,20 +53,23 @@ var BondOpenPGP = {
d046e9
 
d046e9
   // if null, we haven't yet read the pref
d046e9
   // if true, pref was enabled and we already triggered init
d046e9
   _isEnabled: null,
d046e9
 
d046e9
   _alreadyTriedInit: false, // if already true, we will not try again
d046e9
 
d046e9
   setIsEnabledFromPref() {
d046e9
-    this._isEnabled = Services.prefs.getBoolPref("mail.openpgp.enable");
d046e9
+    return false;
d046e9
+    //this._isEnabled = Services.prefs.getBoolPref("mail.openpgp.enable");
d046e9
   },
d046e9
 
d046e9
   async init() {
d046e9
+    return;
d046e9
+
d046e9
     if (!MailConstants.MOZ_OPENPGP) {
d046e9
       return;
d046e9
     }
d046e9
 
d046e9
     // We never shut off after pref change, disabling requires restart.
d046e9
     // If null, it means we're here for the first time, read the pref.
d046e9
     // If false, it could mean the pref was now turned on at runtime.
d046e9
     // In both scenarios, null and false, we reread the pref to check