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