2004-08-20 00:18:04 +04:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2005-02-01 21:04:25 +03:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2004-08-20 00:18:04 +04:00
|
|
|
*
|
2005-02-01 21:04:25 +03:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
2004-08-20 00:18:04 +04:00
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2005-02-01 21:04:25 +03:00
|
|
|
* The Initial Developer of the Original Code is
|
2004-08-20 00:18:04 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2005-02-01 21:04:25 +03:00
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
2004-08-20 00:18:04 +04:00
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2005-02-01 21:04:25 +03:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2004-08-20 00:18:04 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2005-02-01 21:04:25 +03:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2004-08-20 00:18:04 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2005-04-07 22:11:59 +04:00
|
|
|
#expand pref("general.useragent.extra.thunderbird", "Thunderbird/__APP_VERSION__");
|
2005-01-07 04:29:20 +03:00
|
|
|
|
|
|
|
#expand pref("general.useragent.locale", "__AB_CD__");
|
2004-09-22 00:19:48 +04:00
|
|
|
pref("general.skins.selectedSkin", "classic/1.0");
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
#ifdef XP_MACOSX
|
2005-04-30 04:28:22 +04:00
|
|
|
pref("browser.chromeURL", "chrome://messenger/content/messengercompose/messengercompose.xul");
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("mail.biff.animate_dock_icon", false);
|
|
|
|
#endif
|
|
|
|
|
2004-12-14 02:41:44 +03:00
|
|
|
// App-specific update preferences
|
2005-06-08 01:45:14 +04:00
|
|
|
|
2005-06-29 10:05:05 +04:00
|
|
|
// Whether or not app updates are enabled
|
2005-08-09 02:57:36 +04:00
|
|
|
pref("app.update.enabled", true);
|
2005-06-29 10:05:05 +04:00
|
|
|
|
2005-06-30 01:07:04 +04:00
|
|
|
// This preference turns on app.update.mode and allows automatic download and
|
|
|
|
// install to take place. We use a separate boolean toggle for this to make
|
|
|
|
// the UI easier to construct.
|
|
|
|
pref("app.update.auto", true);
|
|
|
|
|
2005-06-29 10:05:05 +04:00
|
|
|
// Defines how the Application Update Service notifies the user about updates:
|
|
|
|
//
|
|
|
|
// AUM Set to: Minor Releases: Major Releases:
|
|
|
|
// 0 download no prompt download no prompt
|
|
|
|
// 1 download no prompt download no prompt if no incompatibilities
|
|
|
|
// 2 download no prompt prompt
|
|
|
|
//
|
|
|
|
// See chart in nsUpdateService.js.in for more details
|
|
|
|
//
|
|
|
|
pref("app.update.mode", 1);
|
|
|
|
// If set to true, the Update Service will present no UI for any event.
|
|
|
|
pref("app.update.silent", false);
|
2005-06-08 01:45:14 +04:00
|
|
|
|
2005-08-25 06:16:35 +04:00
|
|
|
// Update service URL:
|
2005-08-25 07:49:07 +04:00
|
|
|
pref("app.update.url", "https://aus2.mozilla.org/update/1/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/update.xml");
|
2005-11-03 00:17:43 +03:00
|
|
|
pref("app.update.vendorName.override", "Mozilla");
|
|
|
|
|
2005-06-27 23:05:58 +04:00
|
|
|
// URL user can browse to manually if for some reason all update installation
|
2005-08-25 06:16:35 +04:00
|
|
|
// attempts fail. TODO: Change this URL
|
2005-09-28 03:35:00 +04:00
|
|
|
pref("app.update.url.manual", "http://www.mozilla.org/products/thunderbird/");
|
2005-10-03 20:34:49 +04:00
|
|
|
// A default value for the "More information about this update" link
|
|
|
|
// supplied in the "An update is available" page of the update wizard.
|
|
|
|
pref("app.update.url.details", "chrome://messenger-region/locale/region.properties");
|
2005-08-25 06:16:35 +04:00
|
|
|
// User-settable override to app.update.url for testing purposes.
|
|
|
|
//pref("app.update.url.override", "");
|
2005-06-27 23:05:58 +04:00
|
|
|
|
|
|
|
// Interval: Time between checks for a new version (in seconds)
|
|
|
|
// default=1 day
|
|
|
|
pref("app.update.interval", 86400);
|
|
|
|
// Interval: Time before prompting the user to download a new version that
|
|
|
|
// is available (in seconds) default=1 day
|
|
|
|
pref("app.update.nagTimer.download", 86400);
|
|
|
|
// Interval: Time before prompting the user to restart to install the latest
|
|
|
|
// download (in seconds) default=30 minutes
|
|
|
|
pref("app.update.nagTimer.restart", 1800);
|
|
|
|
// Interval: When all registered timers should be checked (in milliseconds)
|
|
|
|
// default=5 seconds
|
2005-08-27 00:56:11 +04:00
|
|
|
pref("app.update.timer", 600000);
|
2004-08-20 00:18:04 +04:00
|
|
|
|
2005-06-30 21:04:09 +04:00
|
|
|
// Whether or not we show a dialog box informing the user that the update was
|
|
|
|
// successfully applied. This is off in Firefox by default since we show a
|
|
|
|
// upgrade start page instead! Other apps may wish to show this UI, and supply
|
|
|
|
// a whatsNewURL field in their brand.properties that contains a link to a page
|
|
|
|
// which tells users what's new in this new update.
|
|
|
|
pref("app.update.showInstalledUI", false);
|
|
|
|
|
2006-03-09 00:54:27 +03:00
|
|
|
// Blocklist preferences
|
|
|
|
pref("extensions.blocklist.enabled", true);
|
|
|
|
pref("extensions.blocklist.interval", 86400);
|
|
|
|
pref("extensions.blocklist.url", "https://addons.mozilla.org/blocklist/1/%APP_ID%/%APP_VERSION%/");
|
2006-08-23 09:44:11 +04:00
|
|
|
pref("extensions.blocklist.detailsURL", "http://%LOCALE%.www.mozilla.com/%LOCALE%/blocklist/");
|
2006-03-09 00:54:27 +03:00
|
|
|
|
2005-04-25 22:51:51 +04:00
|
|
|
// Developers can set this to |true| if they are constantly changing files in their
|
|
|
|
// extensions directory so that the extension system does not constantly think that
|
|
|
|
// their extensions are being updated and thus reregistered every time the app is started
|
|
|
|
pref("extensions.ignoreMTimeChanges", false);
|
|
|
|
// Enables some extra Extension System Logging (can reduce performance)
|
|
|
|
pref("extensions.logging.enabled", false);
|
|
|
|
|
2004-12-14 02:41:44 +03:00
|
|
|
// Symmetric (can be overridden by individual extensions) update preferences.
|
|
|
|
// e.g.
|
|
|
|
// extensions.{GUID}.update.enabled
|
|
|
|
// extensions.{GUID}.update.url
|
|
|
|
// extensions.{GUID}.update.interval
|
|
|
|
// .. etc ..
|
|
|
|
//
|
|
|
|
pref("extensions.update.enabled", true);
|
|
|
|
pref("extensions.update.url", "chrome://mozapps/locale/extensions/extensions.properties");
|
|
|
|
|
2005-08-09 04:52:29 +04:00
|
|
|
pref("extensions.update.interval", 86400); // Check for updates to Extensions and
|
|
|
|
// Themes every week
|
2004-12-14 02:41:44 +03:00
|
|
|
// Non-symmetric (not shared by extensions) extension-specific [update] preferences
|
2006-08-30 01:22:57 +04:00
|
|
|
pref("extensions.getMoreExtensionsURL", "http://%LOCALE%.add-ons.mozilla.com/%LOCALE%/%APP%/%VERSION%/extensions/");
|
2006-08-23 09:44:11 +04:00
|
|
|
pref("extensions.getMoreThemesURL", "http://%LOCALE%.add-ons.mozilla.com/%LOCALE%/%APP%/%VERSION%/themes/");
|
2004-12-14 02:41:44 +03:00
|
|
|
pref("extensions.dss.enabled", false); // Dynamic Skin Switching
|
|
|
|
pref("extensions.dss.switchPending", false); // Non-dynamic switch pending after next
|
|
|
|
|
2005-04-07 00:13:32 +04:00
|
|
|
pref("xpinstall.whitelist.add", "update.mozilla.org");
|
|
|
|
pref("xpinstall.whitelist.add.103", "addons.mozilla.org");
|
2004-08-20 00:18:04 +04:00
|
|
|
|
2006-09-30 02:07:50 +04:00
|
|
|
pref("mail.shell.checkDefaultClient", true);
|
2006-02-22 04:21:54 +03:00
|
|
|
pref("mail.spellcheck.inline", true);
|
2006-03-04 03:33:14 +03:00
|
|
|
pref("mail.showPreviewText", true); // enables preview text in mail alerts and folder tooltips
|
2006-02-22 04:21:54 +03:00
|
|
|
|
2006-11-10 01:27:18 +03:00
|
|
|
pref("mail.biff.alert.show_preview", true);
|
|
|
|
pref("mail.biff.alert.show_subject", true);
|
|
|
|
pref("mail.biff.alert.show_sender", true);
|
|
|
|
|
2006-02-22 04:21:54 +03:00
|
|
|
// Folder Pane View
|
|
|
|
// 0 == All Folders
|
|
|
|
// 1 == Unread Folders
|
|
|
|
// 2 == Favorite Folders
|
|
|
|
// 3 == Most Recently Used Folders
|
2006-02-15 02:56:59 +03:00
|
|
|
pref("mail.ui.folderpane.view", 0);
|
2006-06-05 05:57:25 +04:00
|
|
|
pref("mail.folder.views.version", 0);
|
2005-03-06 10:12:04 +03:00
|
|
|
|
2006-08-30 07:54:54 +04:00
|
|
|
// target folder URI used for the last move or copy
|
|
|
|
pref("mail.last_msg_movecopy_target_uri", "");
|
|
|
|
// last move or copy operation was a move
|
|
|
|
pref("mail.last_msg_movecopy_was_move", true);
|
|
|
|
|
2005-03-06 10:12:04 +03:00
|
|
|
#ifdef XP_WIN
|
|
|
|
pref("browser.preferences.instantApply", false);
|
|
|
|
#else
|
|
|
|
pref("browser.preferences.instantApply", true);
|
|
|
|
#endif
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
pref("browser.preferences.animateFadeIn", true);
|
|
|
|
#else
|
|
|
|
pref("browser.preferences.animateFadeIn", false);
|
|
|
|
#endif
|
2005-01-21 10:50:50 +03:00
|
|
|
|
2006-03-04 03:43:31 +03:00
|
|
|
pref("accessibility.typeaheadfind", false);
|
|
|
|
pref("accessibility.typeaheadfind.timeout", 5000);
|
|
|
|
pref("accessibility.typeaheadfind.linksonly", false);
|
2006-03-02 23:17:01 +03:00
|
|
|
pref("accessibility.typeaheadfind.flashBar", 1);
|
|
|
|
|
2004-08-20 00:18:04 +04:00
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
// Overrides of the seamonkey suite mailnews.js prefs
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
pref("mail.showFolderPaneColumns", false); // setting to true will allow total/unread/size columns
|
|
|
|
pref("mail.showCondensedAddresses", true); // show the friendly display name for people I know
|
|
|
|
|
|
|
|
// hidden pref for changing how we present attachments in the message pane
|
|
|
|
pref("mailnews.attachments.display.largeView", false);
|
|
|
|
pref("mail.pane_config.dynamic", 0);
|
2005-10-31 15:58:42 +03:00
|
|
|
pref("mailnews.reuse_thread_window2", true);
|
2006-05-18 22:03:17 +04:00
|
|
|
pref("mail.spam.display.sanitize", true); // sanitize the HTML in spam messages
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("mail.standalone", true);
|
|
|
|
pref("editor.singleLine.pasteNewlines", 4); // substitute commas for new lines in single line text boxes
|
|
|
|
|
|
|
|
// hidden pref to ensure a certain number of headers in the message pane
|
|
|
|
// to avoid the height of the header area from changing when headers are present / not present
|
|
|
|
pref("mailnews.headers.minNumHeaders", 0); // 0 means we ignore this pref
|
|
|
|
|
|
|
|
pref("mail.compose.dontWarnMail2Newsgroup", false);
|
|
|
|
|
2005-01-18 08:12:49 +03:00
|
|
|
pref("network.cookie.cookieBehavior", 3); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
// End seamonkey suite mailnews.js pref overrides
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
// Overrides for generic app behavior from the seamonkey suite's all.js
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// l12n and i18n
|
|
|
|
pref("intl.charsetmenu.mailedit", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.accept_languages", "chrome://global/locale/intl.properties");
|
|
|
|
// collationOption is only set on linux for japanese. see bug 18338 and 62015
|
|
|
|
// we need to check if this pref is still useful.
|
|
|
|
pref("intl.collationOption", "chrome://global-platform/locale/intl.properties");
|
|
|
|
pref("intl.charsetmenu.browser.static", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charsetmenu.browser.more1", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charsetmenu.browser.more2", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charsetmenu.browser.more3", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charsetmenu.browser.more4", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charsetmenu.browser.more5", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charsetmenu.browser.unicode", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charset.detector", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.charset.default", "chrome://global-platform/locale/intl.properties");
|
|
|
|
pref("font.language.group", "chrome://global/locale/intl.properties");
|
|
|
|
pref("intl.menuitems.alwaysappendaccesskeys","chrome://global/locale/intl.properties");
|
2005-07-20 12:40:13 +04:00
|
|
|
pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://global/locale/intl.properties");
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
pref("signon.rememberSignons", true);
|
|
|
|
pref("signon.expireMasterPassword", false);
|
2005-03-02 00:31:42 +03:00
|
|
|
pref("signon.SignonFileName", "signons.txt");
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
pref("browser.hiddenWindowChromeURL", "chrome://messenger/content/hiddenWindow.xul");
|
|
|
|
pref("network.search.url","http://cgi.netscape.com/cgi-bin/url_search.cgi?search=");
|
|
|
|
|
|
|
|
pref("general.startup.browser", false);
|
|
|
|
pref("general.startup.mail", false);
|
|
|
|
pref("general.startup.news", false);
|
|
|
|
pref("general.startup.editor", false);
|
|
|
|
pref("general.startup.compose", false);
|
|
|
|
pref("general.startup.addressbook", false);
|
|
|
|
|
|
|
|
pref("offline.startup_state", 2);
|
2006-11-07 09:20:42 +03:00
|
|
|
// 0 Ask before sending unsent messages when going online
|
|
|
|
// 1 Always send unsent messages when going online
|
|
|
|
// 2 Never send unsent messages when going online
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("offline.send.unsent_messages", 0);
|
2006-11-07 09:20:42 +03:00
|
|
|
|
|
|
|
// 0 Ask before synchronizing the offline mail store when going offline
|
|
|
|
// 1 Always synchronize the offline store when going offline
|
|
|
|
// 2 Never synchronize the offline store when going offline
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("offline.download.download_messages", 0);
|
|
|
|
pref("offline.prompt_synch_on_exit", true);
|
2007-02-03 05:51:03 +03:00
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
pref("offline.autoDetect", true); // automatically move the user offline or online based on the network connection
|
|
|
|
#else
|
|
|
|
pref("offline.autoDetect", false);
|
|
|
|
#endif
|
2004-08-20 00:18:04 +04:00
|
|
|
|
2004-10-30 02:11:23 +04:00
|
|
|
// Expose only select protocol handlers. All others should go
|
|
|
|
// through the external protocol handler route.
|
|
|
|
pref("network.protocol-handler.expose-all", false);
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("network.protocol-handler.expose.mailto", true);
|
|
|
|
pref("network.protocol-handler.expose.news", true);
|
|
|
|
pref("network.protocol-handler.expose.snews", true);
|
|
|
|
pref("network.protocol-handler.expose.nntp", true);
|
|
|
|
pref("network.protocol-handler.expose.imap", true);
|
|
|
|
pref("network.protocol-handler.expose.addbook", true);
|
2004-10-30 02:11:23 +04:00
|
|
|
pref("network.protocol-handler.expose.pop", true);
|
|
|
|
pref("network.protocol-handler.expose.mailbox", true);
|
|
|
|
|
|
|
|
// suppress external-load warning for standard browser schemes
|
|
|
|
pref("network.protocol-handler.warn-external.http", false);
|
|
|
|
pref("network.protocol-handler.warn-external.https", false);
|
|
|
|
pref("network.protocol-handler.warn-external.ftp", false);
|
|
|
|
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("network.hosts.smtp_server", "mail");
|
|
|
|
pref("network.hosts.pop_server", "mail");
|
|
|
|
|
2006-10-11 04:13:35 +04:00
|
|
|
pref("security.warn_entering_secure", false);
|
|
|
|
pref("security.warn_entering_weak", false);
|
|
|
|
pref("security.warn_leaving_secure", false);
|
|
|
|
pref("security.warn_viewing_mixed", false);
|
2005-09-27 02:36:14 +04:00
|
|
|
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("general.config.obscure_value", 0); // for MCD .cfg files
|
|
|
|
|
|
|
|
pref("xpinstall.dialog.confirm", "chrome://mozapps/content/xpinstall/xpinstallConfirm.xul");
|
2006-06-27 01:36:36 +04:00
|
|
|
pref("xpinstall.dialog.progress.skin", "chrome://mozapps/content/extensions/extensions.xul");
|
|
|
|
pref("xpinstall.dialog.progress.chrome", "chrome://mozapps/content/extensions/extensions.xul");
|
2006-04-27 07:05:21 +04:00
|
|
|
pref("xpinstall.dialog.progress.type.skin", "Extension:Manager");
|
|
|
|
pref("xpinstall.dialog.progress.type.chrome", "Extension:Manager");
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
// End seamonkey suite all.js pref overrides
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
// Generic browser related prefs.
|
|
|
|
// XXX: Need to scrub these to see which ones thunderbird really needs...
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
pref("browser.startup.homepage", "chrome://navigator-region/locale/region.properties");
|
|
|
|
pref("browser.cache.memory.capacity", 4096);
|
2006-01-11 20:06:08 +03:00
|
|
|
pref("browser.send_pings", false);
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("browser.chrome.site_icons", true);
|
|
|
|
pref("browser.chrome.favicons", false);
|
|
|
|
pref("browser.chrome.toolbar_tips", true);
|
2004-10-01 04:29:41 +04:00
|
|
|
pref("browser.xul.error_pages.enabled", true);
|
|
|
|
|
2006-02-22 04:21:54 +03:00
|
|
|
// Attachment download manager settings
|
2006-02-13 23:48:45 +03:00
|
|
|
pref("mail.attachment.store.version", 0);
|
2004-08-20 00:18:04 +04:00
|
|
|
pref("browser.download.useDownloadDir", false);
|
|
|
|
pref("browser.download.folderList", 0);
|
2006-02-01 01:03:15 +03:00
|
|
|
pref("browser.download.manager.showAlertOnComplete", false);
|
|
|
|
pref("browser.download.manager.showAlertInterval", 2000);
|
|
|
|
pref("browser.download.manager.retention", 1);
|
|
|
|
pref("browser.download.manager.showWhenStarting", true);
|
|
|
|
pref("browser.download.manager.useWindow", true);
|
2006-02-13 23:48:45 +03:00
|
|
|
pref("browser.download.manager.closeWhenDone", true);
|
|
|
|
pref("browser.download.manager.openDelay", 100);
|
2006-02-01 01:03:15 +03:00
|
|
|
pref("browser.download.manager.focusWhenStarting", false);
|
2006-02-13 23:48:45 +03:00
|
|
|
pref("browser.download.manager.flashCount", 0);
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
pref("javascript.options.showInConsole", true);
|
|
|
|
|
|
|
|
pref("network.enableIDN", false); // Turn on/off IDN (Internationalized Domain Name) resolution
|
|
|
|
pref("wallet.captureForms", true);
|
|
|
|
pref("wallet.enabled", true);
|
|
|
|
pref("wallet.crypto", false);
|
|
|
|
pref("wallet.crypto.autocompleteoverride", false); // Ignore 'autocomplete=off' - available only when wallet.crypto is enabled.
|
|
|
|
pref("wallet.namePanel.hide", false);
|
|
|
|
pref("wallet.addressPanel.hide", false);
|
|
|
|
pref("wallet.phonePanel.hide", false);
|
|
|
|
pref("wallet.creditPanel.hide", false);
|
|
|
|
pref("wallet.employPanel.hide", false);
|
|
|
|
pref("wallet.miscPanel.hide", false);
|
|
|
|
|
|
|
|
// -- folders (Mac: these are binary aliases.)
|
|
|
|
pref("mail.signature_file", "");
|
|
|
|
pref("mail.directory", "");
|
|
|
|
pref("news.directory", "");
|
|
|
|
pref("autoupdate.enabled", true);
|
|
|
|
pref("browser.editor.disabled", false);
|
|
|
|
pref("spellchecker.dictionary", "");
|
2006-10-29 02:07:19 +04:00
|
|
|
// Dictionary download preference
|
2007-01-09 02:19:17 +03:00
|
|
|
pref("spellchecker.dictionaries.download.url", "https://%LOCALE%.add-ons.mozilla.com/%LOCALE%/thunderbird/%VERSION%/dictionaries/");
|
2006-08-09 04:11:42 +04:00
|
|
|
|
2005-04-26 01:58:15 +04:00
|
|
|
// profile.force.migration can be used to bypass the migration wizard, forcing migration from a particular
|
|
|
|
// mail application without any user intervention. Possible values are:
|
|
|
|
// dogbert (4.x), seamonkey (mozilla suite), eudora, oexpress, outlook.
|
|
|
|
pref("profile.force.migration", "");
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
// Customizable toolbar stuff
|
|
|
|
pref("custtoolbar.personal_toolbar_folder", "");
|
|
|
|
|
|
|
|
// XXXbsmedberg why are changing the default value here?
|
|
|
|
// ------------------
|
|
|
|
// Numeral Style
|
|
|
|
// ------------------
|
|
|
|
// 1 = regularcontextnumeralBidi *
|
|
|
|
// 2 = hindicontextnumeralBidi
|
|
|
|
// 3 = arabicnumeralBidi
|
|
|
|
// 4 = hindinumeralBidi
|
|
|
|
pref("bidi.numeral", 1);
|
|
|
|
|
2006-03-15 04:17:53 +03:00
|
|
|
// prefs to control the mail alert notification
|
|
|
|
pref("alerts.slideIncrementTime", 50);
|
|
|
|
pref("alerts.totalOpenTime", 3000);
|
2004-08-20 00:18:04 +04:00
|
|
|
|
|
|
|
// 0 opens the download manager
|
|
|
|
// 1 opens a progress dialog
|
|
|
|
// 2 and other values, no download manager, no progress dialog.
|
|
|
|
pref("browser.downloadmanager.behavior", 1);
|
|
|
|
|
2006-12-01 09:57:49 +03:00
|
|
|
pref("mail.phishing.detection.enabled", true); // enable / disable phishing detection for link clicks
|
|
|
|
|
|
|
|
pref("browser.safebrowsing.enabled", false);
|
|
|
|
|
|
|
|
// Non-enhanced mode (local url lists) URL list to check for updates
|
|
|
|
pref("browser.safebrowsing.provider.0.updateURL", "");
|
|
|
|
pref("browser.safebrowsing.dataProvider", 0);
|
|
|
|
|
|
|
|
// Does the provider name need to be localizable?
|
|
|
|
pref("browser.safebrowsing.provider.0.name", "");
|
|
|
|
pref("browser.safebrowsing.provider.0.lookupURL", "");
|
|
|
|
pref("browser.safebrowsing.provider.0.keyURL", "");
|
|
|
|
pref("browser.safebrowsing.provider.0.reportURL", "");
|
|
|
|
|
|
|
|
// HTML report pages
|
|
|
|
pref("browser.safebrowsing.provider.0.reportGenericURL", "http://{moz:locale}.phish-generic.mozilla.com/?hl={moz:locale}");
|
|
|
|
pref("browser.safebrowsing.provider.0.reportErrorURL", "http://{moz:locale}.phish-error.mozilla.com/?hl={moz:locale}");
|
|
|
|
pref("browser.safebrowsing.provider.0.reportPhishURL", "http://{moz:locale}.phish-report.mozilla.com/?hl={moz:locale}");
|
|
|
|
|
|
|
|
// FAQ URL
|
|
|
|
pref("browser.safebrowsing.warning.infoURL", "http://%LOCALE%.www.mozilla.com/%LOCALE%/firefox/phishing-protection/");
|
|
|
|
|
2004-08-20 00:18:04 +04:00
|
|
|
#ifndef XP_MACOSX
|
|
|
|
#ifdef XP_UNIX
|
|
|
|
// For the download dialog
|
|
|
|
pref("browser.download.progressDnldDialog.enable_launch_reveal_buttons", false);
|
|
|
|
pref("browser.urlbar.clickSelectsAll", false);
|
|
|
|
#endif
|
|
|
|
#endif
|
2005-03-29 05:00:50 +04:00
|
|
|
|
|
|
|
// prevent status-bar spoofing even if people are foolish enough to turn on JS
|
|
|
|
pref("dom.disable_window_status_change", true);
|
2007-01-28 00:41:10 +03:00
|
|
|
|
|
|
|
// For the Empty Junk confirmation dialog
|
|
|
|
pref("mail.emptyJunk.dontAskAgain", false);
|