From 07bd1b20636604db73540c559fbc999f0c53e22c Mon Sep 17 00:00:00 2001 From: Phil Ringnalda Date: Fri, 6 Feb 2009 20:47:46 -0800 Subject: [PATCH] Bug 473483 - unable to connect to server after laptop awakes from sleep, flip offline.autoDetect to false on OS X until bug 470274 lands a real fix, r=bienvenu --- mail/app/profile/all-thunderbird.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mail/app/profile/all-thunderbird.js b/mail/app/profile/all-thunderbird.js index d1ded65996..57bcd879a1 100644 --- a/mail/app/profile/all-thunderbird.js +++ b/mail/app/profile/all-thunderbird.js @@ -442,3 +442,9 @@ pref("mail.spotlight.logging.console", false); pref("mail.spotlight.logging.dump", false); #endif #endif + +#ifdef XP_MACOSX +// Disable detecting offline state on OS X until bug 470274 is fixed, so people +// don't turn it off themselves out of frustration and never turn it back on. +pref("offline.autoDetect", false); +#endif