commit 4ea436009ad54145cb0f1b8659d890d12d5c65f8
Author: Arlo Breault <arlo...@gmail.com>
Date:   Thu Dec 1 14:12:32 2016 -0800

    Apply prefs in bugzilla 1262010
    
     * Though these should already be prevented by the trac 16475 patch
---
 .../0001-Set-Tor-Messenger-preferences.patch       | 33 ++++++++++++++++------
 ...0002-Trac-16489-Prevent-account-autologin.patch |  2 +-
 ...Support-Special-Characters-input-prompt-o.patch |  2 +-
 ...Better-error-reporting-for-failed-outgoin.patch |  2 +-
 .../0005-Trac-13312-OTR-over-Twitter-DMs.patch     |  2 +-
 ...-Fix-tab-strip-background-colour-on-OS-X..patch |  2 +-
 ...-XMPP-createConversation-should-handle-in.patch |  2 +-
 ...-Set-_userVCard-own-property-when-downloa.patch |  2 +-
 .../0009-XMPP-in-band-registration.patch           |  2 +-
 .../instantbird/0010-Remove-search-from-UI.patch   |  2 +-
 .../0011-Add-Tor-Messenger-branding.patch          |  2 +-
 projects/instantbird/0012-Account-picture.patch    |  2 +-
 .../0013-Modify-protocol-defaults.patch            |  2 +-
 .../instantbird/0014-Modify-IRC-defaults.patch     |  2 +-
 projects/instantbird/0015-Modify-themes.patch      |  2 +-
 .../instantbird/0016-Modify-XMPP-defaults.patch    |  2 +-
 projects/instantbird/0017-Remove-logging-UI.patch  |  2 +-
 projects/instantbird/0018-Cert-override.patch      |  2 +-
 .../0019-Display-all-traffic-over-Tor.patch        |  2 +-
 .../instantbird/0020-Trac-17480-Content-sink.patch |  2 +-
 .../0021-SASL-ECDSA-NIST256P-CHALLENGE.patch       |  2 +-
 ...-msg-is-not-defined-error-in-irc.js-chang.patch |  2 +-
 ...Contact-list-entries-should-adapt-their-h.patch |  2 +-
 ...1187281-Only-show-close-button-on-Windows.patch |  2 +-
 ...-Remove-old-Yahoo-Messenger-support.-r-al.patch |  2 +-
 ...-Use-built-in-functions-instead-of-an-svg.patch |  2 +-
 26 files changed, 49 insertions(+), 34 deletions(-)

diff --git a/projects/instantbird/0001-Set-Tor-Messenger-preferences.patch 
b/projects/instantbird/0001-Set-Tor-Messenger-preferences.patch
index a2cdba5..bb9000e 100644
--- a/projects/instantbird/0001-Set-Tor-Messenger-preferences.patch
+++ b/projects/instantbird/0001-Set-Tor-Messenger-preferences.patch
@@ -1,14 +1,14 @@
-From f33a13f5e5f2fc0a696f93494e29163c531e53e6 Mon Sep 17 00:00:00 2001
+From 4c3c3738aef40779b8725db2cc8e32474b2e512c Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:48:41 -0700
 Subject: [PATCH 01/26] Set Tor Messenger preferences
 
 ---
- im/app/profile/all-instantbird.js | 406 +++++++++++++++++++++++++++++++++++---
- 1 file changed, 384 insertions(+), 22 deletions(-)
+ im/app/profile/all-instantbird.js | 420 ++++++++++++++++++++++++++++++++++++--
+ 1 file changed, 398 insertions(+), 22 deletions(-)
 
 diff --git a/im/app/profile/all-instantbird.js 
b/im/app/profile/all-instantbird.js
-index b7a397017..1ad0d6b95 100644
+index b7a397017..ff49380b6 100644
 --- a/im/app/profile/all-instantbird.js
 +++ b/im/app/profile/all-instantbird.js
 @@ -1,3 +1,47 @@
