0001-Disable-Thunderbird-78-upgrade-warning-message.patch 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. From e60a1b92dc4876ffcb077fafb097246f60eff766 Mon Sep 17 00:00:00 2001
  2. From: Jonas Witschel <diabonas@archlinux.org>
  3. Date: Sun, 5 Jul 2020 13:43:42 +0200
  4. Subject: [PATCH] Disable Thunderbird 78 upgrade warning message
  5. ---
  6. package/configure.jsm | 9 ++++++++-
  7. 1 file changed, 8 insertions(+), 1 deletion(-)
  8. diff --git a/package/configure.jsm b/package/configure.jsm
  9. index 1a10f901..da521a22 100644
  10. --- a/package/configure.jsm
  11. +++ b/package/configure.jsm
  12. @@ -309,6 +309,13 @@ var EnigmailConfigure = {
  13. },
  14. upgradeTo217: function(win) {
  15. - if (!EnigmailCompat.isPostbox()) displayUpgradeInfo(win);
  16. + /* Enigmail obtained from addons.mozilla.org shows a warning that the extension will stop
  17. + working with Thunderbird >= 78 and that users should hold back on upgrading Thunderbird until
  18. + its new builtin OpenPGP support is mature (expected for Thunderbird 78.2). This makes sense for
  19. + users of the builtin Thunderbird auto-update function, but less so for user obtaining Thunderbird
  20. + from a distribution repository, since it encourages partial upgrades. Hence for Arch Linux we
  21. + remove this warning and add a versioned dependency on Thunderbird < 78 instead to prevent users
  22. + from accidentally upgrading to the next release while still having Enigmail installed. */
  23. + // if (!EnigmailCompat.isPostbox()) displayUpgradeInfo(win);
  24. }
  25. };
  26. --
  27. 2.27.0