home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 December / PCWorld_2006-12_cd.bin / komunikace / netscape / nsb-install-8-1-2.exe / defaults / pref / mailnews.js < prev    next >
Text File  |  2006-09-12  |  31KB  |  592 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Netscape Public License
  6.  * Version 1.1 (the "License"); you may not use this file except in
  7.  * compliance with the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/NPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is 
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the NPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the NPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. // this is a hidden preference setting, see bugzilla bug 80035
  39. // (http://bugzilla.mozilla.org/show_bug.cgi?id=80035)
  40. //
  41. // the default value for this setting is true which means when migrating from
  42. // Netscape 4.x, mozilla will copy all the contents of Local Folders and Imap
  43. // Folder to the newly created subfolders of migrated mozilla profile
  44. // when this value is set to false, mozilla will not copy these contents and
  45. // still share them with Netscape 4.x
  46. //
  47. // Advantages of forbidding copy operation:
  48. //     reduce the disk usage
  49. //     quick migration
  50. // Disadvantage of forbidding copy operation:
  51. //     without perfect lock mechamism, there is possibility of data corruption
  52. //     when Netscape 4.x and mozilla run at the same time and access the same
  53. //     mail file at the same time
  54. pref("mail.migration.copyMailFiles", true);
  55.  
  56. //mailnews.timeline_is_enabled should be set to true ONLY for perf measurement-timeline builds.
  57. pref("mailnews.timeline_is_enabled", false);
  58.  
  59. pref("mailnews.logComposePerformance", false);
  60.  
  61. pref("mail.wrap_long_lines",                true);
  62. pref("news.wrap_long_lines",                true);
  63. pref("mail.inline_attachments",             true);
  64. pref("mailnews.auto_unzip_saved_attachments", false);
  65.  
  66. // hidden pref for controlling if the user agent string
  67. // is displayed in the message pane or not...
  68. pref("mailnews.headers.showUserAgent",       false);
  69.  
  70. // hidden pref for controlling if the organization string
  71. // is displayed in the message pane or not...
  72. pref("mailnews.headers.showOrganization",    false);
  73.  
  74. // Mail server preferences, pop by default
  75. pref("mail.server_type",    0);     // 0 pop, 1 imap,
  76.                     // (Unix only:)
  77.                     // 2 movemail, 3 inbox          
  78. pref("mail.auth_login", true);
  79.  
  80. pref("mail.default_drafts", "");    // empty string use default Drafts name;
  81. pref("mail.default_templates", ""); // empty string use default Templates name
  82.  
  83. pref("mail.imap.server_sub_directory",      "");
  84. pref("mail.imap.max_cached_connections",    10);
  85. pref("mail.imap.fetch_by_chunks",           true);
  86. pref("mail.imap.chunk_size",                10240);
  87. pref("mail.imap.min_chunk_size_threshold",  15360);
  88. pref("mail.imap.max_chunk_size",            40960);
  89. pref("mail.imap.chunk_fast",                2);
  90. pref("mail.imap.chunk_ideal",               4);
  91. pref("mail.imap.chunk_add",                 2048);
  92. pref("mail.imap.hide_other_users",          false);
  93. pref("mail.imap.hide_unused_namespaces",    true);
  94. pref("mail.imap.new_mail_get_headers",      true);
  95. pref("mail.imap.auto_unsubscribe_from_noselect_folders",    true);
  96. pref("mail.imap.cleanup_inbox_on_exit",     false);
  97. pref("mail.imap.mime_parts_on_demand",      true);
  98. pref("mail.imap.mime_parts_on_demand_max_depth", 15);
  99. pref("mail.imap.mime_parts_on_demand_threshold", 30000);
  100. pref("mail.imap.use_literal_plus",          true);
  101. pref("mail.thread_without_re",                true);
  102. pref("mail.leave_on_server",                false);
  103. pref("mail.default_cc",                     "");
  104. pref("mail.default_fcc",                    ""); // maibox:URL or Imap://Host/OnLineFolderName
  105. pref("mail.check_new_mail",                 false);
  106. pref("mail.pop3_gets_new_mail",             false);
  107. pref("mail.pop3_response_timeout",          45); // in seconds
  108. pref("mail.check_time",                     10);
  109. pref("mail.pop_name",                       "");
  110. pref("mail.remember_password",              false);
  111. pref("mail.pop_password",                   "");
  112. pref("mail.fixed_width_messages",           true);
  113. pref("mail.citation_color",                 ""); // quoted color
  114. pref("mail.quoted_style",                   0); // 0=plain, 1=bold, 2=italic, 3=bolditalic
  115. pref("mail.quoted_size",                    0); // 0=normal, 1=big, 2=small
  116. pref("mail.quoted_graphical",               true); // use HTML-style quoting for displaying plain text
  117. pref("mail.quoteasblock",                   true); // use HTML-style quoting for quoting plain text
  118. pref("mail.identity.organization",          "");
  119. pref("mail.identity.reply_to",              "");
  120. pref("mail.identity.username",              "");
  121. pref("mail.identity.useremail",             "");
  122. pref("mail.use_fcc",                        true);
  123. pref("mail.cc_self",                        false);
  124. pref("mail.strictly_mime",                  false);
  125. pref("mail.strictly_mime_headers",          true);
  126. pref("mail.label_ascii_only_mail_as_us_ascii", false); 
  127. pref("mail.file_attach_binary",             false);
  128. pref("mail.show_headers",                   1); // some
  129. pref("mail.pane_config",                    0);
  130. pref("mail.addr_book.mapit_url.format", "chrome://messenger-region/locale/region.properties");
  131.  
  132. // the format for "mail.addr_book.quicksearchquery.format" is:
  133. // @V == the escaped value typed in the quick search bar in the addressbook
  134. //
  135. // note, changing this might require a change to SearchNameOrEmail.label
  136. // in messenger.dtd
  137. pref("mail.addr_book.quicksearchquery.format", "chrome://messenger/locale/messenger.properties");
  138.  
  139. // values for "mail.addr_book.lastnamefirst" are:
  140. //0=displayname, 1=lastname first, 2=firstname first
  141. pref("mail.addr_book.lastnamefirst", 0); 
  142. pref("mail.addr_book.displayName.autoGeneration", true);
  143. pref("mail.addr_book.displayName.lastnamefirst", "chrome://messenger/locale/messenger.properties");
  144. pref("mail.addr_book.show_phonetic_fields", "chrome://messenger/locale/messenger.properties");
  145. pref("mail.attach_vcard",                   false);
  146. pref("mail.html_compose",                   true);
  147. // you can specify multiple, option headers
  148. // this will show up in the address picker in the compose window
  149. // examples: "X-Face" or "Approved,X-No-Archive"
  150. pref("mail.compose.other.header",        "");
  151. pref("mail.fcc_folder",                     "");
  152. pref("mail.encrypt_outgoing_mail",          false);
  153. pref("mail.crypto_sign_outgoing_mail",      false);
  154. pref("mail.default_html_action", 0);          // 0=ask, 1=plain, 2=html, 3=both
  155. pref("mail.smtp.ssl",0);                      // 0 = no, 1 = try, 2 = must use SSL
  156.  
  157. pref("mail.mdn.report.not_in_to_cc", 2);               // 0: Never 1: Always 2: Ask me
  158. pref("mail.mdn.report.outside_domain", 2);             // 0: Never 1: Always 2: Ask me
  159. pref("mail.mdn.report.other", 2);                      // 0: Never 1: Always 2: Ask me 3: Denial
  160.  
  161. pref("mail.incorporate.return_receipt", 0);            // 0: Inbox/filter 1: Sent folder
  162. pref("mail.request.return_receipt", 2);                // 1: DSN 2: MDN 3: Both
  163. pref("mail.receipt.request_header_type", 0);           // 0: MDN-DNT header  1: RRT header 2: Both (MC)
  164. pref("mail.receipt.request_return_receipt_on", false);
  165. pref("mail.mdn.report.enabled", true);                 // false: Never send true: Send sometimes
  166.  
  167. pref("news.default_cc",                     "");
  168. pref("news.default_fcc",                    ""); // mailbox:URL or Imap://Host/OnlineFolderName
  169. pref("news.use_fcc",                        true);
  170. pref("news.cc_self",                        false);
  171. pref("news.fcc_folder",                     "");
  172. pref("news.notify.on",                      true);
  173. pref("news.max_articles",                   500);
  174. pref("news.mark_old_read",                  false);
  175. pref("news.show_size_in_lines",             true);
  176.  
  177. pref("mailnews.wraplength",                 72);
  178. pref("mail.compose.wrap_to_window_width",   false);
  179.  
  180. // 0=no header, 1="<author> wrote:", 2="On <date> <author> wrote:", 3="<author> wrote On <date>:", 4=user specified
  181. pref("mailnews.reply_header_type",          1);
  182. // locale which affects date format, set empty string to use application default locale
  183. pref("mailnews.reply_header_locale",        "");
  184. pref("mailnews.reply_header_authorwrote",   "chrome://messenger/locale/messengercompose/composeMsgs.properties");
  185. pref("mailnews.reply_header_ondate",        "chrome://messenger/locale/messengercompose/composeMsgs.properties");
  186.  
  187. // separator to separate between date and author
  188. pref("mailnews.reply_header_separator",     ", ");
  189. pref("mailnews.reply_header_colon",         ":");
  190. pref("mailnews.reply_header_originalmessage",   "chrome://messenger/locale/messengercompose/composeMsgs.properties");
  191.  
  192. pref("mail.purge_threshhold",                100);
  193. pref("mail.prompt_purge_threshhold",             false);   
  194.  
  195. pref("mailnews.offline_sync_mail",         false);
  196. pref("mailnews.offline_sync_news",         false);
  197. pref("mailnews.offline_sync_send_unsent",  true);
  198. pref("mailnews.offline_sync_work_offline", false);   
  199. pref("mailnews.force_ascii_search",         false);
  200. pref("mailnews.autolookup_unknown_mime_types",  true);
  201.  
  202. pref("mailnews.send_default_charset",       "chrome://messenger/locale/messenger.properties");
  203. pref("mailnews.view_default_charset",       "chrome://messenger/locale/messenger.properties");
  204. pref("mailnews.force_charset_override",     false);
  205. pref("mailnews.reply_in_default_charset",   false);
  206.  
  207. pref("mailnews.search_date_format",        "chrome://messenger/locale/messenger.properties");
  208. pref("mailnews.search_date_separator",     "chrome://messenger/locale/messenger.properties");
  209.  
  210. pref("mailnews.language_sensitive_font",    true);
  211.  
  212. pref("mailnews.quotingPrefs.version",       0);  // used to decide whether to migrate global quoting prefs
  213.  
  214. pref("mapi.blind-send.enabled",             true);
  215.  
  216. pref("offline.news.download.unread_only",   true);
  217. pref("offline.news.download.by_date",       true);
  218. pref("offline.news.download.days",          30);    // days
  219. pref("offline.news.download.increments",    3); // 0-yesterday, 1-1 wk ago, 2-2 wk ago,
  220.                                                 // 3-1 month ago, 4-6 month ago, 5-1 year ago
  221.  
  222. pref("ldap_1.number_of_directories", 6);
  223.  
  224. pref("ldap_1.directory1.description", "Personal Address Book");
  225. pref("ldap_1.directory1.dirType", 2);
  226. pref("ldap_1.directory1.isOffline", false);
  227.  
  228. pref("ldap_1.directory2.description", "Four11 Directory");
  229. pref("ldap_1.directory2.serverName", "ldap.four11.com");
  230.  
  231. pref("ldap_1.directory3.description", "InfoSpace Directory");
  232. pref("ldap_1.directory3.serverName", "ldap.infospace.com");
  233.  
  234. pref("ldap_1.directory4.description", "WhoWhere Directory");
  235. pref("ldap_1.directory4.serverName", "ldap.whowhere.com");
  236.  
  237. pref("ldap_1.directory5.description", "Bigfoot Directory");
  238. pref("ldap_1.directory5.serverName", "ldap.bigfoot.com");
  239.  
  240. pref("ldap_1.directory6.description", "Switchboard Directory");
  241. pref("ldap_1.directory6.serverName", "ldap.switchboard.com");
  242. pref("ldap_1.directory6.searchBase", "c=US");
  243. pref("ldap_1.directory6.attributes.telephoneNumber", "Phone Number:homephone");
  244. pref("ldap_1.directory6.attributes.street", "State:st");
  245. pref("ldap_1.directory6.filter1.repeatFilterForWords", false);
  246.  
  247. pref("ldap_2.autoComplete.interval", 650);
  248. pref("ldap_2.autoComplete.enabled", true);
  249. pref("ldap_2.autoComplete.useDirectory", false);
  250. pref("ldap_2.autoComplete.useAddressBooks", true);
  251. pref("ldap_2.autoComplete.skipDirectoryIfLocalMatchFound", true);
  252. pref("ldap_2.autoComplete.directoryServer", "");
  253.  
  254. pref("ldap_2.servers.pab.position",                                1);
  255. pref("ldap_2.servers.pab.description",                            "chrome://messenger/locale/addressbook/addressBook.properties");
  256. pref("ldap_2.servers.pab.dirType",                                2);
  257. pref("ldap_2.servers.pab.isOffline",                            false);
  258.  
  259. pref("ldap_2.servers.history.position",                            2);
  260. pref("ldap_2.servers.history.description",                        "chrome://messenger/locale/addressbook/addressBook.properties");
  261. pref("ldap_2.servers.history.dirType",                            2);
  262. pref("ldap_2.servers.history.isOffline",                        false);
  263.  
  264.  
  265. // A position of zero is a special value that indicates the directory is deleted.
  266. // These entries are provided to keep the (obsolete) Four11 directory and the
  267. // WhoWhere, Bigfoot and Switchboard directories from being migrated.
  268. pref("ldap_2.servers.four11.position",                        0);
  269. pref("ldap_2.servers.four11.description",                        "Four11 Directory");
  270. pref("ldap_2.servers.four11.serverName",                        "ldap.four11.com");
  271.  
  272. pref("ldap_2.servers.whowhere.position",                        0);             
  273. pref("ldap_2.servers.whowhere.description",                        "WhoWhere Directory");
  274. pref("ldap_2.servers.whowhere.serverName",                        "ldap.whowhere.com");
  275.  
  276. pref("ldap_2.servers.bigfoot.position",                            0);             
  277. pref("ldap_2.servers.bigfoot.description",                        "Bigfoot Directory");
  278. pref("ldap_2.servers.bigfoot.serverName",                       "ldap.bigfoot.com");
  279.                                                                                  
  280. pref("ldap_2.servers.switchboard.position",                        0);             
  281. pref("ldap_2.servers.switchboard.description",                    "Switchboard Directory");
  282. pref("ldap_2.servers.switchboard.serverName",                    "ldap.switchboard.com");
  283.  
  284. pref("ldap_2.user_id",                                            0);
  285. pref("ldap_2.version",                                            3); /* Update kCurrentListVersion in include/dirprefs.h if you change this */
  286. pref("ldap_2.prefs_migrated",      false);
  287.  
  288. pref("mailnews.confirm.moveFoldersToTrash", true);
  289.  
  290. pref("mailnews.reuse_message_window", true);
  291. pref("mailnews.open_window_warning", 10); // warn user if they attempt to open more than this many messages at once
  292.  
  293. pref("mailnews.start_page.url", "chrome://messenger-region/locale/region.properties");
  294. pref("mailnews.start_page.enabled", true);
  295.  
  296. pref("mailnews.remember_selected_message", true);
  297.  
  298. /* file, print, and stop hidden by default.  
  299.    see http://bugzilla.mozilla.org/show_bug.cgi?id=197729#c3 */
  300. pref("mail.toolbars.showbutton.file", false);
  301. pref("mail.toolbars.showbutton.next", true);
  302. pref("mail.toolbars.showbutton.junk", true);
  303. pref("mail.toolbars.showbutton.print",false);
  304. pref("mail.toolbars.showbutton.stop", false);
  305.  
  306. pref("mailnews.thread_pane_column_unthreads", true);
  307.  
  308. pref("mailnews.account_central_page.url", "chrome://messenger/locale/messenger.properties");
  309.  
  310. /* default prefs for Mozilla 5.0 */
  311. pref("mail.identity.default.compose_html", true);
  312. pref("mail.identity.default.valid", true);
  313. pref("mail.identity.default.fcc",true);
  314. pref("mail.identity.default.fcc_folder","mailbox://nobody@Local%20Folders/Sent");
  315. pref("mail.identity.default.bcc_self",false);
  316. pref("mail.identity.default.bcc_others",false);
  317. pref("mail.identity.default.bcc_list","");
  318. pref("mail.identity.default.draft_folder","mailbox://nobody@Local%20Folders/Drafts");
  319. pref("mail.identity.default.stationery_folder","mailbox://nobody@Local%20Folders/Templates");
  320. pref("mail.identity.default.directoryServer","");
  321. pref("mail.identity.default.overrideGlobal_Pref", false);
  322. pref("mail.identity.default.auto_quote", true);
  323. pref("mail.identity.default.reply_on_top", 0); // 0=bottom 1=top 2=select
  324. pref("mail.identity.default.sig_bottom", true); // true=below quoted false=above quoted
  325. // Headers to always add to outgoing mail
  326. // examples: "header1,header2"
  327. // pref("mail.identity.id1.headers", "header1");
  328. // user_pref("mail.identity.id1.header.header1", "X-Mozilla-Rocks: True")
  329. pref("mail.identity.default.headers", "");
  330.  
  331. // by default, only collect addresses the user sends to (outgoing)
  332. // incoming is all spam anyways
  333. pref("mail.collect_email_address_incoming", false);
  334. pref("mail.collect_email_address_outgoing", true);
  335. pref("mail.collect_email_address_newsgroup", false);
  336.  
  337. // by default, use the Personal Addressbook for collection
  338. pref("mail.collect_addressbook","moz-abmdbdirectory://abook.mab"); // the Personal addressbook.
  339.  
  340. pref("mail.default_sendlater_uri","mailbox://nobody@Local%20Folders/Unsent%20Messages");
  341.  
  342. pref("mail.server.default.port", -1);
  343. pref("mail.server.default.offline_support_level", -1);
  344. pref("mail.server.default.leave_on_server", false);
  345. pref("mail.server.default.download_on_biff", false);
  346. pref("mail.server.default.check_time", 10);
  347. pref("mail.server.default.delete_by_age_from_server", false);
  348. pref("mail.server.default.num_days_to_leave_on_server", 7);
  349. // "mail.server.default.check_new_mail" now lives in the protocol info
  350. pref("mail.server.default.dot_fix", true);
  351. pref("mail.server.default.limit_offline_message_size", false);
  352. pref("mail.server.default.max_size", 50);
  353. pref("mail.server.default.auth_login", true);
  354. pref("mail.server.default.delete_mail_left_on_server", false);
  355. pref("mail.server.default.valid", true);
  356. pref("mail.server.default.abbreviate",true);
  357. pref("mail.server.default.isSecure", false);
  358. pref("mail.server.default.useSecAuth", false);
  359. pref("mail.server.default.override_namespaces", true);
  360. pref("mail.server.default.deferred_to_account", "");
  361.  
  362. pref("mail.server.default.delete_model", 1);
  363. pref("mail.server.default.fetch_by_chunks", true);
  364. pref("mail.server.default.mime_parts_on_demand", true);
  365.  
  366. pref("mail.server.default.always_authenticate",false);
  367. pref("mail.server.default.singleSignon", true);
  368. pref("mail.server.default.max_articles", 500);
  369. pref("mail.server.default.notify.on", true);
  370. pref("mail.server.default.mark_old_read", false);
  371. pref("mail.server.default.empty_trash_on_exit", false);
  372.  
  373. pref("mail.server.default.using_subscription", true);
  374. pref("mail.server.default.dual_use_folders", true);
  375. pref("mail.server.default.canDelete", false);
  376. pref("mail.server.default.login_at_startup", false);
  377. pref("mail.server.default.allows_specialfolders_usage", true);
  378. pref("mail.server.default.canCreateFolders", true);
  379. pref("mail.server.default.canFileMessages", true);
  380. pref("mail.server.default.logon_fallback", true);
  381.  
  382. // special enhancements for IMAP servers
  383. pref("mail.server.default.store_read_mail_in_pfc", false);  
  384. pref("mail.server.default.store_sent_mail_in_pfc", false);  
  385. pref("mail.server.default.use_idle", true); 
  386. // for spam
  387. pref("mail.server.default.spamLevel",100);  // 0 off, 100 on.  not doing bool since we might have real levels one day.
  388. pref("mail.server.default.moveOnSpam",false);
  389. pref("mail.server.default.moveTargetMode",0); // 0 == "Junk" on server, 1 == specific folder
  390. pref("mail.server.default.spamActionTargetAccount","");
  391. pref("mail.server.default.spamActionTargetFolder","");
  392. pref("mail.server.default.useWhiteList",true);
  393. pref("mail.server.default.whiteListAbURI","moz-abmdbdirectory://abook.mab");  // the Personal addressbook.
  394. pref("mail.server.default.purgeSpam",false);
  395. pref("mail.server.default.purgeSpamInterval",14); // 14 days
  396. pref("mail.server.default.spamLoggingEnabled",false);
  397. pref("mail.server.default.manualMark",false);
  398. pref("mail.server.default.manualMarkMode",0); // 0 == "move to junk folder", 1 == "delete"
  399.  
  400. // the probablilty threshold over which messages are classified as junk
  401. // this number is divided by 100 before it is used. The classifier can be fine tuned
  402. // by changing this pref. Typical values are .99, .95, .90, .5, etc. 
  403. pref("mail.adaptivefilters.junk_threshold", 90); 
  404.  
  405. // if true, we'll use the password from an incoming server with
  406. // matching username and domain
  407. pref("mail.smtp.useMatchingDomainServer", false);
  408.  
  409. // if true, we'll use the password from an incoming server with
  410. // matching username and host name
  411. pref("mail.smtp.useMatchingHostNameServer", false);
  412.  
  413. pref("mail.smtpserver.default.auth_method", 1); // auth any
  414. pref("mail.smtpserver.default.trySecAuth", true);
  415. pref("mail.smtpserver.default.try_ssl", 0);
  416.  
  417. // For the next 3 prefs, see <http://www.bucksch.org/1/projects/mozilla/16507>
  418. pref("mail.display_glyph", true);   // TXT->HTML :-) etc. in viewer
  419. pref("mail.display_struct", true);  // TXT->HTML *bold* etc. in viewer; ditto
  420. pref("mail.send_struct", false);   // HTML->HTML *bold* etc. during Send; ditto
  421. pref("mailnews.display.original_date", false);   // display date string from mail headers without interpreting
  422. // For the next 4 prefs, see <http://www.bucksch.org/1/projects/mozilla/108153>
  423. pref("mailnews.display.prefer_plaintext", false);  // Ignore HTML parts in multipart/alternative
  424. pref("mailnews.display.html_as", 0);  // How to display HTML parts. 0 = Render the sender's HTML; 1 = HTML->TXT->HTML; 2 = Show HTML source; 3 = Sanitize HTML
  425. pref("mailnews.display.html_sanitizer.allowed_tags", "html head title body p br div(lang,title) h1 h2 h3 h4 h5 h6 ul(type,compact) ol(type,compact,start) li(type,value) dl dt dd blockquote(type,cite) pre noscript noframes strong em sub sup span(lang,title) acronym(title) abbr(title) del(title,cite,datetime) ins(title,cite,datetime) q(cite) a(href,name,title) img(alt,title,longdesc,src) base(href) area(alt) applet(alt) object(alt) var samp dfn address kbd code cite s strike tt b i table(align) caption tr(align,valign) td(rowspan,colspan,align,valign) th(rowspan,colspan,align,valign)");
  426. pref("mailnews.display.disallow_mime_handlers", 0);  /* Let only a few classes process incoming data. This protects from bugs (e.g. buffer overflows) and from security loopholes (e.g. allowing unchecked HTML in some obscure classes, although the user has html_as > 0).
  427. This option is mainly for the UI of html_as.
  428. 0 = allow all available classes
  429. 1 = Use hardcoded blacklist to avoid rendering (incoming) HTML
  430. 2 = ... and inline images
  431. 3 = ... and some other uncommon content types
  432. 100 = Use hardcoded whitelist to avoid even more bugs(buffer overflows).
  433.       This mode will limit the features available (e.g. uncommon
  434.       attachment types and inline images) and is for paranoid users.
  435. */
  436.  
  437. pref("mail.forward_message_mode", 0); // 0=default as attachment 2=forward as inline with attachments, (obsolete 4.x value)1=forward as quoted (mapped to 2 in mozilla)
  438.  
  439. pref("mail.startup.enabledMailCheckOnce", false);
  440.  
  441. pref("mailnews.max_header_display_length",3); // number of addresses to show
  442.  
  443. pref("messenger.throbber.url","chrome://messenger-region/locale/region.properties");
  444. pref("compose.throbber.url","chrome://messenger-region/locale/region.properties");
  445. pref("addressbook.throbber.url","chrome://messenger-region/locale/region.properties");
  446.  
  447. pref("mailnews.send_plaintext_flowed", true); // RFC 2646=======
  448. pref("mailnews.display.disable_format_flowed_support", false);
  449. pref("mailnews.nav_crosses_folders", 1); // prompt user when crossing folders
  450.  
  451. // these two news.cancel.* prefs are for use by QA for automated testing.  see bug #31057
  452. pref("news.cancel.confirm",true);
  453. pref("news.cancel.alert_on_success",true);
  454. pref("mail.SpellCheckBeforeSend",false);
  455. pref("mail.warn_on_send_accel_key", true);
  456. pref("mail.enable_autocomplete",true);
  457. pref("mailnews.html_domains","");
  458. pref("mailnews.plaintext_domains","");
  459. pref("mailnews.global_html_domains.version",1);
  460.  
  461. pref("mail.imap.use_status_for_biff", true);
  462.  
  463. // Pref controlling confirmation of folder deletion on empty trash
  464. pref("mail.imap.confirm_emptyTrashFolderDeletion", false);
  465. // Pref controlling the updates on the pre-configured accounts.
  466. // In order to add new pre-configured accounts (after a version),
  467. // increase the following version number besides updating the
  468. // pref mail.accountmanager.appendaccounts 
  469. pref("mailnews.append_preconfig_accounts.version",1);
  470.  
  471. // Pref controlling the updates on the pre-configured smtp servers.
  472. // In order to add new pre-configured smtp servers (after a version),
  473. // increase the following version number besides updating the
  474. // pref mail.smtpservers.appendsmtpservers
  475. pref("mail.append_preconfig_smtpservers.version",1);
  476.  
  477. pref("mail.biff.play_sound",true);
  478. // 0 == default system sound, 1 == user specified wav
  479. pref("mail.biff.play_sound.type",0);
  480. // _moz_mailbeep is a magic key, for the default sound.
  481. // otherwise, this needs to be a file url
  482. pref("mail.biff.play_sound.url","");
  483. pref("mail.biff.show_alert", true);
  484.  
  485. pref("mail.content_disposition_type", 0);
  486.  
  487. pref("mailnews.show_send_progress", true); //Will show a progress dialog when saving or sending a message
  488. pref("mail.server.default.retainBy", 1);
  489.  
  490. pref("mailnews.ui.junk.firstuse", true);
  491.  
  492. // for manual upgrades of certain UI features.
  493. // 1 -> 2 is for the folder pane tree landing, to hide the
  494. // unread and total columns, see msgMail3PaneWindow.js
  495. pref("mail.ui.folderpane.version", 1);                                          
  496.  
  497. // for manual upgrades of certain UI features.
  498. // 1 -> 2 is for the thread pane tree landing, to hide the
  499. // labels column, see msgMail3PaneWindow.js
  500. // 2 -> 3 is for the junk status column
  501. pref("mailnews.ui.threadpane.version", 1);
  502. // for manual upgrades of certain UI features.
  503. // 1 -> 2 is for the ab results pane tree landing
  504. // to hide the non default columns in the addressbook dialog
  505. // see abCommon.js and addressbook.js
  506. pref("mailnews.ui.addressbook_results.version", 1);                                          
  507. // for manual upgrades of certain UI features.
  508. // 1 -> 2 is for the ab results pane tree landing
  509. // to hide the non default columns in the addressbook sidebar panel
  510. // see abCommon.js and addressbook-panel.js
  511. pref("mailnews.ui.addressbook_panel_results.version", 1);                                          
  512. // for manual upgrades of certain UI features.
  513. // 1 -> 2 is for the ab results pane tree landing
  514. // to hide the non default columns in the select addresses dialog
  515. // see abCommon.js and abSelectAddressesDialog.js
  516. pref("mailnews.ui.select_addresses_results.version", 1); 
  517. // for manual upgrades of certain UI features.
  518. // 1 -> 2 is for the ab results pane
  519. // to hide the non default columns in the advanced directory search dialog
  520. // see abCommon.js and ABSearchDialog.js
  521. pref("mailnews.ui.advanced_directory_search_results.version", 1);                                         
  522. //If set to a number greater than 0, msg compose windows will be recycled in order to open them quickly
  523. pref("mail.compose.max_recycled_windows", 1); 
  524.  
  525. // true makes it so we persist the open state of news server when starting up the 3 pane
  526. // this is costly, as it might result in network activity.
  527. // false makes it so we act like 4.x
  528. // see bug #103010 for details
  529. pref("news.persist_server_open_state_in_folderpane",false);
  530.  
  531. // New color prefs for Labels
  532. pref("mailnews.labels.description.0", "chrome://messenger/locale/messenger.properties");
  533. pref("mailnews.labels.description.1", "chrome://messenger/locale/messenger.properties");
  534. pref("mailnews.labels.description.2", "chrome://messenger/locale/messenger.properties");
  535. pref("mailnews.labels.description.3", "chrome://messenger/locale/messenger.properties");
  536. pref("mailnews.labels.description.4", "chrome://messenger/locale/messenger.properties");
  537. pref("mailnews.labels.description.5", "chrome://messenger/locale/messenger.properties");
  538.  
  539. // mailews.labels.color.0 is not defined because there is no color associated with
  540. // this particular label.  It is defined above (mailnews.lables.description.0) because
  541. // its description string is required in order to prepend the accesskey '0':
  542. //   ie: '0 None'.
  543. pref("mailnews.labels.color.1", "#FF0000"); // default: red
  544. pref("mailnews.labels.color.2", "#FF9900"); // default: orange
  545. pref("mailnews.labels.color.3", "#009900"); // default: green
  546. pref("mailnews.labels.color.4", "#3333FF"); // default: blue
  547. pref("mailnews.labels.color.5", "#993399"); // default: purple
  548.  
  549. //default null headers
  550. //example "X-Warn: XReply", list of hdrs separated by ": "
  551. pref("mailnews.customHeaders", ""); 
  552.  
  553. pref("mailnews.fakeaccount.show", false);
  554. pref("mailnews.fakeaccount.server", "");
  555.  
  556. // message display properties
  557. pref("mailnews.message_display.disable_remote_image", false);
  558. pref("mailnews.message_display.allow.plugins", true);
  559.  
  560. // default msg compose font prefs
  561. pref("msgcompose.font_face",                "");
  562. pref("msgcompose.font_size",                "medium");
  563. pref("msgcompose.text_color",               "#000000");
  564. pref("msgcompose.background_color",         "#FFFFFF");
  565.  
  566. // When there is no disclosed recipients (only bcc), we should address the message to empty group
  567. // to prevent some mail server to disclose the bcc recipients
  568. pref("mail.compose.add_undisclosed_recipients", true);
  569.  
  570. // these prefs (in minutes) are here to help QA test this feature
  571. // "mail.purge.min_delay", never purge a junk folder more than once every 480 minutes (60 mins/hour * 8 hours)
  572. // "mail.purge.timer_interval", fire the purge timer every 5 minutes, starting 5 minutes after we load accounts
  573. pref("mail.purge.min_delay",480);
  574. pref("mail.purge.timer_interval",5); 
  575.  
  576. // set to true if viewing a message should mark it as read only if the msg is viewed for a specified time interval in seconds
  577. pref("mailnews.mark_message_read.delay", false); 
  578. pref("mailnews.mark_message_read.delay.interval", 5); // measured in seconds
  579.  
  580. // require a password before showing imap or local headers in thread pane
  581. pref("mail.password_protect_local_cache", false);
  582. // to reduce forking in the js / C++
  583. // overridden by stand alone mail
  584. pref("mail.standalone", false);
  585.  
  586. // Unread mail count timer. Value to be specified in seconds
  587. // default is 5 minutes, i.e., 5 * 60 seconds = 300
  588. pref("mail.windows_xp_integration.unread_count_interval", 300);
  589.  
  590.  
  591.  
  592.