@@ -131,9 +131,24 @@ index b7a397017..1ad0d6b95 100644
  
  // Preferences for the Get Add-ons pane
  pref("extensions.getAddons.cache.enabled", false);
-@@ -245,9 +286,9 @@ pref("extensions.getMoreEmoticonsURL", 
"https://add-ons.instantbird.org/%LOCALE%
+@@ -244,10 +285,24 @@ pref("extensions.getMoreMessageStylesURL", 
"https://add-ons.instantbird.org/%LOC
+ pref("extensions.getMoreEmoticonsURL", 
"https://add-ons.instantbird.org/%LOCALE%/%APP%/%VERSION%/emoticons/";);
  pref("extensions.getMoreProtocolsURL", 
"https://add-ons.instantbird.org/%LOCALE%/%APP%/%VERSION%/protocols/";);
  
++// Click-to-play has not been ported yet, see bug 814168.
++// The default plugin state should be changed to "ask to activate" when this
++// has been done.
++pref("plugins.click_to_play", false);
++// Disable by default.
++pref("plugin.default.state", 0);
++
++// Plugins bundled in XPIs are enabled by default.
++pref("plugin.defaultXpi.state", 0);
++
++// Flash and Java disabled by default.
++pref("plugin.state.flash", 0);
++pref("plugin.state.java", 0);
++
  // suppress external-load warning for standard browser schemes
 -pref("network.protocol-handler.warn-external.http", false);
 -pref("network.protocol-handler.warn-external.https", false);
@@ -144,7 +159,7 @@ index b7a397017..1ad0d6b95 100644
  
  // don't load links inside Instantbird
  pref("network.protocol-handler.expose-all", false);
-@@ -259,13 +300,13 @@ pref("network.protocol-handler.expose.https", true);
+@@ -259,13 +314,13 @@ pref("network.protocol-handler.expose.https", true);
  
  // expose javascript: so that message themes can use it.
  // javascript: links inside messages are filtered out.
@@ -161,7 +176,7 @@ index b7a397017..1ad0d6b95 100644
  
  // We have an Error Console menu item by default so let's display chrome 
errors
  pref("javascript.options.showInConsole", true);
-@@ -300,14 +341,335 @@ pref("browser.tabs.tabClipWidth", 140);
+@@ -300,14 +355,335 @@ pref("browser.tabs.tabClipWidth", 140);
  // 3  at the end of the tabstrip
  pref("browser.tabs.closeButtons", 1);
  
@@ -367,8 +382,8 @@ index b7a397017..1ad0d6b95 100644
 +pref("network.protocol-handler.warn-external.nntp", true);
 +pref("network.protocol-handler.warn-external.snews", true);
 +pref("plugin.disable", true); // Disable to search plugins on first start
-+pref("plugins.click_to_play", true);
-+pref("plugin.state.flash", 1);
++//pref("plugins.click_to_play", true);  // TM
++//pref("plugin.state.flash", 1);  // TM
 +pref("plugins.hide_infobar_for_missing_plugin", true);
 +pref("plugins.hideMissingPluginsNotification", true);
 +pref("media.peerconnection.enabled", false); // Disable WebRTC interfaces
diff --git 
a/projects/instantbird/0002-Trac-16489-Prevent-account-autologin.patch 
b/projects/instantbird/0002-Trac-16489-Prevent-account-autologin.patch
index b46aad2..f69ce4c 100644
--- a/projects/instantbird/0002-Trac-16489-Prevent-account-autologin.patch
+++ b/projects/instantbird/0002-Trac-16489-Prevent-account-autologin.patch
@@ -1,4 +1,4 @@
-From 758ef11f3849bb0ac8009477de16f3ad5f69fcae Mon Sep 17 00:00:00 2001
+From a4ddbd00c0a32d809a2af24f9f2eb3ce9e6734f4 Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Mon, 16 Nov 2015 20:37:53 -0800
 Subject: [PATCH 02/26] Trac 16489: Prevent account autologin
diff --git 
a/projects/instantbird/0003-Trac-17896-Support-Special-Characters-input-prompt-o.patch
 
b/projects/instantbird/0003-Trac-17896-Support-Special-Characters-input-prompt-o.patch
index 13c94f1..6eff88d 100644
--- 
a/projects/instantbird/0003-Trac-17896-Support-Special-Characters-input-prompt-o.patch
+++ 
b/projects/instantbird/0003-Trac-17896-Support-Special-Characters-input-prompt-o.patch
@@ -1,4 +1,4 @@
-From db8cc660b76c6a9f005a31dbb6ab6dc33aa63d09 Mon Sep 17 00:00:00 2001
+From e5f7cc504ec4045209879a43e21e9408f82f759d Mon Sep 17 00:00:00 2001
 From: aleth <al...@instantbird.org>
 Date: Sat, 30 Jan 2016 20:56:38 +0100
 Subject: [PATCH 03/26] Trac 17896: Support "Special Characters" input prompt
diff --git 
a/projects/instantbird/0004-Trac-17494-Better-error-reporting-for-failed-outgoin.patch
 
b/projects/instantbird/0004-Trac-17494-Better-error-reporting-for-failed-outgoin.patch
index 9bae3b4..0c9d3fb 100644
--- 
a/projects/instantbird/0004-Trac-17494-Better-error-reporting-for-failed-outgoin.patch
+++ 
b/projects/instantbird/0004-Trac-17494-Better-error-reporting-for-failed-outgoin.patch
@@ -1,4 +1,4 @@
-From a9bdb6d653c25a5e43e518a3120398c05cc6cefb Mon Sep 17 00:00:00 2001
+From bd4f023395241318ad8bab0f721fbccccffb8885 Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Tue, 2 Feb 2016 16:04:51 -0800
 Subject: [PATCH 04/26] Trac 17494: Better error reporting for failed outgoing
diff --git a/projects/instantbird/0005-Trac-13312-OTR-over-Twitter-DMs.patch 
b/projects/instantbird/0005-Trac-13312-OTR-over-Twitter-DMs.patch
index b431c18..e586e10 100644
--- a/projects/instantbird/0005-Trac-13312-OTR-over-Twitter-DMs.patch
+++ b/projects/instantbird/0005-Trac-13312-OTR-over-Twitter-DMs.patch
@@ -1,4 +1,4 @@
-From 6868f83d3fad91762838192d1e34005b153279ff Mon Sep 17 00:00:00 2001
+From 5996053c815c9872b3ec90eabbdaad69071064fa Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Tue, 15 Mar 2016 17:40:42 -0700
 Subject: [PATCH 05/26] Trac 13312: OTR over Twitter DMs
diff --git 
a/projects/instantbird/0006-Bug-1218193-Fix-tab-strip-background-colour-on-OS-X..patch
 
b/projects/instantbird/0006-Bug-1218193-Fix-tab-strip-background-colour-on-OS-X..patch
index d43de67..c2872f0 100644
--- 
a/projects/instantbird/0006-Bug-1218193-Fix-tab-strip-background-colour-on-OS-X..patch
+++ 
b/projects/instantbird/0006-Bug-1218193-Fix-tab-strip-background-colour-on-OS-X..patch
@@ -1,4 +1,4 @@
-From 3fdd9b978c8174124bbf68d414c448818b838473 Mon Sep 17 00:00:00 2001
+From b9052add0dc1e7fdca9c9be6a86cfee4765fb1cd Mon Sep 17 00:00:00 2001
 From: Nihanth Subramanya <nhn...@gmail.com>
 Date: Sun, 9 Oct 2016 21:53:04 -0700
 Subject: [PATCH 06/26] Bug 1218193 - Fix tab strip background colour on OS X.
diff --git 
a/projects/instantbird/0007-Bug-1246431-XMPP-createConversation-should-handle-in.patch
 
b/projects/instantbird/0007-Bug-1246431-XMPP-createConversation-should-handle-in.patch
index 7090f06..3be82c4 100644
--- 
a/projects/instantbird/0007-Bug-1246431-XMPP-createConversation-should-handle-in.patch
+++ 
b/projects/instantbird/0007-Bug-1246431-XMPP-createConversation-should-handle-in.patch
@@ -1,4 +1,4 @@
-From 27678323a56d55750f2c95babbea05c788aaa3ca Mon Sep 17 00:00:00 2001
+From 50e579c8128762aba5b089dd8efa2581c5647309 Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Sun, 9 Oct 2016 21:57:07 -0700
 Subject: [PATCH 07/26] Bug 1246431 - XMPP createConversation should handle
diff --git 
a/projects/instantbird/0008-Bug-1298574-Set-_userVCard-own-property-when-downloa.patch
 
b/projects/instantbird/0008-Bug-1298574-Set-_userVCard-own-property-when-downloa.patch
index 0d542a6..860260e 100644
--- 
a/projects/instantbird/0008-Bug-1298574-Set-_userVCard-own-property-when-downloa.patch
+++ 
b/projects/instantbird/0008-Bug-1298574-Set-_userVCard-own-property-when-downloa.patch
@@ -1,4 +1,4 @@
-From 076859e81b50d9e108349b8f8813755c1394a22e Mon Sep 17 00:00:00 2001
+From ec8291566407e9791f5cbb7a518ba990f8063c97 Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Sun, 28 Aug 2016 08:57:41 -0700
 Subject: [PATCH 08/26] Bug 1298574 - Set _userVCard own property when
diff --git a/projects/instantbird/0009-XMPP-in-band-registration.patch 
b/projects/instantbird/0009-XMPP-in-band-registration.patch
index 7568fa6..9df73d4 100644
--- a/projects/instantbird/0009-XMPP-in-band-registration.patch
+++ b/projects/instantbird/0009-XMPP-in-band-registration.patch
@@ -1,4 +1,4 @@
-From 84761e5e917ef65fe5f41f37b1594b1958e0a132 Mon Sep 17 00:00:00 2001
+From a65748c8260e0e9e1d5c5c49460a0f4f932572ec Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 18:42:25 -0700
 Subject: [PATCH 09/26] XMPP in-band registration
diff --git a/projects/instantbird/0010-Remove-search-from-UI.patch 
b/projects/instantbird/0010-Remove-search-from-UI.patch
index 8abae5c..6abe85b 100644
--- a/projects/instantbird/0010-Remove-search-from-UI.patch
+++ b/projects/instantbird/0010-Remove-search-from-UI.patch
@@ -1,4 +1,4 @@
-From 8afe25c91c32920f508823388384d08a9fffbafe Mon Sep 17 00:00:00 2001
+From 8a782e78164f9bab6992169c94eb63968413437e Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 18:47:48 -0700
 Subject: [PATCH 10/26] Remove search from UI
diff --git a/projects/instantbird/0011-Add-Tor-Messenger-branding.patch 
b/projects/instantbird/0011-Add-Tor-Messenger-branding.patch
index c9bd8d1..33da960 100644
--- a/projects/instantbird/0011-Add-Tor-Messenger-branding.patch
+++ b/projects/instantbird/0011-Add-Tor-Messenger-branding.patch
@@ -1,4 +1,4 @@
-From 30825fd3818b8aedbe9657cba44cc19367423178 Mon Sep 17 00:00:00 2001
+From 894cf42051d4df8ef2186072157ea4de664a7215 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 18:56:27 -0700
 Subject: [PATCH 11/26] Add Tor Messenger branding
diff --git a/projects/instantbird/0012-Account-picture.patch 
b/projects/instantbird/0012-Account-picture.patch
index 6e1f94d..d3d4c0b 100644
--- a/projects/instantbird/0012-Account-picture.patch
+++ b/projects/instantbird/0012-Account-picture.patch
@@ -1,4 +1,4 @@
-From 0e9be1b8cbc5a83deea99e27db548a5ee7f27595 Mon Sep 17 00:00:00 2001
+From a6ed86bacc2304bb23ecfd339aa6a2c39750e704 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:24:09 -0700
 Subject: [PATCH 12/26] Account picture
diff --git a/projects/instantbird/0013-Modify-protocol-defaults.patch 
b/projects/instantbird/0013-Modify-protocol-defaults.patch
index 5abc1f8..d5b138f 100644
--- a/projects/instantbird/0013-Modify-protocol-defaults.patch
+++ b/projects/instantbird/0013-Modify-protocol-defaults.patch
@@ -1,4 +1,4 @@
-From 347131c4544a45138a92758b7d5e8367a1b88e53 Mon Sep 17 00:00:00 2001
+From 9dffeaa7b684ae17975a79cb05e1c3835999dbb5 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:25:34 -0700
 Subject: [PATCH 13/26] Modify protocol defaults
diff --git a/projects/instantbird/0014-Modify-IRC-defaults.patch 
b/projects/instantbird/0014-Modify-IRC-defaults.patch
index 6ab7e0b..2e82d90 100644
--- a/projects/instantbird/0014-Modify-IRC-defaults.patch
+++ b/projects/instantbird/0014-Modify-IRC-defaults.patch
@@ -1,4 +1,4 @@
-From 284337da762e32ea77b46bfa7746468aacc8fb43 Mon Sep 17 00:00:00 2001
+From 17523fa3d2f7860abe3eb6629894a7df9bdc2350 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:31:58 -0700
 Subject: [PATCH 14/26] Modify IRC defaults
diff --git a/projects/instantbird/0015-Modify-themes.patch 
b/projects/instantbird/0015-Modify-themes.patch
index d1028bb..d4a7212 100644
--- a/projects/instantbird/0015-Modify-themes.patch
+++ b/projects/instantbird/0015-Modify-themes.patch
@@ -1,4 +1,4 @@
-From 73c0698dbb4858ec7e717c16e12e11838abc50e4 Mon Sep 17 00:00:00 2001
+From 7873271e02abb179a0b1a303a21fffeff515cbc4 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:36:38 -0700
 Subject: [PATCH 15/26] Modify themes
diff --git a/projects/instantbird/0016-Modify-XMPP-defaults.patch 
b/projects/instantbird/0016-Modify-XMPP-defaults.patch
index 3e95f90..cfb73bc 100644
--- a/projects/instantbird/0016-Modify-XMPP-defaults.patch
+++ b/projects/instantbird/0016-Modify-XMPP-defaults.patch
@@ -1,4 +1,4 @@
-From c3a34e12c701cf4d9181f59fcda39ac63bad886d Mon Sep 17 00:00:00 2001
+From 5f1268c7139217124d8ade00cd9fb1f90da0ab49 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:38:49 -0700
 Subject: [PATCH 16/26] Modify XMPP defaults
diff --git a/projects/instantbird/0017-Remove-logging-UI.patch 
b/projects/instantbird/0017-Remove-logging-UI.patch
index 40a18cc..fbf2e6f 100644
--- a/projects/instantbird/0017-Remove-logging-UI.patch
+++ b/projects/instantbird/0017-Remove-logging-UI.patch
@@ -1,4 +1,4 @@
-From dbc831c825fbbde2bd942a79d5ee85f24e441580 Mon Sep 17 00:00:00 2001
+From 7db01c64bbc4b4bf34316ba1cfcf4c2d13a99035 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:50:48 -0700
 Subject: [PATCH 17/26] Remove logging UI
diff --git a/projects/instantbird/0018-Cert-override.patch 
b/projects/instantbird/0018-Cert-override.patch
index ceb7528..7454098 100644
--- a/projects/instantbird/0018-Cert-override.patch
+++ b/projects/instantbird/0018-Cert-override.patch
@@ -1,4 +1,4 @@
-From fc7f9fc5c8cd7c3dc149d36d491f0e4adfc638c2 Mon Sep 17 00:00:00 2001
+From 7df4822425e825e6bdd8dc225f28e087eec7c5c8 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:56:46 -0700
 Subject: [PATCH 18/26] Cert override
diff --git a/projects/instantbird/0019-Display-all-traffic-over-Tor.patch 
b/projects/instantbird/0019-Display-all-traffic-over-Tor.patch
index 6ba8e52..7bafdf9 100644
--- a/projects/instantbird/0019-Display-all-traffic-over-Tor.patch
+++ b/projects/instantbird/0019-Display-all-traffic-over-Tor.patch
@@ -1,4 +1,4 @@
-From a9f32ef8f285f390ff1b8766a886056676ac57e3 Mon Sep 17 00:00:00 2001
+From 96f480c22c8c4a6002c4bfd563cd444494b56294 Mon Sep 17 00:00:00 2001
 From: Sukhbir Singh <sukh...@torproject.org>
 Date: Mon, 10 Oct 2016 19:58:31 -0700
 Subject: [PATCH 19/26] Display all traffic over Tor
diff --git a/projects/instantbird/0020-Trac-17480-Content-sink.patch 
b/projects/instantbird/0020-Trac-17480-Content-sink.patch
index 9b33973..5c43728 100644
--- a/projects/instantbird/0020-Trac-17480-Content-sink.patch
+++ b/projects/instantbird/0020-Trac-17480-Content-sink.patch
@@ -1,4 +1,4 @@
-From d8f1585096eb0fccc8c749721e38d424eaf82cca Mon Sep 17 00:00:00 2001
+From c88a57576cc3b78c69395d35888662e8de4d2f8e Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Wed, 5 Oct 2016 11:09:25 -0700
 Subject: [PATCH 20/26] Trac 17480: Content sink
diff --git a/projects/instantbird/0021-SASL-ECDSA-NIST256P-CHALLENGE.patch 
b/projects/instantbird/0021-SASL-ECDSA-NIST256P-CHALLENGE.patch
index 6d25e3e..bf0ce9f 100644
--- a/projects/instantbird/0021-SASL-ECDSA-NIST256P-CHALLENGE.patch
+++ b/projects/instantbird/0021-SASL-ECDSA-NIST256P-CHALLENGE.patch
@@ -1,4 +1,4 @@
-From 80e0274c4fb2884c2c10b4c54e0c4a2a8b4feda7 Mon Sep 17 00:00:00 2001
+From 08b1abe3af6bdc0143d82ca671218146147ac09e Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Sun, 2 Oct 2016 08:46:55 -0700
 Subject: [PATCH 21/26] SASL ECDSA-NIST256P-CHALLENGE
diff --git 
a/projects/instantbird/0022-Bug-1313137-msg-is-not-defined-error-in-irc.js-chang.patch
 
b/projects/instantbird/0022-Bug-1313137-msg-is-not-defined-error-in-irc.js-chang.patch
index 388a388..ec5eda8 100644
--- 
a/projects/instantbird/0022-Bug-1313137-msg-is-not-defined-error-in-irc.js-chang.patch
+++ 
b/projects/instantbird/0022-Bug-1313137-msg-is-not-defined-error-in-irc.js-chang.patch
@@ -1,4 +1,4 @@
-From 6650334d6bb7d5fad2c3519141577a359f809181 Mon Sep 17 00:00:00 2001
+From b2a074e0dd2ccf85039846f1722f22af2a86062a Mon Sep 17 00:00:00 2001
 From: aleth <al...@instantbird.org>
 Date: Wed, 26 Oct 2016 20:16:58 +0200
 Subject: [PATCH 22/26] Bug 1313137 - "msg is not defined" error in
diff --git 
a/projects/instantbird/0023-Bug-954368-Contact-list-entries-should-adapt-their-h.patch
 
b/projects/instantbird/0023-Bug-954368-Contact-list-entries-should-adapt-their-h.patch
index 2ded572..5433910 100644
--- 
a/projects/instantbird/0023-Bug-954368-Contact-list-entries-should-adapt-their-h.patch
+++ 
b/projects/instantbird/0023-Bug-954368-Contact-list-entries-should-adapt-their-h.patch
@@ -1,4 +1,4 @@
-From 5b9e4e065607f314bcc2af04e3fbb839e27ea567 Mon Sep 17 00:00:00 2001
+From 146c625d13d61402b879381a5ce372677837dfc8 Mon Sep 17 00:00:00 2001
 From: aleth <al...@instantbird.org>
 Date: Thu, 12 May 2016 15:10:43 +0200
 Subject: [PATCH 23/26] Bug 954368 - Contact list entries should adapt their
diff --git 
a/projects/instantbird/0024-Bug-1187281-Only-show-close-button-on-Windows.patch 
b/projects/instantbird/0024-Bug-1187281-Only-show-close-button-on-Windows.patch
index abd54c8..dbdfe6e 100644
--- 
a/projects/instantbird/0024-Bug-1187281-Only-show-close-button-on-Windows.patch
+++ 
b/projects/instantbird/0024-Bug-1187281-Only-show-close-button-on-Windows.patch
@@ -1,4 +1,4 @@
-From e8f8d6a0b2eddf4af186f5e87fccf53d3a00ca6a Mon Sep 17 00:00:00 2001
+From f5d793612a6fc1aee9f85347ed92b8358e3730fd Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Sat, 5 Nov 2016 14:55:20 -0700
 Subject: [PATCH 24/26] Bug 1187281 - Only show "close" button on Windows
diff --git 
a/projects/instantbird/0025-Bug-1316000-Remove-old-Yahoo-Messenger-support.-r-al.patch
 
b/projects/instantbird/0025-Bug-1316000-Remove-old-Yahoo-Messenger-support.-r-al.patch
index a806bc4..c8fc880 100644
--- 
a/projects/instantbird/0025-Bug-1316000-Remove-old-Yahoo-Messenger-support.-r-al.patch
+++ 
b/projects/instantbird/0025-Bug-1316000-Remove-old-Yahoo-Messenger-support.-r-al.patch
@@ -1,4 +1,4 @@
-From c300ecb9482610b71f0418a8f14afba6b9474923 Mon Sep 17 00:00:00 2001
+From 98df785bcb7e90dc878dcfe70e7c84cec1c69cd3 Mon Sep 17 00:00:00 2001
 From: Patrick Cloke <clo...@gmail.com>
 Date: Wed, 9 Nov 2016 09:03:49 -0800
 Subject: [PATCH 25/26] Bug 1316000 - Remove old Yahoo! Messenger support.
diff --git 
a/projects/instantbird/0026-Bug-1321641-Use-built-in-functions-instead-of-an-svg.patch
 
b/projects/instantbird/0026-Bug-1321641-Use-built-in-functions-instead-of-an-svg.patch
index 2e9bde6..415903a 100644
--- 
a/projects/instantbird/0026-Bug-1321641-Use-built-in-functions-instead-of-an-svg.patch
+++ 
b/projects/instantbird/0026-Bug-1321641-Use-built-in-functions-instead-of-an-svg.patch
@@ -1,4 +1,4 @@
-From 915c02bbdb4032c513c0eeb43b36b56dcc006046 Mon Sep 17 00:00:00 2001
+From 09954cbcf1d6c769e0610718edd41c13183fcc75 Mon Sep 17 00:00:00 2001
 From: Arlo Breault <arlo...@gmail.com>
 Date: Thu, 1 Dec 2016 13:25:42 -0800
 Subject: [PATCH 26/26] Bug 1321641 - Use built-in functions instead of an svg

_______________________________________________
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits

Reply via email to