// Download mail from all accounts on startup
user_pref("mail.check_all_imap_folders_for_new", true);

// Turn off extra sending window
user_pref("mailnews.show_send_progress", false);

// This pref controls the "Advance to next unread message in [x] folder" behaviour
// 0 - Always go to the next folder without prompting
// 1 - Ask before going (the default behaviour)
// 2 - Never go to the next folder with unread messages
user_pref("mailnews.nav_crosses_folders", 0);

// use my browser for the following protocols
user_pref("network.protocol-handler.app.http", "/usr/local/bin/openurl");
user_pref("network.protocol-handler.app.https", "/usr/local/bin/openurl");
user_pref("network.protocol-handler.app.ftp", "/usr/local/bin/openurl");

// show plaintext msgs by default
user_pref("mailnews.display.prefer_plaintext", true);

// disable annoying warnings when emails needs long to load
user_pref("dom.max_script_run_time", 30);
